[Solved] Unable to insert into table with Identity Column
The error message seems pretty clear: FactorId is an identity column. You shouldn’t set the value for FactorID yourself. Sql Server will set it for you. But if you really want to set it for some insane reason, you need to include a column list in the query like this: SET IDENTITY_INSERT facetors on INSERT … Read more