I have a table with an Identity Specification. It is working fine.
The first record is "1" and then the second is "2" and so on.
My problem is...
Perhaps I inserted a record, so the SQL will give "3" in the identity column. Now, I deleted the third record, and then inserted a new record to replace the record I have deleted. But SQL Server gave me "4" instead of "3". It is possible to configure the identity columns in SQL Server 2008 so that it won't skip the "3" when I already deleted "3"?