I am getting the error while to insert values to database table.
"Cannot insert explicit value for identity column in table 'ref_user' when IDENTITY_INSERT is set to OFF."
Please help me out ???
|
I am getting the error while to insert values to database table. "Cannot insert explicit value for identity column in table 'ref_user' when IDENTITY_INSERT is set to OFF." Please help me out ??? |
|||||||
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
The reason you are getting this error is that you are trying to insert in a table with Auto Increment field being used as primary ke. In your command, you may set the
|
|||||||
|
|
If you're not familiar with this error, it's more likely that you're trying to supply a value for a column where you shouldn't. Say you have a table:
If you attempt an insert like this:
You'll get the error you've posted. Usually, what you actually want to do is:
(And possibly retrieve the inserted value by But to your question as posed, you would do:
You should, in general, not care about what values are being assigned to an |
|||
|
|
|
try syntax:
Ex:
EDIT: Please note that when you specify the identity insert on.. you have to explicitly specify the column list in the insert statement Example:
|
|||||||
|