In all of my database tables on my MS SQL Server, the id column jumps by 1000 or more each time I restart the server. Since this is a local application and the server is being hosted from one of my laptops, I shut it down every day which in turn shuts down the server.
Eventually, this is program is going to be used in a large scale setting, and I am concerned by this behavior -- doing the math, I'd still have over 4 million unique ids if it jumped by 1000 every time a new one was entered, but the plan is for this database to grow for years and years. What will happen if I run out of unique ids? BigInt also experiences this problem, but with increasing by 10,000 instead of 1000. I've looked all over the internet and it seems that many people have fixed this issue by setting -t272 as a start up parameter, but it has not worked for me. Can anyone tell me a work around?