I have a table which includes an identity column but i cant remove the identity property.
Is there a way to disable it? Or a way to make a copy of the entire table without identity property?
|
|
|
Note that you may not be able to drop the column if it referenced by a clustered index, and you can't drop all clustered indexes for a table because SqlAzure tables must always have a clustered index. This means that you may have to jump through the following hoops (for at least your last clustered index, which may well be your primary key):
This roughly looks like this:
Hope that helps A Edit: As @PhilBolduc pointed out SqlAzure tables require a clustered index, not a primary key. I've amended the terminology above accordingly - the principle of the answer still remains. |
|||||||||||
|
|
You can not remove an Identity column without dropping it unfortunately. Alternetivly add a new column with a temp name, update the new column value and then drop the previous column.
that should do it. unless i have misunderstood your questions? |
|||
|