SQL statement to cancel the auto-increment column attribute

Source: Internet
Author: User

Because in the SQL-SERVER, the auto-incrementing column property cannot be directly modified, but you can achieve it through the following method:

1. If you only insert a specified value, use the following statement to temporarily cancel the operation.

Set identity_insert tablename on
Insert into tablename (XX, XX) values (XX, XX)
Set identity_insert tablename off

2. Add a column, delete the auto-incrementing column, and modify the column name.

Alter table a add XXX int
Update a set xxx = ID
Alter table a drop column ID
Exec sp_rename 'xxx', 'id', 'column'

3. By modifying the system's column attributes of the table, improper use of this method may cause other unexpected errors.

Sp_configure 'Allow Update', 1
Reconfigure with override
Go
Update syscolumns set colstat = 0 where colstat = 1 and ID = object_id ('tablename ')
Go
Sp_configure 'Allow Update', 0
Reconfigure with override

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.