------解决方案-------------------- SET IDENTITY_INSERT 允许将显式值插入表的标识列中。
语法 SET IDENTITY_INSERT [ database.[ owner.] ] { table } { ON | OFF }
参数 database
是指定的表所驻留的数据库名称。
owner
是表所有者的名称。
table
是含有标识列的表名。
注释 任何时候,会话中只有一个表的 IDENTITY_INSERT 属性可以设置为 ON。如果某个表已将此属性设置为 ON,并且为另一个表发出了 SET IDENTITY_INSERT ON 语句,则 Microsoft® SQL Server™ 返回一个错误信息,指出 SET IDENTITY_INSERT 已设置为 ON 并报告此属性已设置为 ON 的表。
--> 测试数据:[ta]
if object_id('[ta]') is not null drop table [ta]
create table [ta](id int primary key)
insert [ta]
select 3 union all
select 5 union all
select 6 union all
select 9
select * from [ta]
--> 测试数据:生成连续数据表
if object_id('[tb]') is not null drop table [tb]
select identity(int,1,1) as id into tb from sysobjects a,sysobjects b
insert into ta select min(b.id) from tb b where not exists(select 1 from ta where b.id=id)
insert into ta select min(b.id) from tb b where not exists(select 1 from ta where b.id=id)
select * from ta
/*
id
-----------
1
2
3
5
6
9
(6 行受影响)
------解决方案--------------------