Friday 17 February 2017

PL/SQL CONTROL STRUCTURES



 IF Statement
  Loop…End Loop
  Exit command
  While Loop
  For loop
  Goto statement

IF statement
IF statement is used to check the condition and execute statements depending upon the result of the condition.

The following is the syntax of IF statement.

IF condition-1 THEN

      statements_set_1;

[ELSIF condition-2 THEN

       statements_set_2;] ...
[ELSE

       statements_set_3; ]

END IF;

Condition is formed using relational operators listed in table 1.


Operator
Meaning
Greater than
>=
Greater than or equal to
Less than
<=
Less than or equal to
=
Equal to
<>, !=, ~=, ^=
Not equal to
LIKE
Returns true if the character pattern matches the given value.
BETWEEN..AND
Returns true if the value is in the given range.
IN
Returns true if the value is in the list.
IS NULL
Return true if the value is NULL.
Table 1: Relational Operators.

In order to combine two conditions, logical operators – AND and OR are used. When two conditions are combined with AND then both the conditions must be true to make the entire condition true. If conditions are combined with OR then if any one condition is true then the entire condition will be true.

The following are valid conditions:

    If amt > 5000 then  

    If rate > 500 and qty < 10 then 

    If rate between 100 and 200 then

Now, let us write a simple PL/SQL block that uses IF statement.

The following program will increase the course fee of Oracle by 10% if more than 100 students have joined for Oracle, otherwise it will decrease the course fee by 10%.

declare
   v_ns  number(5);
begin
  
    -- get no. of students of the course

    select  count(*) into v_ns
    from students
    where  bcode in ( select bcode from  batches
                      where  ccode = 'ora');

    if  v_ns > 100 then
           update courses set fee = fee * 1.1
           where  ccode = 'ora';
    else
           update courses set fee = fee * 0.9
           where  ccode = 'ora';
    end if;

    commit;

end;
/

The above block uses IF statement to check whether the variable V_NS is greater than 100. If the condition is satisfied it will increase the course fee by 10% otherwise it will decrease the course fee by 10%.

The above program will either increase the course fee by 10% or decrease it by 10%.
That means it will take either of two possible actions. But in some cases we may have more than two actions. For instance, what if we have to change the course fee as follows based on the number of students joined in Oracle course:

No. of Students          Percentage of change

>100                            Increase by 20
>50                              Increase by 15
>10                              Increase by 5
<=10                           Decrease by 10

The following program will change course fee of Oracle according to the above table.

declare
   v_ns  number(5);
   v_fee courses.fee%type;

begin
  
    -- get no. of students of the course

    select  count(*) into v_ns
    from students
    where  bcode in ( select bcode from  batches
                      where  ccode = 'ora');

    select fee into v_fee
    from   courses
    where  ccode = 'ora';


    if  v_ns > 100 then
              v_fee := v_fee * 1.2;  -- 20%
    elsif  v_ns > 50 then
              v_fee := v_fee * 1.15;  -- 15%
    elsif  v_ns > 10 then
              v_fee := v_fee * 1.15;  -- 15%
    else
              v_fee := v_fee * 0.90;  -- 10% decrease
       
    end if;

    -- update fee in table

    update courses set fee = v_fee
    where  ccode = 'ora';

  
end;
/

The above program first checks whether the number of students is more than 100. If so, it increases course fee by 20%. If the first condition is not satisfied then it checks whether second condition is true (v_no > 50) and if so it executes the statement after that ELSIF.

The IF statement will be terminated once a condition is true and the corresponding statements are executed.

If none of the conditions is true then it executes statements given after ELSE.

Every IF must have a matching END IF. However, ELSIF that is used to check for a condition need not have corresponding END IF. Also note that ELSIF can be used only after an IF is used.

Apart from checking condition and executing statements depending on the result of the condition, PL/SQL also allows you to repeatedly execute a set of statements.  Repeatedly executing a set of statements is called as looping structure.

In the next few sections we will discuss about looping structures.

LOOP
This is used to repeatedly execute a set of statements.  This is the simplest form of looping structures.

LOOP
     Statements;
END LOOP;

