How to write an update request using Sql Compact Server

I want to update a column with nvarchar datatype. Want to change column, identity column. Who can help?

+2


a source to share


1 answer


http://msdn.microsoft.com/en-us/library/ms174123.aspx

It would be something like



ALTER TABLE <IdentityTable> ALTER COLUMN <Identity Column> <Data Type> (1, 1)

      

But how are you going to add indentity to nentarar datatype?

+1


a source







All Articles