Skip to Main Content

SQLcl

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

cannot load double quote(") character string

Setsu FUJITAApr 28 2016 — edited May 6 2016

i have a csv file which made by sqlcl select /*csv*/ from test.

test.csv

"FIRST","SECOND"

"""quote"" cannot load","second column"

load test test.csv command produces sql below

INSERT INTO TEST(FIRST,SECOND)

VALUES ('""quote"" cannot load','second column');

expects

INSERT INTO TEST(FIRST,SECOND)

VALUES ('"quote" cannot load','second column');

Comments

Post Details

Added on Apr 28 2016
1 comment
578 views