Troubleshooting
Orchestrator
Activate Job IDs not increasing sequentially in SQL Server 2012.
2 min
issue job ids of two subsequent jobs increases by 1000 or more, skipping the ids in between in normal operation subsequent activate job ids will increment by 1 this may affect id generation in other tables as well description activate job id column uses the sql identity specification to generate new job ids when a new job is created sql is responsible for allocating the id to the job in sql server 2012 changes were made to how identity columns work, specifically in the caching of sequences this resulted in behaviour where the identity columns may jump by 1000 or more ids on a server reboot see the following posts for more information on this issue http //social msdn microsoft com/forums/sqlserver/en us/c55cb12a 3c8c 4e0b a539 1bfc4092f54d/deprecation of trace t272 http //www big info/2013/01/how to solve sql server 2012 identity html http //jamessql blogspot co nz/2013/07/gap issue in sql server 2012 identity html solution to use the same identity generation semantics as previous versions of sql you can use trace flag 272 see the above articles on steps to configure this