Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: PL/SQL calls - are these the same?
assuming the obvious completion of the second one, then yes they are the
same.
-- Niall Litchfield Oracle DBA Audit Commission UK "Harry Boswell" <hboswel1_at_bellsouth.net> wrote in message news:5d9njv4dko5vm8bqhevsj52a0tno2q3n94_at_4ax.com...Received on Thu Aug 14 2003 - 10:32:01 CDT
> Are these two triggers the same?
>
> CREATE OR REPLACE TRIGGER taiud_dskmtb_doc_template
> AFTER INSERT OR UPDATE OR DELETE
> ON dskmtb_doc_template
> BEGIN
> proc_incr_data_version_num ('DSKMTB_DOC_TEMPLATE');
> END;
>
> CREATE OR REPLACE TRIGGER taiud_dskmtb_doc_template
> AFTER INSERT OR UPDATE OR DELETE
> ON dskmtb_doc_template
> CALL proc_incr_data_version_num ('DSKMTB_DOC_TEMPLATE'
>
> I'm thinking they are, but I can't find anything that says so definitely.
>
> Thanks,
> Harry Boswell
![]() |
![]() |