Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Trigger Question about the new and old
In article <944717089.372908_at_news.chttl.com.tw>,
"wls" <cuba_at_ms.chttl.com.tw> wrote:
>
> 1 Can I use the new as a parameter of a PL/SQL procedure???
> 2 Where is the description View of new/old??
>
>
Hello,
new and old are specific to triggers so if you call a procedure from a trigger then use parameters to call the procedure For examle :
procedure test (p_1 in varchar2,p_2 in varchar2)
then call the procedure from your trigger with test(:xxx.new,yyy.old);
hope that helps
Detlev
Sent via Deja.com http://www.deja.com/
Before you buy.
Received on Fri Dec 10 1999 - 15:02:35 CST
![]() |
![]() |