Feckmore
Feckmore

Reputation: 4714

How do I add the IDENTITY property to existing SQL Azure table?

I have created a couple of tables in SQL Azure and forgot to mark the primary keys as identity columns. There is no data in the tables yet, but the check box marked Is Identity is disabled.

How do I make an existing primary key an identity column in SQL Azure?

Upvotes: 3

Views: 1168

Answers (1)

Aaron Bertrand
Aaron Bertrand

Reputation: 280262

You create a new table. You can't change the IDENTITY property in a regular SQL Server instance either - well, depending on your settings, SSMS might let you, but it doesn't tell you what it actually does behind the scenes - drops the table and re-creates it. Don't believe me? Script it out or profile it.

Upvotes: 5

Related Questions