Re: [GENERAL] Problems with a trigger

2005-01-14 Thread Jeff Davis
Perhaps you need to do a FOR EACH ROW trigger? If that doesn't solve it, I need more details. Regards, Jeff On Thu, 2005-01-13 at 15:03 +0200, Valentin Militaru wrote: > Hi! > I have a problem with an AFTER INSERT row-based trigger. It returns > <>. Any ideas? > > Thanks! > Valentin Mi

[GENERAL] Problems with a trigger

2005-01-14 Thread Valentin Militaru
Hi! I have a problem with an AFTER INSERT row-based trigger. It returns <>. Any ideas? Thanks! Valentin Militaru [EMAIL PROTECTED] SC Telcor Communications SRL Tel. fix: 0316900015 Fax: 031691 Telefon mobil: 0741168267 <>

[GENERAL] Problems with a Trigger Statement

2004-04-20 Thread Nathan Schile
I want the following trigger to update a related table when ever a record is inserted/updated. I have the following trigger: CREATE TRIGGER update_status AFTER INSERT OR UPDATE ON public."Bug Status" FOR EACH ROW EXECUTE PROCEDURE public.update_status(); Which Calls this function: CREATE OR