Click here to Skip to main content
15,896,557 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,
i am trying to perform RESEED command in sql azure database.
i am trying to like this:
DBCC CHECKIDENT('mytable',reseed,7).

showing an error as: DBCC command 'CHECKIDENT' is not supported in this version of SQL Server.
please any one help to me.
thanks in advance,
nareshrajuu
Posted

1 solution

Not sure, but give this a try and see if it works:
SQL
ALTER TABLE tableName ALTER COLUMN columnName IDENTITY (1,1)


As such, I found that the issue you are facing is already reported and being tracked here: SQL Azure Issue 5934[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900