Fastest way to bulk insert rows into sql server

前端 未结 5 2190
迷失自我
迷失自我 2021-02-08 18:41

Via a web service, remote computers will be sending a set of rows to insert into our central sql server.

What is the best way (performance wise) to insert these rows? T

5条回答
  •  情话喂你
    2021-02-08 18:42

    A mere 50-500 records does not constitute a "bulk insert". The bulk insert mechanism is designed for really massive import of data which is to be immediately followed up with a back up.

    In web service I would simply pass the XML into SQL server. The specifics would be version dependent.

提交回复
热议问题