I am getting this error
Bulk load data conversion error (truncation) for row 1, column 12 (is_download)
here is the csv...it only has one
This can be solved easily by using the following in your bulk insert:
FORMAT ='CSV'
This takes care of the commas in a string.
Please select this as answer if it helped you.