Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: syntax call stored procedure
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
![]() |
![]() |