Possible Duplicate:
SQL Server Bulk insert of CSV file with inconsistent quotes
I have been given a million row CSV to import into SQL Server that is basically like this:
"A",B,C,D,"E","F"
I have done it ok in the past using OPENROWSET BULK and a format file catering for CSV file with no quotes around any data or all columns with quotes.
What do people normally do to handle a CSV like this and a FormatFile where some have quotes round and some fields dont?
Note: i will be cross joining with another table and not importing all coumns from the CSV, which is why I used OpenRowset Bulk (and I dont have access to bcp on the server either).