Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: syntax call stored procedure

Re: syntax call stored procedure

From: Billy Verreynne <vslabs_at_onwe.co.za>
Date: Fri, 10 Dec 1999 09:54:45 +0200
Message-ID: <82qble$lot$1@ctb-nnrp1.saix.net>


henry wrote in message <82peuv$qno$1_at_nnrp1.deja.com>...

>In MS SQL7, I use the following syntax:
>
>EXEC SPMMGETCONFINFO 'HENRY', 'SF', 1
>
>In Oracle, I use the following syntax:
>
>EXEC SPMMGETCONFINFO('HENRY', 'SF', 1)
>

Try the following in Oracle:

BEGIN
  SPMMGETCONFINFO('HENRY', 'SF', 1);
END; regards,
Billy Received on Fri Dec 10 1999 - 01:54:45 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US