I have a number of tables that use an identity field as a primary key. I need to change the key of the table, and I'd like to leave the original key in the table, but to no longer be an identity field. Is there a way to do this using T-SQL? I tried the following, but it's not removing the identity propery:
alter table table1
alter column [table_id] bigint not null
Any suggestions?
Thanks!
alter table table1
alter column [table_id] bigint not null
Any suggestions?
Thanks!