Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: URGENT Off-topic -> Triggers in Informix

RE: URGENT Off-topic -> Triggers in Informix

From: Bob Lofstrand <blofstrand_at_csedge.com>
Date: Wed, 12 Jun 2002 09:32:42 -0800
Message-ID: <F001.0047C187.20020612093242@fatcity.com>


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

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US