Faing issue loading below row into BQ. I have already tried suggestion given on stackoverflow but no luck. Below is my data:
Id;description;curator_id;Q_code;ITG_NUM ABC;”weather is good for skiing \”B\””;ROLLON;HFCKQ:5051 CDE;"NO wonder it is good"B"";;MOVEON;CKHLP;5058
I have added below parameters as suggested:
job_config = bigquery.LoadJobConfig(
autodetect=True,
source_format=bigquery.SourceFormat.CSV,
quote_character = '"',
encoding='UTF-8',
field_delimiter=';',
write_disposition="WRITE_APPEND",
skip_leading_rows=1,
)
But still getting error: Error detected while parsing row starting at position: 155482. Error: Data between close double quote (") and field separator.
Any suggestion?