1.            Note: Loop… End Loop has no termination point. So unless you terminate loop using EXIT command (discussed next) it becomes an infinite loop.

Statements are the statements that are to be repeatedly executed. In case of LOOP, these statements must make sure they exit the loop at one point or other. Otherwise the statements will be executed indefinitely.

EXIT

This is used to exit out of a Loop. This is mainly used with LOOP statement, as there is no other way of terminating the LOOP.

The following is the syntax of EXIT command.

EXIT  [WHEN condition];

If EXIT is used alone, it will terminate the current loop as and when it is executed.

If EXIT is used with WHEN clause, then the current loop is terminated only when the condition given after WHEN is satisfied.

The following examples show how you can use EXIT and EXIT WHEN to exit a Loop.

Example 1:

LOOP
        ...

        IF count > 10 THEN
            EXIT;    --  terminates  loop
        END IF;

        ...

END  LOOP;

Example 2:
     
LOOP
        ...

        EXIT WHEN count >10; -- terminates loop

        ...

END LOOP;

The following program will display numbers 1 to 10 using LOOP.

declare
     i number(2) := 1;
begin
  
     loop
         dbms_output.put_line(i);
         i := i + 1;
         exit when i > 10;
     end loop;

end;
/

In the above program, we first initialized variable I to 1. Then LOOP starts and displays the value of I on the screen. Then I is incremented by one. EXIT statement checks whether I is greater than 10. If the condition is true then EXIT is executed and LOOP is terminated otherwise it enters into loop again and redisplays the value of I.

Nested Loops
It is possible to have a loop within another loop.  When a loop is placed within another loop it is called as nested loop.  The inner loop is executed for each iteration of outer loop.

The following example will display table up to 10 for numbers from 1 to 5.


declare

    i number(2);
    j number(2);

begin
  
    i := 1;

    loop
  
       j:= 1;

       loop
          
          dbms_output.put_line(i || '*' || j || '=' || i * j);
          j := j + 1;
          exit when j > 10;

       end loop;

       i := i + 1;
       
       exit when i > 5;

    end loop;

end;
/
            

Exiting from nested loop
It is possible to exit current loop using EXIT statement. It is also possible to use EXIT statement to exit any enclosing loop.  This is achieved using loop label.

A loop label is a label that is assigned to a loop. By using this label that is assigned to a loop, EXIT can exit a specific loop instead of the current loop.

The following example uses EXIT to exit the outer loop.


<<outerloop>>
LOOP
   ...
   LOOP
      ...
      EXIT outerloop WHEN ...  – exits outer loop
 
   END LOOP;
   ...
END LOOP;


EXIT statement uses label to specify which enclosing loop is to be terminated. EXIT uses outerloop, which is the label given to outer loop, to terminate outer loop.


WHILE
Executes a series of statements as long as the given condition is true.

  WHILE condition LOOP
        Statements;
  END LOOP;

As long as the condition is true then statements will be repeatedly executed. Once the condition is false then loop is terminated.

The following example will display numbers from 1 to 10.

declare
     i number(2) := 1;
begin
  
     while  i <= 10
     loop
         dbms_output.put_line(i);
         i := i + 1;
     end loop;

end;
/

As long as the condition (I<=10) is true statements given within LOOP and END LOOP are executed repeatedly. 

The condition is checked at the beginning of iteration. Statements are executed only when the condition is true otherwise loop is terminated.

FOR
This looping structure is best suited to cases where we have to repeatedly execute a set of statements by varying a variable from one value to another.

FOR counter IN [REVERSE] lowerrange .. upperrange   LOOP
         Statements;
END LOOP;

lowerrange  and   upperrange  may also be expressions.

FOR loop sets counter to lower range and checks whether it is greater than upper range. If counter is less than or equal to upper range then statements given between LOOP and END LOOP will be executed.  At the end of execution of statements, counter will be incremented by one and the same process will repeat.

The following is the sequence of steps in FOR LOOP.

Steps
The following is the sequence in which FOR will take the steps.

2.    Counter is set  to  lowerrange.
3.    If counter is less than or equal to  upperrange  then  statements are executed otherwise  loop is terminated.
4.    Counter is incremented by one and only one. It is not possible to increment counter by more than one.
5.    Repeats step2.

