Insert an explicit value for the IDENTITY column in the SQL Server database

Source: Internet
Author: User

If we insert a value in the ID column, for example:

Insert member (id, username) values (10, 'admin ')

The query analyzer will return an error message:
Reference content
Server: Message 544, level 16, status 1, Row 1
When IDENTITY_Insert is set to OFF, explicit values cannot be inserted into the "member" column.

In ASP, an error message is returned:
Reference content
Microsoft ole db Provider for SQL Server Error '80040e14'

When IDENTITY_Insert is set to OFF, explicit values cannot be inserted into the "member" column.

Test. asp, row 13


However, in some cases, we need to manually insert the value of the ID column. For example, after deleting some records, the ID column is not consecutive, and we want to complete it. We can use a switch to turn our desires into reality:

SET IDENTITY_Insert [TableName] ON

Write in the query analyzer as follows:

SET IDENTITY_Insert member ON
Insert member (id, username) values (1, 'admin ')
SET IDENTITY_Insert member OFF

On the ASP page, you can write as follows:

Con.exe cute ("SET IDENTITY_Insert member ON" & vbcrlf & "insert member (id, username) values (2, 'abcde')" & vbcrlf & "SET IDENTITY_Insert member OFF ")

This method ensures that duplicate data is not inserted in the ID column. Otherwise, an error is returned and the insert operation is not performed. SET IDENTITY_Insert [TableName] OFF can be omitted, because after the session is completed, this switch is automatically disabled.

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.