/ Published in: SQL
using this code in a stored procedure you can reset the seed of the identity column in sql server database
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
@seed INT AS DBCC CHECKIDENT (Lease,RESEED,@seed) RETURN