用DTS选择复制就可以了,然后选择追加

解决方案 »

  1.   

    insert into B..table1 (select * from A..table1 union
    select * from A..table2 union
    select * from A..table3 union)
      

  2.   

    更正:
    insert into B..table1 (select * from A..table1 union
    select * from A..table2 union
    select * from A..table3 )
      

  3.   

    insert into B..table1 
       select * from A..table1
    insert into B..table2
       select * from A..table2OR:DTS导入导出数据.
      

  4.   

    INSERT INTO B.dbo.table1 
    SELECT * FROM A.dbotable1INSERT INTO B.dbo.table1 
    SELECT * FROM A.dbotable2..
      

  5.   

    insert into Btable1 select * from Atable1
    insert into Btable2 select * from Atable2