我需要在SQLSERVER 2005数据库的表的一行中更改一个PK值.PK目前正在自动递增.
一种可能性是暂时从密钥中删除自动增量,进行修改并将其放回.
该数据库正在生产中.有没有办法安全地进行这种改变而不需要降低DB?
为什么?我的客户想要其中一条记录的特定ID.
我害怕什么?当我修改密钥时,我害怕在DB中添加记录,并且它会以某种方式搞乱另一个使用该字段作为FK的表的索引?我疯了吗?
更新不起作用 - 您必须插入新记录并删除旧记录...
set identity_insert mytable on insert mytable (myidentitycolumn, someothercolumn) select 42, someothercolumn from mytable where myidentitycolumn = 1; delete mytable where myidentitycolumn = 1; set identity_insert mytable off