我试图从一个数据库复制一行到不同服务器上的另一个数据库,这里是查询:
set identity_insert ms_tpl on
INSERT ms_tpl select * from [10.24.0.2].[MILKP].[dbo].[ms_tpl] where [id] = 3076
set identity_insert ms_tpl off
当我按F5时,我收到这样的错误信息:
8101Mg,16级,州一级,第3行
An explicit value for the identity column in table ms_tpl can only be specified when a column list is used and IDENTITY_INSERT is ON.
我的问题有错吗?如何解决这个问题?
更多信息:在数据库 ms_tpl
上,有一个称为 id
的列,有自动递增。
感谢 谢谢