What are the advantages/disadvantages of SQL Server bulk insert?
advantages/disadvantages vs regular single row inserts while an app is processing data.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.