There is a database rk
in it table dbo.RDRBP
. There is also a rk_new
database and it has exactly the same table. How to update a table in rk_new
from a table in rk
. I wrote this:
USE rk_new INSERT INTO dbo.RDRBP SELECT * FROM rk.dbo.RDRBP
But the error takes off: Message 8101, level 16, state 1, line 2 The value of the column of identifiers in the table "dbo.RDRBP" can be indicated explicitly only when using the list of columns and when IDENTITY_INSERT is set to ON. Tell me what to do.