The following example will display numbers from 1 to 10.

begin
  
    for i in 1..10
    loop
         dbms_output.put_line(i);
    end loop;

end;
/

If REVERSE option is used the following steps will take place:

1.    Counter is set to upper range.
2.    If counter is greater than or equal to lower range then statements are executed otherwise loop is terminated.
3.    Counter is decremented by one.
4.    Go to step 2.

The following FOR loop uses REVERSE option to display number from 10 to 1.

begin
  
    for i in REVERSE 1..10
    loop
         dbms_output.put_line(i);
    end loop;

end;
/

5.            Note: It is not possible to change the step value for FOR loop.

Sample program using FOR loop
The following example will display the missing roll numbers. The program starts at lowest available roll number and goes up to largest roll number. It will display the roll numbers that are within in the range and not in the STUDENTS table.

declare
   
  v_minrollno  students.rollno%type;
  v_maxrollno  students.rollno%type;
  v_count      number(2);

begin
  
  -- get min and max roll numbers

  select  min(rollno) , max(rollno) into  v_minrollno, v_maxrollno
  from  students;

  for i  in v_minrollno .. v_maxrollno
  loop
     
      select count(*) into v_count
      from students
      where rollno = i;

      -- display roll number if count is 0
      if  v_count = 0 then
            dbms_output.put_line(i);
      end if;

  end loop;

end;
/
 
The above program takes minimum and maximum roll numbers using MIN and MAX functions. Then it sets a loop that starts at minimum roll number and goes up to maximum roll number. In each iteration it checks whether there is any student with the current roll number (represented by variable i). If no row is found then COUNT (*) will be 0. So it displays the roll number if count is zero.


GOTO statement
Transfers control to the named label.  The label must be unique and should precede an executable PL/SQL statement or PL/SQL block.

The following example shows how to create label and how to transfer control to the label using GOTO statement.


BEGIN

            ...
            GOTO   change_details;
            ...
             
           <<change_details>>
           update  students  ... ;

END;

GOTO statement transfers control to UPDATE statement that is given after the label change_details

Label is created by enclosing a name within two sets of angle brackets (<< >>). The label must be given either before an executable PL/SQL statement or a block.

Restrictions
The following are the restrictions on the usage of GOTO statement.

q  Cannot branch into an IF statement
q  Cannot branch into a LOOP
q  Cannot branch into a Sub block.
q  Cannot branch out of a subprogram – a procedure or function.
q  Cannot branch from exception handler into current block.

The following is an invalid usage of GOTO statement as it tries to enter into an IF block:

BEGIN
          ...
         /* following  is  invalid because GOTO can not
            branch into  an IF statement */

           GOTO change_details; 
           ...
           IF  condition  THEN
                 ...
                <<change_details>>
                update  students  ... ;
                 ...
           END IF;
END;


Summary

Any programming language has basic control structures like IF statement, looping structures etc. These control structures are an important part of PL/SQL, because they allow data processing.  In this chapter, we have covered basic control structure, but the practical usage of these control constructs will be better understood as you write more programs.

Database Management System (DBMS) Basics Questions and Answers

What is database?
 A database is a logically coherent collection of data with some inherent meaning, representing some aspect of real world and which is designed, built and populated with data for a specific purpose.
   
What is DBMS?
It is a collection of programs that enables user to create and maintain a database. In other words it is general-purpose software that provides the users with the processes of defining, constructing and manipulating the database for various applications.
    What is a Database system?
    The database and DBMS software together is called as Database system.
   
What are the advantages of DBMS?
        Redundancy is controlled.
        Unauthorised access is restricted.
        Providing multiple user interfaces.
        Enforcing integrity constraints.
        Providing backup and recovery.
   
What are the disadvantage in File Processing System?
        Data redundancy and inconsistency.
        Difficult in accessing data.
        Data isolation.
        Data integrity.
        Concurrent access is not possible.
        Security Problems.
   
Describe the three levels of data abstraction?
    The are three levels of abstraction:
        Physical level: The lowest level of abstraction describes how data are stored.
        Logical level: The next higher level of abstraction, describes what data are stored in database and what relationship among those data.
        View level: The highest level of abstraction describes only part of entire database.
   
