从哪里添加?
如果从其它表  insert ... select ...
如果从其它数据库  考虑dts、OPENROWSET
如果从其它文件   先转成其它数据库(excel、文本文件)

解决方案 »

  1.   

    insert yourtable select * from youranothertableorinsert yourtable 
    select ....
    union
    select ....
    union
    ....
    select ....
      

  2.   

    declare @i int
    set @i=1
    select top 1  name,id  into # 
    from sysobjects  
    while @i<20
      begin 
         insert into # 
         select * from #
         set @i=@i+1
     end
      

  3.   

    是从开发程序中利用ADO方式执行SQL语句添加的,每秒钟最快只能添加100多条记录,不知道有没有可以每秒添加上万条记录的方法。thanks a lot!
      

  4.   

    听说可以有方法直接按照数据库的存储方式写硬盘,而不是利用insert的语句,速度达到写文本的速度,不知道各位是否知道这种方法如何使用?谢谢!
      

  5.   

    insert into
    這樣速度夠快。