PL/SQL

PL/SQL Program for Fibonacci Series

Here you will get pl/sql program for fibonacci series. It is a series in which next number is the sum of previous two numbers.   PL/SQL Program for Fibonacci Series   Output Enter value for n: 6 old 5: n number:=&n; new 5: n number:=6; Fibonacci series is: 0 1 1 2 3 5 8

PL/SQL Program for Reverse of a Number

Here you will get pl/sql program for reverse of a number. For example: Number = 34589 Reverse of number = 98543   PL/SQL Program for Reverse of a Number   Output Enter value for n: 4578 old 8: n:=&n; new 8: n:=4578; reverse is 8754

PL/SQL Transactions

A PL/SQL transaction is a collection of operations or instructions which is executed as a whole atomic unit. A transaction can access and manipulate various data items. In a multi-user environment, every user is working with his own transaction independence, keeping the database in an inconsistent format. There are few properties which every stable database …

PL/SQL Transactions Read More »

PL/SQL Exception Handling

An exception is a condition which executes when an error occurs during execution of a PL/SQL program. PL/SQL provides a feature that lets the programmers to handle these exceptions in the exception block in a PL/SQL program. Exception block contains the methods (defined by the programmer) which can provide a particular action that needs to …

PL/SQL Exception Handling Read More »