Define the "integrity rules"?
    There are two Integrity rules.
        Entity Integrity: States that "Primary key cannot have NULL value"
        Referential Integrity: States that "Foreign Key can be either a NULL value or should be Primary Key value of other relation.
   
What is extension and intension?
        Extension: It is the number of tuples present in a table at any instance. This is time dependent.
        Intension: It is a constant value that gives the name, structure of table and the constraints laid on it.
   
What is System R? What are its two major subsystems?
    System R was designed and developed over a period of 1974-79 at IBM San Jose Research Center. It is a prototype and its purpose was to demonstrate that it is possible to build a Relational System that can be used in a real life environment to solve real life problems, with performance at least comparable to that of existing system.
    Its two subsystems are
        Research Storage
        System Relational Data System.
   
How is the data structure of System R different from the relational structure?
    Unlike Relational systems in System R
        Domains are not supported
        Enforcement of candidate key uniqueness is optional
        Enforcement of entity integrity is optional
        Referential integrity is not enforced
   
What is Data Independence?
    Data independence means that "the application is independent of the storage structure and access strategy of data". In other words, The ability to modify the schema definition in one level should not affect the schema definition in the next higher level.
    Two types of Data Independence:
        Physical Data Independence: Modification in physical level should not affect the logical level.
        Logical Data Independence: Modification in logical level should affect the view level.
    NOTE: Logical Data Independence is more difficult to achieve
   
What is a view? How it is related to data independence?
    A view may be thought of as a virtual table, that is, a table that does not really exist in its own right but is instead derived from one or more underlying base table. In other words, there is no stored file that direct represents the view instead a definition of view is stored in data dictionary.
    Growth and restructuring of base tables is not reflected in views. Thus the view can insulate users from the effects of restructuring and growth in the database. Hence accounts for logical data independence.
   
What is Data Model?
    A collection of conceptual tools for describing data, data relationships data semantics and constraints.
   
What is E-R model?
    This data model is based on real world that consists of basic objects called entities and of relationship among these objects. Entities are described in a database by a set of attributes.
   
What is Object Oriented model?
    This model is based on collection of objects. An object contains values stored in instance variables with in the object. An object also contains bodies of code that operate on the object. These bodies of code are called methods. Objects that contain same types of values and the same methods are grouped together into classes.
   
What is an Entity?
    It is a 'thing' in the real world with an independent existence.
   
What is an Entity type?
    It is a collection (set) of entities that have same attributes.
   
What is an Entity set?
    It is a collection of all entities of particular entity type in the database.
   
What is an Extension of entity type?
    The collections of entities of a particular entity type are grouped together into an entity set.
   
What is Weak Entity set?
    An entity set may not have sufficient attributes to form a primary key, and its primary key compromises of its partial key and primary key of its parent entity, then it is said to be Weak Entity set.
   
What is an attribute?
    It is a particular property, which describes the entity.
   
What is a Relation Schema and a Relation?
    A relation Schema denoted by R(A1, A2, ..., An) is made up of the relation name R and the list of attributes Ai that it contains. A relation is defined as a set of tuples. Let r be the relation which contains set tuples (t1, t2, t3, ..., tn). Each tuple is an ordered list of n-values t=(v1,v2, ..., vn).
   
What is degree of a Relation?
    It is the number of attribute of its relation schema.
   
What is Relationship?
    It is an association among two or more entities.
   
What is Relationship set?
    The collection (or set) of similar relationships.
   
What is Relationship type?
    Relationship type defines a set of associations or a relationship set among a given set of entity types.
   
What is degree of Relationship type?
    It is the number of entity type participating.
   
What is DDL (Data Definition Language)?
    A data base schema is specifies by a set of definitions expressed by a special language called DDL.
   
What is VDL (View Definition Language)?
    It specifies user views and their mappings to the conceptual schema.
   
What is SDL (Storage Definition Language)?
    This language is to specify the internal schema. This language may specify the mapping between two schemas.
   
