Collections:
What Is a Procedure in Oracle
What Is a Procedure in Oracle?
✍: FYIcenter.com
A procedure is a named program unit. It consists of three parts:
Here how a complete procedure should look like:
PROCEDURE name (parameter_1, parameter_2) AS -- Declaration statements BEGIN -- Executable statements EXCEPTION -- Error handling statements END;
⇒ What Is a Function in Oracle
⇐ Creating Oracle PL/SQL Procedures and Functions
2018-01-27, 2087🔥, 0💬
Popular Posts:
Where to find answers to frequently asked questions on CREATE, ALTER and DROP Statements in MySQL? H...
How To Create a Table Index in Oracle? If you have a table with a lots of rows, and you know that on...
What Happens to Your Transactions When ERROR 1213 Occurred in MySQL? If your transaction receives th...
How To Present a Past Time in Hours, Minutes and Seconds in MySQL? If you want show an article was p...
Where to find answers to frequently asked questions on Managing Security, Login and User in SQL Serv...