Home >Database >Mysql Tutorial >Why Does My SQL Server 2012 Identity Column Start at 1001 Instead of 1?
Identity Column Values Unexpectedly Starting from 1001
In SQL Server 2012, you may encounter an unexpected phenomenon where identity column values begin from 1001 instead of the expected 1. This deviation is caused by a change in how SQL Server handles identity values in the Denali release.
Reasons for the Jump
The identity value jump can occur due to:
Solutions
To address this issue, you have two options:
To enable Trace Flag 272:
The above is the detailed content of Why Does My SQL Server 2012 Identity Column Start at 1001 Instead of 1?. For more information, please follow other related articles on the PHP Chinese website!