What is Data Storage - Definition Language?
    The storage structures and access methods used by database system are specified by a set of definition in a special type of DDL called data storage-definition language.
   
What is DML (Data Manipulation Language)?
    This language that enable user to access or manipulate data as organised by appropriate data model.
        Procedural DML or Low level: DML requires a user to specify what data are needed and how to get those data.
        Non-Procedural DML or High level: DML requires a user to specify what data are needed without specifying how to get those data.
   
What is DML Compiler?
    It translates DML statements in a query language into low-level instruction that the query evaluation engine can understand.
   
What is Query evaluation engine?
    It executes low-level instruction generated by compiler.
   
What is DDL Interpreter?
    It interprets DDL statements and record them in tables containing metadata.
   
What is Record-at-a-time?
    The Low level or Procedural DML can specify and retrieve each record from a set of records. This retrieve of a record is said to be Record-at-a-time.
   
What is Set-at-a-time or Set-oriented?
    The High level or Non-procedural DML can specify and retrieve many records in a single DML statement. This retrieve of a record is said to be Set-at-a-time or Set-oriented.
   
What is Relational Algebra?
    It is procedural query language. It consists of a set of operations that take one or two relations as input and produce a new relation.
   
What is Relational Calculus?
    It is an applied predicate calculus specifically tailored for relational databases proposed by E.F. Codd. E.g. of languages based on it are DSL ALPHA, QUEL.
   
How does Tuple-oriented relational calculus differ from domain-oriented relational calculus?
        The tuple-oriented calculus uses a tuple variables i.e., variable whose only permitted values are tuples of that relation. E.g. QUEL
        The domain-oriented calculus has domain variables i.e., variables that range over the underlying domains instead of over relation. E.g. ILL, DEDUCE.
   
What is normalization?
    It is a process of analysing the given relation schemas based on their Functional Dependencies (FDs) and primary key to achieve the properties
    (1).Minimizing redundancy, (2). Minimizing insertion, deletion and update anomalies.
   
What is Functional Dependency?
    A Functional dependency is denoted by X Y between two sets of attributes X and Y that are subsets of R specifies a constraint on the possible tuple that can form a relation state r of R. The constraint is for any two tuples t1 and t2 in r if t1[X] = t2[X] then they have t1[Y] = t2[Y]. This means the value of X component of a tuple uniquely determines the value of component Y.
   
What is Lossless join property?
    It guarantees that the spurious tuple generation does not occur with respect to relation schemas after decomposition.
   
What is 1 NF (Normal Form)?
    The domain of attribute must include only atomic (simple, indivisible) values.
   
What is Fully Functional dependency?
    It is based on concept of full functional dependency. A functional dependency X Y is full functional dependency if removal of any attribute A from X means that the dependency does not hold any more.
   
What is 2NF?
    A relation schema R is in 2NF if it is in 1NF and every non-prime attribute A in R is fully functionally dependent on primary key.
   
What is 3NF?
    A relation schema R is in 3NF if it is in 2NF and for every FD X A either of the following is true
        X is a Super-key of R.
        A is a prime attribute of R.
    In other words, if every non prime attribute is non-transitively dependent on primary key.
   
What is BCNF (Boyce-Codd Normal Form)?
    A relation schema R is in BCNF if it is in 3NF and satisfies an additional constraint that for every FD X A, X must be a candidate key.
   
What is 4NF?
    A relation schema R is said to be in 4NF if for every Multivalued dependency X Y that holds over R, one of following is true.
    1.) X is subset or equal to (or) XY = R.
    2.) X is a super key.
   
What is 5NF?
    A Relation schema R is said to be 5NF if for every join dependency {R1, R2, ..., Rn} that holds R, one the following is true 1.) Ri = R for some i.
    2.) The join dependency is implied by the set of FD, over R in which the left side is key of R.
   
What is Domain-Key Normal Form?
    A relation is said to be in DKNF if all constraints and dependencies that should hold on the the constraint can be enforced by simply enforcing the domain constraint and key constraint on the relation.
   
