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, 2575🔥, 0💬
Popular Posts:
What is SQL Server Transact-SQL (T-SQL)? SQL Server Transact-SQL, also called T-SQL, is an extension...
How to obtain the number of rows found by the last SELECT statement using the FOUND_ROWS() function?...
How To Install Oracle Database 10g XE in Oracle? To install 10g universal edition, double click, Ora...
Is PL/SQL Language Case Sensitive in Oracle? PL/SQL language is not case sensitive: Reserved words a...
How To Enter Unicode Character String Literals in SQL Server Transact-SQL? Unicode characters are mu...