Reset the SQL Server table's self-increment column, and let the self-increment column count again

Source: Internet
Author: User


SQL's self-increment column is very easy to use, just the development process once deleted data, the identity column is not continuous write up is also very depressed, so looked up the identification column reset method found can be divided into three kinds:

---Delete the original table data and reset the self-increment column
TRUNCATE TABLE tablename--truncate mode you can also reset the self-increment field
--Resets the table's self-increment field, preserving the data
DBCC checkident (tablename,reseed,0)
--set allow explicit insertion of self-increment columns
SET IDENTITY_INSERT TableName on

--Of course insert is complete remember to set do not allow explicit insertion of self-increment columns
SET IDENTITY_INSERT TableName OFF

Reset the SQL Server table's self-increment column, and let the self-increment column count again

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.