What are partial, alternate,, artificial, compound and natural key?
        Partial Key: It is a set of attributes that can uniquely identify weak entities and that are related to same owner entity. It is sometime called as Discriminator.
        Alternate Key: All Candidate Keys excluding the Primary Key are known as Alternate Keys.
        Artificial Key: If no obvious key, either stand alone or compound is available, then the last resort is to simply create a key, by assigning a unique number to each record or occurrence. Then this is known as developing an artificial key.
        Compound Key: If no single data element uniquely identifies occurrences within a construct, then combining multiple elements to create a unique identifier for the construct is known as creating a compound key.
        Natural Key: When one of the data elements stored within a construct is utilized as the primary key, then it is called the natural key.
   
What is indexing and what are the different kinds of indexing?
    Indexing is a technique for determining how quickly specific data can be found.
    Types:
        Binary search style indexing
        B-Tree indexing
        Inverted list indexing
        Memory resident table
        Table indexing
   
What is system catalog or catalog relation? How is better known as?
    A RDBMS maintains a description of all the data that it contains, information about every relation and index that it contains. This information is stored in a collection of relations maintained by the system called metadata. It is also called data dictionary.
What is meant by query optimization?
    The phase that identifies an efficient execution plan for evaluating a query that has the least estimated cost is referred to as query optimization.

What is durability in DBMS?
    Once the DBMS informs the user that a transaction has successfully completed, its effects should persist even if the system crashes before all its changes are reflected on disk. This property is called durability.
What do you mean by atomicity and aggregation?
    Atomicity: Either all actions are carried out or none are. Users should not have to worry about the effect of incomplete transactions. DBMS ensures this by undoing the actions of incomplete transactions.
    Aggregation: A concept which is used to model a relationship between a collection of entities and relationships. It is used when we need to express a relationship among relationships.

What is a Phantom Deadlock?
    In distributed deadlock detection, the delay in propagating local information might cause the deadlock detection algorithms to identify deadlocks that do not really exist. Such situations are called phantom deadlocks and they lead to unnecessary aborts.
What is a checkpoint and When does it occur?
    A Checkpoint is like a snapshot of the DBMS state. By taking checkpoints, the DBMS can reduce the amount of work to be done during restart in the event of subsequent crashes.
What are the different phases of transaction?
    Different phases are
    1.) Analysis phase,
    2.) Redo Phase,
    3.) Undo phase.
   
What do you mean by flat file database?
    It is a database in which there are no programs or user access languages. It has no cross-file capabilities but is user-friendly and provides user-interface management.
   
What is "transparent DBMS"?
    It is one, which keeps its Physical Structure hidden from user.
   
What is a query?
    A query with respect to DBMS relates to user commands that are used to interact with a data base. The query language can be classified into data definition language and data manipulation language.
   
What do you mean by Correlated subquery?
    Subqueries, or nested queries, are used to bring back a set of rows to be used by the parent query. Depending on how the subquery is written, it can be executed once for the parent query or it can be executed once for each row returned by the parent query. If the subquery is executed for each row of the parent, this is called a correlated subquery.
    A correlated subquery can be easily identified if it contains any references to the parent subquery columns in its WHERE clause. Columns from the subquery cannot be referenced anywhere else in the parent query. The following example demonstrates a non-correlated subquery.
    Example: Select * From CUST Where '10/03/1990' IN (Select ODATE From ORDER Where CUST.CNUM = ORDER.CNUM)
   
What are the primitive operations common to all record management systems?
    Addition, deletion and modification.
    Name the buffer in which all the commands that are typed in are stored?
    'Edit' Buffer.
   
What are the unary operations in Relational Algebra?
    PROJECTION and SELECTION.
    Are the resulting relations of PRODUCT and JOIN operation the same?
    No.
    PRODUCT: Concatenation of every row in one relation with every row in another.
    JOIN: Concatenation of rows from one relation and related rows from another.
   
What is RDBMS KERNEL?
    Two important pieces of RDBMS architecture are the kernel, which is the software, and the data dictionary, which consists of the system-level data structures used by the kernel to manage the database You might think of an RDBMS as an operating system (or set of subsystems), designed specifically for controlling data access; its primary functions are storing, retrieving, and securing data. An RDBMS maintains its own list of authorized users and their associated privileges; manages memory caches and paging; controls locking for concurrent resource usage; dispatches and schedules user requests; and manages space usage within its table-space structures.
    Name the sub-systems of a RDBMS.
    I/O, Security, Language Processing, Process Control, Storage Management, Logging and Recovery, Distribution Control, Transaction Control, Memory Management, Lock Management.
   
