Collections:
Create a Stored Procedure in Oracle
How To Create a Stored Procedure in Oracle?
✍: FYIcenter.com
A stored procedure is a procedure with a specified name and stored into the current database. If you want to create a stored procedure, you can use the CREATE PROCEDURE statement. The example script below creates a stored procedure:
SQL> CREATE PROCEDURE Greeting AS
2 BEGIN
3 DBMS_OUTPUT.PUT_LINE('Welcome to FYICenter!');
4 END;
5 /
Procedure created.
⇒ Execute a Stored Procedure in Oracle
⇐ Define Anonymous Procedures with Variables in Oracle
2018-11-11, 2844🔥, 0💬
Popular Posts:
How To View Data Files in the Current Database in Oracle? If you want to get a list of all tablespac...
What is SQL Server Transact-SQL (T-SQL)? SQL Server Transact-SQL, also called T-SQL, is an extension...
How To Recover a Dropped Index in Oracle? If you have the recycle bin feature turned on, dropped ind...
How To Use "IF ... ELSE IF ..." Statement Structures in SQL Server Transact-SQL? "IF ... ELSE IF ......
How To Find Out What Privileges a User Currently Has in Oracle? Privileges granted to users are list...