Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem on executing program in PL./SQL interpreter 1

Status
Not open for further replies.

rabrabbie

Programmer
Jul 3, 2003
10
0
0
US
Hi,

I am just starting to learn using the PL/SQL interpreter.
When I try to execute a procedure(PROC_TEST) in the PL/SQL interpreter it does not execute.
This is the syntax I made

PL/SQL> PROC_TEST;
PL/SQL>
(It did not state anything whether there is a problem or not. It just displayed the PL/SQL > prompt again.

However when I try to execute it in the SQLPLUS it works fine.
SQL> exec PROC_TEST;

Any suggestions?

THanks.


 
Congratulations, your procedure was successfully executed :)
To stop its execution (for debugging) you should set breakpoint(s) or use DEBUG.SUSPEND in your code.

Regards, Dima
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top