An Explicit Value For The Identity Column In Table

Recently, while trying to insert explicit values into a critical table, I got this error: “An explicit value for the identity column in table can only be specified when a column list is used.”

Fix “An Explicit Value For The Identity Column In Table”

The below screenshot shows the same error.

Error Cause

Note that explicit values for the identity column are not allowed by default. This error occurs because IDENTITY_INSERT is set to OFF by default for the table that contains the identity column.

Solution

To solve this error, follow the steps below.

1. First, we must execute the SQL query below to set the IDENTITY_INSERT to ON, as shown in the screenshot below.

SET IDENTITY_INSERT Orders ON;
an explicit value for the identity column in table can only be specified when a column list is used

Check out SQL Server Trigger If Exists Raise Error

2. Now, we can run the insert query to insert the data. This time, the data was inserted successfully without any issues. Check out the screenshot below for more clarity.

an explicit value for the identity column in table can only be specified when a column list

Now, we can execute the below query to cross check if the data is available in the table as shown in the screenshot below.

an explicit value for the identity column in table can only be specified

3. As a best practice, we can execute the query below to set the IDENTITY_INSERT to Off, as shown in the screenshot below.

SET IDENTITY_INSERT Orders OFF;
an explicit value for the identity column in table can only be specified when a column

Conclusion

As discussed in this article, you can fix this error an explicit value for the identity column in table can only be specified by setting the IDENTITY_INSERT property value to ON.

You may also like the following articles below.

Top 200 SQL Server Interview Questions and Answers

Free PDF On Top 200 SQL Server Interview Questions And Answers

Download A 40 pages PDF And Learn Now.