Try the replace command
eg
INSERT INTO table (REPLACE(COL1, '"', '')),(REPLACE
(COL2, '"', '')) VALUES ('AA','BB')
That might work, but i haven't tested it
[quoted text, click to view] >-----Original Message-----
>I was using the following command to update the data
>source (a tab-delimited text file):
>
>INSERT INTO table (COL1,COL2) VALUES ('AA','BB')
>
>I found the updated text file looked like this:
>"AA" "BB"
>
>Could anyone tell me how to remove those double
quotation
>marks in the SQL command or configuration? Thanks!
>.