I have a webhost with a SQL server DB and want to move my DB to their facility. I don't have access to use restore/backup, but had success using the 'export' function. In that, I specified the source and destination DB instances, and it all moved without difficulty.
However now I've migrated the site, the first attempt to write a row to a table gives this error:
Cannot insert the value NULL into column 'eventID', table 'advanced_PT.dbo.tblEvents';
column does not allow nulls. INSERT fails.
The statement has been terminated.
When I look in the DB, the first column (eventID) is populated with its values, but identity specification is off. Trying to turn it on makes it want to recreate the table which is no good, as it already has data.
Is there a way to export and preserve this? I found a link to SET_IDENTITY_INSERT but it doesn't look like the trick.
(my version of ent manager is 2008, the host has 2005)
Thanks!
Mark
create tablestatement. Annoyingly the identity property can not be changed on a column after the table is created. The only way of changing a column to be an identity column is either to add a new column and drop the existing one (necessitating an update to every row in the table, wasting space from the dropped column and changing the column order) or to completely rebuild the table. This seems pretty ridiculous to me as the only change necessary is to update some metadata somewhere! – Martin Smith Jan 26 '11 at 11:10idtvalandstatuscolumns insys.syscolpars. I wouldn't try this on anything but a test database though! – Martin Smith Jan 26 '11 at 18:49