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". What I should do so that it will give me "3" instead of "4"?