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