I am attempting to bulk insert from a CSV file to a table. The CSV is a 6GB file with 5 columns, I am unsure of how many rows are in the data, but it is over 10 million. Any Bulk Insert runs into an error "Attempting to grow LOB beyond maximum allowed size" Is there any other way to import this file aside from splitting it into multiple files? I don't want to write a program to loop through every row in the file and create multiple smaller files, and I don't want to write a program that does millions of insert statements. Any help would be appreciated. Thanks.