Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: URGENT Off-topic -> Triggers in Informix
Informix? Your a ways from home. :)
If I remember correctly you just need some parentheses:
create trigger cmst_trig
UPDATE on cmst
for each row
( execute procedure sp_cmst_upd ( ) );
Surround your actions with parens and you must call your procedure with empty parens if there are no parameters to pass.
Check out http://www.iiug.org <http://www.iiug.org> to find and sign up for the Informix listserv.
-----Original Message-----
Sent: Wednesday, June 12, 2002 1:33 AM
To: Multiple recipients of list ORACLE-L
I wrote a trigger in Informix ->
create trigger cmst_trig
UPDATE on cmst
for each row
execute procedure sp_cmst_upd;
But this is giving Syntax Error...Any help is welcome...
Thanks and regards,
Santosh
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Bob Lofstrand INET: blofstrand_at_csedge.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Wed Jun 12 2002 - 12:32:42 CDT
- text/plain attachment: InterScan_Disclaimer.txt
![]() |
![]() |