Which part of the RDBMS takes care of the data dictionary? How?
    Data dictionary is a set of tables and database objects that is stored in a special area of the database and maintained exclusively by the kernel.
   
What is the job of the information stored in data-dictionary?
    The information in the data dictionary validates the existence of the objects, provides access to them, and maps the actual physical storage location.
   
How do you communicate with an RDBMS?
    You communicate with an RDBMS using Structured Query Language (SQL).
    Define SQL and state the differences between SQL and other conventional programming Languages.
    SQL is a nonprocedural language that is designed specifically for data access operations on normalized relational database structures. The primary difference between SQL and other conventional programming languages is that SQL statements specify what data operations should be performed rather than how to perform them.
   
Name the three major set of files on disk that compose a database in Oracle.
    There are three major sets of files on disk that compose a database. All the files are binary. These are
    1.) Database files
    2.) Control files
    3.) Redo logs
    The most important of these are the database files where the actual data resides. The control files and the redo logs support the functioning of the architecture itself. All three sets of files must be present, open, and available to Oracle for any data on the database to be useable. Without these files, you cannot access the database, and the database administrator might have to recover some or all of the database using a backup, if there is one.
   
What is database Trigger?
    A database trigger is a PL/SQL block that can defined to automatically execute for insert, update, and delete statements against a table. The trigger can e defined to execute once for the entire statement or once for every row that is inserted, updated, or deleted. For any one table, there are twelve events for which you can define database triggers. A database trigger can call database procedures that are also written in PL/SQL.
    What are stored-procedures? And what are the advantages of using them?
    Stored procedures are database objects that perform a user defined operation. A stored procedure can have a set of compound SQL statements. A stored procedure executes the SQL commands and returns the result to the client. Stored procedures are used to reduce network traffic.
    What is Storage Manager?
    It is a program module that provides the interface between the low-level data stored in database, application programs and queries submitted to the system.

What is Buffer Manager?
    It is a program module, which is responsible for fetching data from disk storage into main memory and deciding what data to be cache in memory.

What is Transaction Manager?
     It is a program module, which ensures that database, remains in a consistent state despite system failures and concurrent transaction execution proceeds without conflicting.

What is File Manager?
     It is a program module, which manages the allocation of space on disk storage and data structure used to represent information stored on a disk.

What is Authorization and Integrity manager?
     It is the program module, which tests for the satisfaction of integrity constraint and checks the authority of user to access data.

What are stand-alone procedures?
Procedures that are not part of a package are known as stand-alone because they independently defined. A good example of a stand-alone procedure is one written in a SQL*Forms application. These types of procedures are not available for reference from other Oracle tools. Another limitation of stand-alone procedures is that they are compiled at run time, which slows execution.

What are cursors give different types of cursors?
     PL/SQL uses cursors for all database information accesses statements. The language supports the use two types of cursors
     1.) Implicit
     2.) Explicit
   
What is cold backup and hot backup (in case of Oracle)?
Cold Backup: It is copying the three sets of files (database files, redo logs, and control file) when the instance is shut down. This is a straight file copy, usually from the disk directly to tape. You must shut down the instance to guarantee a consistent copy. If a cold backup is performed, the only option available in the event of data file loss is restoring all the files from the latest backup. All work performed on the database since the last backup is lost.
Hot Backup: Some sites (such as worldwide airline reservations systems) cannot shut down the database while making a backup copy of the files. The cold backup is not an available option.
   
What is meant by Proactive, Retroactive and Simultaneous Update.
        Proactive Update: The updates that are applied to database before it becomes effective in real world.
        Retroactive Update: The updates that are applied to database after it becomes effective in real world.
        Simulatneous Update: The updates that are applied to database at the same time when it becomes effective in real world.

SQL Interview Questions and Answers

There is given sql interview questions and answers that has been asked in many companies. For PL/SQL interview questions, visit our next...