how to run proc in Oracle 10g
10345 pts.
0
Q:
how to run proc in Oracle 10g
I have oracle 10G (GUI based-running in IE) .how do i compile and run proc code in it

Software/Hardware used:
Oracle 10g
ASKED: Aug 13 2009  9:03 PM GMT
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
0
260 pts.
0
A:
 RATE THIS ANSWER
0
Click to Vote:
  •   0
  •  0
  • AddThis Social Bookmark Button
To compile the proc, then run compile with procedure name and options. To run the procedure by running exec procedure command with passing variables.

systax for compilation
ALTER PROCEDURE [ schema. ]procedure
COMPILE
[ compiler_parameters_clause
[ compiler_parameters_clause ] ... ]
[ REUSE SETTINGS ] ;

e.g. Alter Procedure scott.sample Compile ;



To run procedure example,

Exec Sample;
Last Answered: Sep 4 2009  6:26 AM GMT by Mraman   260 pts.
0
0
Discuss This Answer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _



_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

Carlosdl   29855 pts.  |   Aug 13 2009  10:11PM GMT

What edition of 10g are you using ? (enterprise, express, etc…)

 
0