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, 2452🔥, 0💬
Popular Posts:
What Are the Differences between DATE and TIMESTAMP in Oracle? The main differences between DATE and...
How To Connect the Oracle Server as SYSDBA in Oracle? This is Step 4. The best way to connect to the...
How To Get Year, Month and Day Out of DATETIME Values in SQL Server Transact-SQL? You can use DATEPA...
How To Start MySQL Server in MySQL? If you want to start the MySQL server, you can run the "mysqld" ...
What Happens to Your Transactions When ERROR 1213 Occurred in MySQL? If your transaction receives th...