SQL Server turns on or off self-growth _mssql2008

Source: Internet
Author: User

When you add a row to a database table, this function is useful when inserting a specific value for the self-added column, such as the table structure:

ID | Text

1 | A

2 | B

4 | D

Where the ID column is from the previous column, if we want to insert 3 | C, if you do not open the self-add column, it must be plugged in, this time with this function will be useful

Copy Code code as follows:
SET Identity_insert [Recursive] on

INSERT into [recursive] (Id,text) VALUES (3, ' C ')

SET Identity_insert [recursive] off

Usually we use this method when we import the data, and we hope it will help us.

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.