I have loaded the file into HANA server on AWS and have successfully loaded data into the desired table using the command
IMPORT from CSV FILE '/sap/usr/HDB/HDB00/DATA_LOAD/d1.csv'
INTO SCHEMA."TABLE_NAME"
WITH
FIELD DELIMITED BY ','
ERROR LOG '/sap/usr/HDB/HDB00/backup/data/USER3.ERR'
Now, i have a text field ITEM_DESCRIPTION in my CSV which has records like - "AS 7""
I am getting error in my error log file as->
Parsing error: incorrect delimiter for the next column of ITEM_DESCRIPTION field : "AS 7""
What syntax should be used so that it doesn't consider "(quotes) as a delimiter?