Skip to Main Content

SQL & PL/SQL

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!

trigger on clob column

Luis KefurJul 18 2011 — edited Jul 18 2011
I need to copy a clob column data from table a to table b using a trigger.

I tryed to do it using the syntaxes:

insert into b.clob_column
values (:new.a.clob_column);

insert into b.clob_column
values (empty_clob());

update b set clob_Column = :new.clob_column;

On the two examples, the b.clob_column results null.

How can i do it correctlly?

I,'m using Oracle Database 11g Release 11.1.0.6.0.

Regards.

Luis.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 15 2011
Added on Jul 18 2011
7 comments
4,423 views