BサーバーからAサーバーにあるテーブルからデータを挿入したいと思います。
元:
select count(*) from A.table
-- 100 rows affected
delete from A.table where customer_code = '100'
-- 10 rows affected
select count(*) from B.table
-- 200 rows affected
select count(*) from B.table where customer_code='100'
-- 20 rows affected
both the tables have identity(1,1) and primary_key
insert into A.table(customer_key,customer_code,custome_name)
select customer_key,customer_code,custome_name
from B.table where customer_code='100'
-- PRIMARY KEY 制約違反。オブジェクト 'A.table' に重複キーを挿入できません。
私はすでに試しました
SET IDENTITY_INSERT <> ON
DBCC CHECKIDENT(<>, RESEED,0)
SQL Server 2005 を使用しています。