Reputation: 5776
What are the advantages/disadvantages of SQL Server bulk insert?
advantages/disadvantages vs regular single row inserts while an app is processing data.
Upvotes: 2
Views: 7409
Reputation: 1
BCP is used for the BULK data load in sql server.Here are few advantages listed below.
Upvotes: 0
Reputation: 10184
I think the basic purpose for bulk insert is to allow for keys/constraints to be suspended while a large amount of data is imported, which would be much quicker than a conventional record-by-record/programmatic INSERT..not sure there is a "disadvantage," unless you try to use it in a scenario where it wasn't really designed/intended.
Upvotes: 4