Basic Oracle Concepts and Programming Question:

Download Job Interview Questions and Answers PDF

How To Execute a Stored Procedure in Oracle?

Oracle Database Interview Question
Oracle Database Interview Question

Answer:

If you want to execute a stored procedure, you can use the EXECUTE statement. The example script below shows how to executes a stored procedure:

SQL> set serveroutput on;

SQL> CREATE PROCEDURE Greeting AS
2 BEGIN
3 DBMS_OUTPUT.PUT_LINE('Welcome to globalguideline!');
4 END;
5 /
Procedure created.

SQL> EXECUTE Greeting;
Welcome to globalguideline!


Download Oracle Database Interview Questions And Answers PDF

Previous QuestionNext Question
How To Create a Stored Procedure in Oracle?How To Drop a Stored Procedure in Oracle?