in reply to (OT) How to append some text to a CLOB field in oracle database without actually replacing what was before.
You probably want something like:
UPDATE foo SET bar = bar + baz WHERE bar = 'quux';
Or maybe you need to use CONCAT - I'm not sure. Anyway, this is not the forum for this type of question.
Update: - well, it turns out there is a CLOB datatype after all. My mistake, and my apologies. And thanks gellyfish for setting me straight :)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: (OT) How to append some text to a CLOB field in oracle database without actually replacing what was before.
by gellyfish (Monsignor) on Aug 03, 2006 at 07:43 UTC |