Today, i needed to reset the Identity value for one column in the SQL Server database.
I used the following commando to view the current identity value:
DBCC CHECKIDENT ('TableName1', NORESEED)
and then, it returned the following message:
Checking identity information: current identity value '53', current column value '53'.
DBCC execution completed. If DBCC printed error messages, contact your system administrator.
Finally, after I've checked the current identity value, i needed to reset this value and I've used the following command:
DBCC CHECKIDENT (TableName1, RESEED, 0)
and then, it returned the following message:
Checking identity information: current identity value '53', current column value '0'.
DBCC execution completed. If DBCC printed error messages, contact your system administrator.

![[FIX] BizTalk Server 2010, 2013, 2013 R2 & 2016 errors “Class not registered (WinMgmt)” or “Access denied”](https://blogit.create.pt/wp-content/uploads/2018/07/access-black-and-white-blur-270514-218x150.jpg)




















