I exported some data from my database table into sql file as insert statements.
Now I want to launch them but I get error ORA-01704: string literal too long.
The problem cause is propably one CLOB column which has XML data more than 4000 chars.
What would be the best workaround?
I have about ~50 SQL insert statements in that file.
Rather than using insert statements, you could leave the data in a delimited file and look at using either SQLLDR, or external tables. External tables are awesome.