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: executing a stored procedure through SQL PLUS

Re: executing a stored procedure through SQL PLUS

From: Roel Verbunt <verbunro_at_iquip.nl>
Date: 10 Jun 1998 14:38:58 GMT
Message-ID: <6lm5q2$hpj@news3.euro.net>


>Hello, How do I execute a stored procedure through SQL *PLUS with IN and
OUT
>parameters. Any example would be helpful.

Maybe, something like this:

SQL> VARIABLE var_name NUMBER (or whatever) SQL> EXECUTE package_name.proc_name ('parm1' , :var_name) (var_name is OUT-parm)
SQL> PRINT var_name (to show the value)

Roel Received on Wed Jun 10 1998 - 09:38:58 CDT

Original text of this message

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