Fastest way to insert in parallel to a single table

后端 未结 3 608
慢半拍i
慢半拍i 2020-12-25 07:57

My company is cursed by a symbiotic partnership turned parasitic. To get our data from the parasite, we have to use a painfully slow odbc connection. I did notice recently

3条回答
  •  独厮守ぢ
    2020-12-25 08:43

    If your looking to do this in code ie c# there is the option to use SqlBulkCopy (in the System.Data.SqlClient namespace) and as this article suggests its possible to do this in parallel.

    http://www.adathedev.co.uk/2011/01/sqlbulkcopy-to-sql-server-in-parallel.html

提交回复
热议问题