1) What is PL SQL ? PL SQL is a procedural language which has interactive SQL, as well as procedural programming language constructs...
Read moreWhat is Nested Blocks Oracle? In PL/SQL, each block can be nested into another block. They are referred as a nested block. Nested blocks...
Read moreWhat is Dynamic SQL? Dynamic SQL is a programming methodology for generating and running statements at run-time. It is mainly used to ...
Read moreWhat is Object Type in PL/SQL? Object-Oriented Programming is especially suited for building reusable components and complex application...
Read moreWhat are Triggers in PL/SQL? Triggers are stored programs that are fired automatically when some events occur. The code to be fired can ...
Read moreWhat is Package in Oracle? PL/SQL package is a logical grouping of a related subprogram (procedure/function) into a single element. A ...
Read moreWhat are TCL Statements in PL/SQL? TCL stands for Transaction Control Statements. It will either save the pending transactions or roll b...
Read moreWhat is BULK COLLECT? BULK COLLECT reduces context switches between SQL and PL/SQL engine and allows SQL engine to fetch the records a...
Read moreWhat is CURSOR in PL/SQL? A Cursor is a pointer to this context area. Oracle creates context area for processing an SQL statement whic...
Read moreIn this tutorial, we are going to learn how to use SQL in PL/SQL. SQL is the actual component that takes care of fetching and updating...
Read moreWhat is Exception Handling in PL/SQL? An exception occurs when the PL/SQL engine encounters an instruction which it cannot execute due t...
Read moreIn this tutorial, you are going to see the detailed description on how to create and execute the named blocks (procedures and functions)...
Read moreWhat is While Loop? WHILE loop statement works similar to the Basic loop statement except the EXIT condition is at the very beginning o...
Read moreWhat is For Loop? "FOR LOOP" statement is best suitable when you want to execute a code for a known number of times rather tha...
Read moreWhat are Loops? Loops allows a certain part of the code in a program to get executed for the desired number of times. In this tutorial...
Read moreWhat is CASE Statement? A CASE statement is similar to IF-THEN-ELSIF statement that selects one alternative based on the condition fro...
Read moreWhat are Decision-Making Statements? Decision making statements are those who will decide the flow-control of SQL statements based on ...
Read moreWhat is Record Type? A Record type is a complex data type which allows the programmer to create a new data type with the desired column ...
Read moreWhat is Collection? A Collection is an ordered group of elements of particular data types. It can be a collection of simple data type ...
Read moreWhat is Identifiers? Identifiers are nothing but a name that is given to a PL/SQL object. The object could be constant, variable, exce...
Read more