I am starting off a new database. Initially I created all my columns as Timestamp. Since we are still in development, I decided to change them to a datatype of rowversion.I knew from msdn forums that the rowversion is not available in the GUI provided by SSMS. So I scripted it using the following script. I decided to keep the same column name. IN this case, the column name was [versioncol].ALTER TABLE [MYTABLE]DROP COLUMN [VersionCol]goALTER TABLE [MYTABLE]add [VersionCol] rowversiongoIn my obje
↧