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 Creation Error

641078Oct 2 2008 — edited Oct 2 2008
Hi all,

I am using SQL NAVIGATOR to create a trigger. The code the wizard generates however will not compile (invalid identifier on line 1). I cant seem to fix it. Anyone?

CREATE OR REPLACE TRIGGER CWISE175.UPDATE_POSTCODE_TRIGGER
AFTER INSERT OR UPDATE
OF ADDRESS1
,ADDRESS2
,ADDRESS3
,ADDRESS4
,ADDRESS5
,ADDRESS6
,ADDRESS7
ON CWISE175.TOCPOSTALADDRESS
REFERENCING NEW AS New OLD AS Old
FOR EACH ROW
CALL cwise175.update_postcode (:new.c,:new.i,:new.address1,:new.address2,:new.address3,:new.address4,:new.address5,:new.address6,:new.address7) ;

thanks in advance
superkav
This post has been answered by 662793 on Oct 2 2008
Jump to Answer

Comments

Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Oct 30 2008
Added on Oct 2 2008
6 comments
172 views