I'm using CMSImport 3.6 on Umbraco 7.1.4 to import a simple CSV file into a Sql Server 2012 database and I'm getting the following error on all rows it tries to import:
you need to update scripts in the manual installation guide in documentation. I found the same problem today and it was because I've added columns using the script in the docs which don't have this column.
Hope it will help for anyone else installing CMS Import manually :)
"CustomID" Error when importing records
I'm using CMSImport 3.6 on Umbraco 7.1.4 to import a simple CSV file into a Sql Server 2012 database and I'm getting the following error on all rows it tries to import:
Error :Invalid column name 'CustomId'
Hi David,
That error should not happen on SQL Server. Was an old bug in the update script.
If you add the column CustomId nvarchar 250 (Allow null) to the table cmsimportrelation all should be good.
Sorry for the hassle.
Best,
Richard
Hi Richard,
you need to update scripts in the manual installation guide in documentation. I found the same problem today and it was because I've added columns using the script in the docs which don't have this column.
Hope it will help for anyone else installing CMS Import manually :)
Richard,
Thanks, that worked.
I was close... I added the column to the CMSImportState table...
is working on a reply...