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, 2591🔥, 0💬
Popular Posts:
How to set the current database in SQL Server? Once you are connected to the SQL Server, you should ...
How To Format DATETIME Values to Strings with the CONVERT() Function in SQL Server Transact-SQL? SQL...
How To Get the Definition of a View Out of the SQL Server in SQL Server? If you want get the definit...
What Is Program Global Area (PGA) in Oracle? A Program Global Area (PGA) is a memory buffer that is ...
How Many Groups of Data Types in MySQL? MySQL support 3 groups of data types as listed below: String...