I have a scenario where change tracking is enabled on a Table (say tblABC). This table has IDENTITY set on its primary key column (ID). I plan to remove the IDENTITY spec from this column. The best way suggested to do this is an ALTER TABLE..SWITCH TO, but this process involves new table to be created and renamed back to original table name like so.
EXEC sys.sp_rename 'Original2', 'Original', 'OBJECT';
I'm not sure if renaming a new table to original name will still keep the change tracking on it. Can a new table be renamed such that change tracking is not lost?
You can remove identity from the design view.
From learn.microsoft.com