I am using Microsoft SQL Server 2008. In database I have a table with an auto increment field (ID). I already have two rows inserted in the table, so the ID of the next row will be 3. What I want to do is that when the next row will be inserted, the value of it's ID to be for example 100. Is there any way to do this? (do not tell me to insert and delete 97 rows)
If no, then I could try to recreate the table, but how to set the value of ID to some defined value initially i.e. I want it to begin from 100, not from 1?