![SQL server](https://www.commvault.com/wp-content/uploads/2019/08/sql-server_logo.jpg?quality=80&w=930)
When a table has an identity column with auto increment - to enable explicitly inserting a value into the id column run this:
SET IDENTITY_INSERT [table] ON
Note, this statement is valid only for the current session. It cannot be set permanently.