Collections:
Execute a Stored Procedure in Oracle
How To Execute a Stored Procedure in Oracle?
✍: FYIcenter.com
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 FYICenter!');
4 END;
5 /
Procedure created.
SQL> EXECUTE Greeting;
Welcome to FYICenter!
⇒ Drop a Stored Procedure in Oracle
⇐ Create a Stored Procedure in Oracle
2018-11-11, 3082🔥, 0💬
Popular Posts:
How To Escape Special Characters in SQL statements in MySQL? There are a number of special character...
What Happens to an Arithmetic Operation with Two Different Data Types in SQL Server Transact-SQL? Wh...
How To Insert New Line Characters into Strings in SQL Server Transact-SQL? If you want to break a st...
How To Convert a Unicode Strings to Non-Unicode Strings in SQL Server Transact-SQL? Since Unicode ch...
What Is Program Global Area (PGA) in Oracle? A Program Global Area (PGA) is a memory buffer that is ...