SyntaxFix
Write A Post
Hire A Developer
Questions
What are you using when operate with CLOB?
In all events you can do it with PL/SQL
DECLARE str varchar2(32767); BEGIN str := 'Very-very-...-very-very-very-very-very-very long string value'; update t1 set col1 = str; END; /
Proof link on SQLFiddle