Re: Problem in SQL Trigger

From: Rajesh Kumar Mallah <mallah(at)trade-india(dot)com>
To: Ramesh Patel <ramesh(at)banasdairy(dot)coop>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Problem in SQL Trigger
Date: 2004-04-30 14:14:10
Message-ID: 40925F32.1000208@trade-india.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Can you tell us about the postgresql versions in 7.3 and 9.0
also post the actuall error message from postgresql.

regds
mallah.

Ramesh Patel wrote:

>
> Hi
> i have one problem in Trigger.
> this trigger alread work
> on Red Hat Linux 7.3 but now i shift to RHL9.0
> in RHL 9.0 not
> working . in this problem in ROUND function.
> but how to i slove this
> i dont know. so please help me.
> This is Function and
> Trigger.
> /////////////////////////// Function
> Start//////////////////////////////////////////
> CREATE
> FUNCTION add_issue_fun() returns opaque as'
> BEGIN
> UPDATE
> mtrl_mst
> set balstk_cs = balstk_cs -
> NEW.issueqty_cs,
> balstk_mt = round( cast((balstk_mt -
> NEW.issueqty_mt) as numeric ),4)
> where mtrl_mst.mtrl_code =
> NEW.mtrl_code;
> UPDATE rcpt_detail
> set consqty_cs=consqty_cs +
> NEW.issueqty_cs
> WHERE rcpt_detail.batch_code = NEW.batch_code
>
> and rcpt_detail.mtrl_code = NEW.mtrl_code
> and
> rcpt_detail.loc_code = NEW.loc_code;
> return
> NULL;
> END;'
> language 'plpgsql';
>
> ///////////////////////////
> Function End//////////////////////////////////////////
> ///////////////////////////Trigger Start
> //////////////////////////////////////////
> CREATE
> TRIGGER add_issue_trg
> AFTER INSERT ON issue_detail
> FOR EACH
> ROW EXECUTE PROCEDURE add_issue_fun();
>
> /////////////////////////// Trigger
> End//////////////////////////////////////////
>
> Thanking
>
>
> Ramesh Patel
> Computer Dept.
> Banasdairy, Palanpur
>

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Alain Reymond 2004-04-30 15:06:03 Database structure
Previous Message Jeff Eckermann 2004-04-30 14:11:45 Re: isnumeric() function?