You are on page 1of 25

Oracle PL/SQL Interview Questions And Answers

Q1. What is the difference between PL SQL and SQL?


Ans.
PL SQL vs SQL

Comparison SQL PL/SQL

Execution Single command at a time Block of code

Application Source of data to be displayed Application created by data acquired by


SQL

Structures include DDL and DML based queries Includes procedures, functions, etc
and commands

Recommended while Performing CRUD operations Creating applications to display data


on data obtained using SQL

Compatibility with each SQL can be embedded into PL/SQL cant be embedded in SQL
other PL/SQL

Q2. What is SQL and also describe types of SQL statements?


Ans: SQL stands for Structured Query Language. SQL is a language used to communicate with the server
to access, manipulate and control data.

There are 5 different types of SQL statements.

1. Data Retrieval: SELECT

2. Data Manipulation Language (DML): INSERT, UPDATE, DELETE, MERGE

3. Data Definition Language (DDL): CREATE, ALTER, DROP, RENAME, TRUNCATE.

4. Transaction Control Statements: COMMIT, ROLLBACK, SAVEPOINT

5. Data Control Language (DCL): GRANT, REVOKE

https://www.softwaretestinghelp.com/plsql-interview-questions/
1
Q3. What is an alias in SQL statements?
Ans: Alias is a user-defined alternative name given to the column or table. By default column alias
headings appear in upper case. Enclose the alias in a double quotation marks (“ “) to make it case
sensitive. “AS” Keyword before the alias name makes the SELECT clause easier to read.

For ex: Select emp_name AS name from employee; (Here AS is a keyword and “name” is an alias).

Q4. What is a Literal? Give an example of where it can be used?


Ans: A Literal is a string that can contain a character, a number, or a date that is included in the SELECT
list and that is not a column name or a column alias. Date and character literals must be enclosed within
single quotation marks („ „), number literals need not.

For ex: Select last_name||‟is a‟||job_id As “emp details” from the employee; (Here “is a” is a literal).

Q5. What is the difference between SQL and iSQL*Plus?


SQL Vs iSQL*Plus

SQL iSQL*Plus

Is a Language Is an Environment

Character and date columns heading are left-justified Default heading justification is in Centre.
and number column headings are right-justified.

Cannot be Abbreviated (short forms) Can be Abbreviated

Does not have a continuation character Has a dash (-) as a continuation character if
the command is longer than one line

Use Functions to perform some formatting Use commands to format data

https://www.softwaretestinghelp.com/plsql-interview-questions/
2
Q6. Define the order of Precedence used in executing SQL statements.
Order of Precedence used in executing SQL statements

Order Evaluated Operator

1 Arithmetic operators (*, /, +, -)

2 Concatenation operators (||)

3 Comparison conditions

4 Is[NOT] NULL, LIKE, [NOT] IN

5 [NOT] BETWEEN

6 NOT Logical condition

7 AND logical condition

8 OR logical condition

Q7. What are SQL functions? Describe in brief different types of SQL functions?
Ans: SQL Functions are a very powerful feature of SQL. SQL functions can take arguments but always
return some value.
There are two distinct types of SQL functions:
1) Single-Row functions: These functions operate on a single row to give one result per row.

Types of Single-Row functions:

1. Character

2. Number

3. Date

4. Conversion

5. General

https://www.softwaretestinghelp.com/plsql-interview-questions/
3
6. 2) Multiple-Row functions: These functions operate on groups of rows to give one result per group
of rows.

Types of Multiple-Row functions:

1. AVG

2. COUNT

3. MAX

4. MIN

5. SUM

6. STDDEV

7. VARIANCE

Q8. Explain character, number and date function in detail?


Ans: Character functions: accept character input and return both character and number values. Types of
character function are:

a) Case-Manipulation Functions: LOWER, UPPER, INITCAP

b) Character-Manipulation Functions: CONCAT, SUBSTR, LENGTH, INSTR, LPAD/RPAD, TRIM,


REPLACE

Number Functions: accept Numeric input and return numeric values. Number Functions are: ROUND,
TRUNC and MOD
Date Functions: operates on values of the Date data type. (All date functions return a value of DATE
data type except the MONTHS_BETWEEN Function, which returns a number. Date Functions are
MONTHS_BETWEEN, ADD_MONTHS, NEXT_DAY, LAST_DAY, ROUND, TRUNC.

Q9. What is a Dual Table?


Ans: Dual table is owned by the user SYS and can be accessed by all users. It contains one
columnDummy and one row with the value X. The Dual Table is useful when you want to return a value
only once. The value can be a constant, pseudocolumn or expression that is not derived from a table with
user data.

Q10. Explain Conversion function in detail?

https://www.softwaretestinghelp.com/plsql-interview-questions/
4
Ans: Conversion Functions converts a value from one data type to another. Conversion functions are of
two types:

Implicit Data type conversion:

1. VARCHAR2 or CHAR To NUMBER, DATE

2. NUMBER To VARCHAR2

3. DATE To VARCHAR2

Explicit data type conversion:

1. TO_NUMBER

2. TO_CHAR

3. TO_DATE

TO_NUMBER function is used to convert Character string to Number format. TO_NUMBER function
use fx modifier. Format: TO_NUMBER ( char[, „ format_model‟] ). fx modifier specifies the exact
matching for the character argument and number format model of TO_NUMBER function.
TO_CHAR function is used to convert NUMBER or DATE data type to CHARACTER format.
TO_CHAR Function use fm element to remove padded blanks or suppress leading zeros. TO_CHAR
Function formats:TO_CHAR (date, „format_model‟).Format model must be enclosed in single quotation
marks and is case sensitive.

For ex: Select TO_CHAR (hiredate, „MM/YY‟) from employee.

TO_DATE function is used to convert Character string to date format. TO_DATE function use fx
modifier which specifies the exact matching for the character argument and date format model of
TO_DATE function. TO_DATE function format: TO_DATE ( char[, „ format_model‟] ).

For ex: Select TO_DATE („may 24 2007‟,‟mon dd rr‟) from dual;

Q11. Describe different types of General Function used in SQL?


Ans: General functions are of following types:
1. NVL: Converts a null value to an actual value. NVL (exp1, exp2) .If exp1 is null then NVL function
return value of exp2.
2. NVL2: If exp1 is not null, nvl2 returns exp2, if exp1 is null, nvl2 returns exp3. The argument exp1
can have any data type. NVL2 (exp1, exp2, exp3)

https://www.softwaretestinghelp.com/plsql-interview-questions/
5
3. NULLIF: Compares two expressions and returns null if they are equal or the first expression if they
are not equal. NULLIF (exp1, exp2)
4. COALESCE: Returns the first non-null expression in the expression list. COALESCE (exp1, exp2…
expn). The advantage of the COALESCE function over NVL function is that the COALESCE
function can take multiple alternative values.
5. Conditional Expressions: Provide the use of IF-THEN-ELSE logic within a SQL statement.
Example: CASE Expression and DECODE Function.

Q12. What is the difference between COUNT (*), COUNT (expression), COUNT (distinct
expression)? (Where expression is any column name of Table)
Ans: COUNT (*): Returns a number of rows in a table including duplicates rows and rows containing
null values in any of the columns.

COUNT (EXP): Returns the number of non-null values in the column identified by expression.

COUNT (DISTINCT EXP): Returns the number of unique, non-null values in the column identified by
expression.

Q13. What is a Sub Query? Describe its Types?


Ans: A subquery is a SELECT statement that is embedded in a clause of another SELECT statement. Sub
query can be placed in WHERE, HAVING and FROM clause.
Guidelines for using subqueries:

1. Enclose sub queries within parenthesis

2. Place subqueries on the right side of the comparison condition.

3. Use Single-row operators with single-row subqueries and Multiple-row operators with multiple-row
subqueries.

Types of subqueries:
1. Single-Row Subquery: Queries that return only one row from the inner select statement. Single-row
comparison operators are: =, >, >=, <, <=, <>
2. Multiple-Row Subquery: Queries that return more than one row from the inner Select statement.
There are also multiple-column subqueries that return more than one column from the inner select
statement. Operators includes: IN, ANY, ALL.

Q14. What is the difference between ANY and ALL operators?

https://www.softwaretestinghelp.com/plsql-interview-questions/
6
Ans: ANY Operator compares value to each value returned by the subquery. ANY operator has a
synonym SOME operator.

> ANY means more than the minimum.

< ANY means less than the maximum

= ANY is equivalent to IN operator.

Subscribe to our youtube channel to get new updates..!

ALL Operator compares value to every value returned by the subquery.

> ALL means more than the maximum

< ALL means less than the minimum

<> ALL is equivalent to NOT IN condition.


Q15. What is a MERGE statement?
Ans: The MERGE statement inserts or updates rows in one table, using data from another table. It is
useful in data warehousing applications.

https://www.softwaretestinghelp.com/plsql-interview-questions/
7
PL/SQL Interview Questions for Experienced Professionals -
(1/2/3 Years)

Q16. What is the difference between the “VERIFY” and the “FEEDBACK” command?
Ans: VERIFY Command: Use VERIFY Command to confirm the changes in the SQL statement (Old and
New values). Defined with SET VERIFY ON/OFF.

Feedback Command: Displays the number of records returned by a query.

Q17. What is the use of Double Ampersand (&&) in SQL Queries? Give an example?
Ans: Use “&&” if you want to reuse the variable value without prompting the user each time.

For ex: Select empno, ename, &&column_name from employee order by &column_name;

Q18. What are Joins and how many types of Joins are there?
Ans: Joins are used to retrieve data from more than one table.

There are 5 different types of joins.

types of Joins

Oracle 8i and Prior SQL: 1999 (9i)

Equi Join Natural/Inner Join

Outer Join Left Outer/ Right Outer/ Full Outer Join

Self Join Join ON

Non-Equi Join Join USING

Cartesian Product Cross Join

https://www.softwaretestinghelp.com/plsql-interview-questions/
8
Q19. Explain all Joins used in Oracle 8i?
Ans: Cartesian Join: When a Join condition is invalid or omitted completely, the result is a Cartesian
product, in which all combinations of rows are displayed. To avoid a Cartesian product, always include a
valid join condition in a “where” clause. To Join „N‟ tables together, you need a minimum of N-1 Join
conditions.

For ex: to join four tables, a minimum of three joins is required. This rule may not apply if the table has a
concatenated primary key, in which case more than one column is required to uniquely identify each row.

Equi Join: This type of Join involves primary and foreign key relation. Equi Join is also called Simple or
Inner Joins.
Non-Equi Joins: A Non-Equi Join condition containing something other than an equality operator. The
relationship is obtained using an operator other than equal operator (=).The conditions such as <= and >=
can be used, but BETWEEN is the simplest to represent Non-Equi Joins.
Outer Joins: Outer Join is used to fetch rows that do not meet the join condition. The outer join operator
is the plus sign (+), and it is placed on the side of the join that is deficient in information. The Outer Join
operator can appear on only one side of the expression, the side that has information missing. It returns
those rows from one table that has no direct match in the other table. A condition involving an Outer Join
cannot use IN and OR operator.
Self Join: Joining a table to itself.

Advanced PL/SQL Interview Questions For Experienced

Q20. Explain all Joins used in Oracle 9i and later release?


Ans: Cross Join: Cross Join clause produces the cross-product of two tables. This is same as a Cartesian
product between the two tables.
Natural Joins: Is used to join two tables automatically based on the columns which have matching data
types and names, using the keyword NATURAL JOIN. It is equal to the Equi-Join. If the columns have
the same names but different data types, than the Natural Join syntax causes an error.
Join with the USING clause: If several columns have the same names but the data types do not match,
than the NATURAL JOIN clause can be modified with the USING clause to specify the columns that
should be used for an equi Join. Use the USING clause to match only one column when more than one
column matches. Do not use a table name or alias in the referenced columns. The NATURAL JOIN
clause and USING clause are mutually exclusive.

For ex: Select a.city, b.dept_name from loc a Join dept b USING (loc_id) where loc_id=10;

https://www.softwaretestinghelp.com/plsql-interview-questions/
9
Joins with the ON clause: Use the ON clause to specify a join condition. The ON clause makes code
easy to understand. ON clause is equals to Self Joins. The ON clause can also be used to join columns
that have different names.
Left/ Right/ Full Outer Joins: Left Outer Join displays all rows from the table that is Left to the LEFT
OUTER JOIN clause, right outer join displays all rows from the table that is right to the RIGHT OUTER
JOIN clause, and full outer join displays all rows from both the tables either left or right to the FULL
OUTER JOIN clause.

Q21. What is a difference between Entity, Attribute and Tuple?


Ans: Entity: A significant thing about which some information is required. For ex: EMPLOYEE (table).
Attribute: Something that describes the entity. For ex: empno, empname, empaddress (columns). Tuple: A
row in a relation is called Tuple.

Q22. What is a Transaction? Describe common errors can occur while executing any Transaction?
Ans: Transaction consists of a collection of DML statements that forms a logical unit of work.

The common errors that can occur while executing any transaction are:

The violation of constraints.

1. Data type mismatch.

2. Value too wide to fit in column.

3. The system crashes or Server gets down.

4. The session Killed.

5. Locking take place. Etc.

Q23. What is locking in SQL? Describe its types?


Ans: Locking prevents destructive interaction between concurrent transactions. Locks held until Commit
or Rollback. Types of locking are:
Implicit Locking: Occurs for all SQL statements except SELECT.
Explicit Locking: Can be done by the user manually.

Further, there are two locking methods:

1. Exclusive: Locks out other users


2. Share: Allows other users to access

https://www.softwaretestinghelp.com/plsql-interview-questions/
10
Q24. What is a difference between Commit, Rollback and Savepoint?

 COMMIT: Ends the current transaction by making all pending data changes permanent.

 ROLLBACK: Ends the current transaction by discarding all pending data changes.

 SAVEPOINT: Divides a transaction into smaller parts. You can rollback the transaction till a
particular named savepoint.

PL SQL Interview Questions for 4 Years Experience

Q25. What are the advantages of COMMIT and ROLLBACK statements?


Ans: Advantages of COMMIT and ROLLBACK statements are:

 Ensure data consistency

 Can preview data changes before making changes permanent.

 Group logically related operations.

Q26. Describe naming rules for creating a Table?


Ans: Naming rules to be consider for creating a table are:

1. Table name must begin with a letter,

2. Table name can be 1-30 characters long,

3. Table name can contain only A-Z, a-z, 0-9,_, $, #.

4. Table name cannot duplicate the name of another object owned by the same user.

5. Table name cannot be an oracle server reserved word.

Q27. What is a DEFAULT option in a table?


Ans: A column can be given a default value by using the DEFAULT option. This option prevents null
values from entering the column if a row is inserted without a value for that column. The DEFAULT
value can be a literal, an expression, or a SQL function such as SYSDATE and USER but the value
cannot be the name of another column or a pseudo column such as NEXTVAL or CURRVAL.

Q28. What is the difference between USER TABLES and DATA DICTIONARY?
Ans: USER TABLES: Is a collection of tables created and maintained by the user. Contain USER
information. DATA DICTIONARY: Is a collection of tables created and maintained by the Oracle Server.
It contains database information. All data dictionary tables are owned by the SYS user.
https://www.softwaretestinghelp.com/plsql-interview-questions/
11
Q29. Describe a few Data Types used in SQL?
Ans: Data Types is a specific storage format used to store column values. Few data types used in SQL
are:

1. VARCHAR2(size): Minimum size is „1‟ and Maximum size is „4000‟

2. CHAR(size): Minimum size is „1‟and Maximum size is „2000‟

3. NUMBER(P,S): " Precision" can range from 1 to 38 and the “Scale” can range from -84 to 127.

4. DATE

5. LONG: 2GB

6. CLOB: 4GB

7. RAW (size): Maximum size is 2000

8. LONG RAW: 2GB

9. BLOB: 4GB

10. BFILE: 4GB

11. ROWID: A 64 base number system representing the unique address of a row in the table.

Q30. In what scenario you can modify a column in a table?

Ans: During modifying a column:

1. You can increase the width or precision of a numeric column.

2. You can increase the width of numeric or character columns.

3. You can decrease the width of a column only if the column contains null values or if the table has no
rows.

4. You can change the data type only if the column contains null values.

5. You can convert a CHAR column to the VARCHAR2 data type or convert a VARCHAR2 column to
the CHAR data type only if the column contains null values or if you do not change the size.

Q31. Describe a few restrictions on using the “LONG” data type?


Ans: A LONG column is not copied when a table is created using a subquery. A LONG column cannot
be included in a GROUP BY or an ORDER BY clause. Only one LONG column can be used per table.
No constraint can be defined on a LONG column.
Q32. What is a SET UNUSED option?

https://www.softwaretestinghelp.com/plsql-interview-questions/
12
Ans: SET UNUSED option marks one or more columns as unused so that they can be dropped when the
demand on system resources is lower. Unused columns are treated as if they were dropped, even though
their column data remains in the table‟s rows. After a column has been marked as unused, you have no
access to that column. A select * query will not retrieve data from unused columns. In addition, the names
and types of columns marked unused will not be displayed during a DESCRIBE, and you can add to the
table a new column with the same name as an unused column. The SET UNUSED information is stored
in the USER_UNUSED_COL_TABS dictionary view.

PLSQL Interview Questions for 5 Years Experience

Q33. What is the difference between Truncate and Delete?


Ans: The main difference between Truncate and Delete is as below:
SQL Truncate Vs SQL Delete

TRUNCATE DELETE

Removes all rows from a table and releases Removes all rows from a table but does not release
storage space used by that table. storage space used by that table.

TRUNCATE Command is faster. DELETE command is slower.

Is a DDL statement and cannot be Rollback. Is a DDL statement and can be Rollback.

Database Triggers do not fire on TRUNCATE. Database Triggers fire on DELETE.

Q34. What is the main difference between CHAR and VARCHAR2?


Ans: CHAR pads blank spaces to a maximum length, whereas VARCHAR2 does not pad blank spaces.

Q35. What are Constraints? How many types of constraints are there?
Ans: Constraints are used to prevent invalid data entry or deletion if there are dependencies. Constraints
enforce rules at the table level. Constraints can be created either at the same time as the table is created or
after the table has been created. Constraints can be defined at the column or table level. Constraint
defined for a specific table can be viewed by looking at the USER-CONSTRAINTS data dictionary table.
https://www.softwaretestinghelp.com/plsql-interview-questions/
13
You can define any constraint at the table level except NOT NULL which is defined only at the column
level. There are 5 types of constraints:

1. Not Null Constraint

2. Unique Key Constraint

3. Primary Key Constraint

4. Foreign Key Constraint

5. Check Key Constraint.

6.
Oracle PL SQL Technical interview questions

Q36. Describe types of Constraints in brief?


Ans: NOT NULL: NOT NULL Constraint ensures that the column contains no null values.
UNIQUE KEY: UNIQUE Key Constraint ensures that every value in a column or set of columns must
be unique, that is, no two rows of a table can have duplicate values in a specified column or set of
columns. If the UNIQUE constraint comprises more than one column, that group of columns is called a
Composite Unique Key. There can be more than one Unique key on a table. Unique Key Constraint
allows the input of Null values. Unique Key automatically creates index on the column it is created.
PRIMARY KEY: Uniquely identifies each row in the Table. Only one PRIMARY KEY can be created
for each table but can have several UNIQUE constraints. PRIMARY KEY ensures that no column can
contain a NULL value. A Unique Index is automatically created for a PRIMARY KEY column.
PRIMARY KEY is called a Parent key.
FOREIGN KEY: Is also called Referential Integrity Constraint. FOREIGN KEY is one in which a
column or set of columns take references of the Primary/Unique key of same or another table. FOREIGN
KEY is called a child key. A FOREIGN KEY value must match an existing value in the parent table or be
null.
CHECK KEY: Defines a condition that each row must satisfy. A single column can have multiple
CHECK Constraints. During CHECK constraint following expressions is not allowed:

1) References to CURRVAL, NEXTVAL, LEVEL and ROWNUM Pseudo columns.

2) Calls to SYSDATE, UID, USER and USERENV Functions


Q37. What is the main difference between Unique Key and Primary Key?
Ans: The main difference between Unique Key and Primary Key are:
Unique Vs Primary Key

https://www.softwaretestinghelp.com/plsql-interview-questions/
14
Unique Key Primary Key

A table can have more than one Unique Key. A table can have only one Primary Key.

Unique key column can store NULL values. Primary key column cannot store NULL values.

Uniquely identify each value in a column. Uniquely identify each row in a table.

Q38. What is a difference between ON DELETE CASCADE and ON DELETE SET NULL?
Ans: ON DELETE CASCADE Indicates that when the row in the parent table is deleted, the dependent
rows in the child table will also be deleted. ON DELETE SET NULL Coverts foreign key values to null
when the parent value is removed. Without the ON DELETE CASCADE or the ON DELETE SET
NULL options, the row in the parent table cannot be deleted if it is referenced in the child table.

Q39. What is a Candidate Key?


Ans: The columns in a table that can act as a Primary Key are called Candidate Key.

Q40. What are Views and why they are used?


Ans: A View logically represents subsets of data from one or more table. A View is a logical table based
on a table or another view. A View contains no data of its own but is like a window through which data
from tables can be viewed or changed. The tables on which a view is based are called Base Tables. The
View is stored as a SELECT statement in the data dictionary. View definitions can be retrieved from the
data dictionary table: USER_VIEWS.

Views are used:

 To restrict data access

 To make complex queries easy

 To provide data Independence

 Views provide groups of user to access data according to their requirement.

Oracle PL/SQL Interview Questions And Answers For 7 Years Experience

Q41. What is the difference between Simple and Complex Views?

https://www.softwaretestinghelp.com/plsql-interview-questions/
15
Ans: The main differences between two views are:
Simple Views Vs Complex Views

Simple View Complex View

Derives data from only one table. Derives data from many tables.

Contains no functions or group of data Contain functions or groups of data.

Can perform DML operations through the Does not always allow DML operations through the
view. view.

Q42. What are the restrictions of DML operations on Views?


Ans: Few restrictions of DML operations on Views are:

You cannot DELETE a row if the View contains the following:

1. Group Functions

2. A Group By clause

3. The Distinct Keyword

4. The Pseudo column ROWNUM Keyword.

You cannot MODIFY data in a View if it contains the following:

1. Group Functions

2. A Group By clause

3. The Distinct Keyword

4. The Pseudo column ROWNUM Keyword.

5. Columns defined by expressions (Ex; Salary * 12)

You cannot INSERT data through a view if it contains the following:

Q43. What is PL/SQL, Why do we need PL/SQL instead of SQL, Describe your experience
working with PLSQL and What are the difficulties faced while working with PL SQL and How did
you overcome?

1. PL/SQL is a procedural language extension with SQL Language.

https://www.softwaretestinghelp.com/plsql-interview-questions/
16
2. Oracle introduced PL/SQL

3. It is a combination of SQL and Procedural Statements and used for creating applications.

4. Basically PL/SQL is a block structured programming language whenever we are submitting PL/SQL

5. Blocks then all SQL statements are executing separately by using sql engine and also all procedure
statements are executed separately.

6. Explain your current and previous projects along with your roles and responsibilities, mention some
of the challenging difficulties you've faced in your project while working with PL/SQL.

Q44. What are the different functionalities of a Trigger ?


Ans: Trigger is also same as stored procedure & also it will automatically invoked whenever DML
operation performed against table or view.

There are two types of triggers supported by PL/SQL

1. Statement Level Trigger.

2. Row Level Trigger

Statement Level Trigger: In statement-level trigger, the trigger body is executed only once for DML
statement.
Row Level Trigger: In row level trigger, the trigger body is executed for each row DML statement. It is
the reason, we are employing each row clause and internally stored DML transaction in trigger
specification, these qualifiers :old, :new, are also called as records type variables.
These qualifiers are used in trigger specification & trigger body.
Syntax:
:old.column_name
Syntax:
:new column_name

When we are use this qualifiers in trigger specification then we are not allowed to use “:” in forms of the
names of the qualifiers.

Q45. Write a PL/SQL Program which raise a user defined exception on thursday?
Ans:
1 declare
2 a exception

https://www.softwaretestinghelp.com/plsql-interview-questions/
17
3 begin
4 If to_char(sysdate, „DY)=‟THU‟
5 then
6 raise a;
7 end if;
8 exception
9 when a then
10 dbms_output.put_line(„my exception raised on thursday‟);
11 end
12 ;
Output: my exception raised on thursday
Q46.Write a PL/SQL program to retrieve emp table and then display the salary?
Ans:
1 declare
2 v_sal number(10);
3 begin select max(sal)intr v_sal;
4 from emp;
5 dbms_output.put_line(v.sal);
6 end;
7 /
(or)
1 declare
2 A number(10);
3 B number(10);
4 C number(10);
5 begin
6 a:=70;
7 b:=30;
8 c:=greatest+(a,b);
9 dbms_output.put_line(c);
10 end;
11 /
Output:70

PLSQL Interview Questions for 8 Years Experience


Q47. Write a PL/SQL cursor program which is used to calculate total salary from emp table
without using sum() function?
Ans:
1 Declare
2 cursor c1 is select sal from emp;
3 v_sal number(10);
4 n.number(10):=0;
5 begin
6 open c1;
7 loop
8 fetch c1 into v_sal;
https://www.softwaretestinghelp.com/plsql-interview-questions/
18
9 exit when c1%not found;
10 n:=n+v_sal;
11 end loop;
12 dbms_output.put_line(„tool salary is‟||‟ „ ||n);
13 close c1;
14 end;
15 /
16
17 Output: total salary is: 36975

Q48. Write a PL/SQL cursor program to display all employee names and their salary from emp
table by using % not found attributes?
Ans:
1 Declare
2 Cursor c1 is select ename, sal from emp;
3 v_ename varchar2(10);
4 v_sal number(10);
5 begin
6 open c1;
7 loop
8 fetch c1 into v_ename, v_sal;
9 exist when c1 % notfound;
10 dbms_output.put_line(v_name ||‟ „||v_sal);
11 end loop;
12 close c1;
13 end;
14 /

Q49. What is Mutating Trigger?


Ans:

 Into a row-level trigger based on a table, the trigger body cannot read data from the same table and
also we cannot perform DML operation on the same table.

 If we are trying this oracle server returns mutating error oracle-4091: table is mutating.

 This error is called a mutating error, and this trigger is called a mutating trigger, and the table is
called a mutating table.

 Mutating errors are not occurred in statement-level trigger because through this statement-level
trigger when we are performing DML operations automatically data committed into the database,
whereas in the row-level trigger when we are performing transaction data is not committed and also
again we are reading this data from the same table then only mutating errors is occurred.

https://www.softwaretestinghelp.com/plsql-interview-questions/
19
Oracle PL/SQL Interview Questions and Answers for 10 Years Experience
Q50. What is Triggering Events (or) Trigger Predicate Clauses?
Ans: If we want to perform multiple operations in different tables then we must use triggering events
within trigger body. These are inserting, updating, deleting clauses. These clauses are used in statement,
row-level trigger. These triggers are also called as trigger predicate clauses.
Syntax:
1 If inserting then stmts;
2 else if updating then stmts;
3 else if deleting then stmts;
4 end if;

Q51. What is the Discard File?


Ans:

 This file extension is .dsc

 Discard file we must specify within the control file by using the discard file clause.

 Discard file also stores reflected record based on when clause condition within the control file. This
condition must be satisfied into the table tablname clause.

Q52. What is REF CURSOR (or) CURSOR VARIABLE (or) DYNAMIC CURSOR ?
Ans:

Oracle 7.2 introduced ref cursor, This is an user-defined type which is used to process multiple records
and also this is a record by record process.

In static cursor database servers executes only one select statement at a time for a single active set area
where in ref cursor database servers executes number of select statement dynamically for a single active
set area that's why those cursor are also called as dynamically cursor.

Generally we are not allowed to pass static cursor as parameters to use subprograms where as we can also
pass ref cursor as parameter to the subprograms because basically refcursor is an user defined type in
oracle we can also pass all user defined type as parameter to the subprograms.

Generally static cursor does not return multiple record into client application where as ref cursor are
allowed to return multiple records into client application (Java, .Net, php, VB, C++).

This is an user defined type so we are creating it in 2 steps process i.e first we are creating type then only
we are creating variable from that type that‟s why this is also called as cursor variable.

https://www.softwaretestinghelp.com/plsql-interview-questions/
20
Q53. What are The Types of Ref Cursors?

Ans: In all databases having 2 ref cursors.

1. Strong ref cursor

2. Weak ref cursor

Strong ref cursor is a ref cursor which have return type, whereas weak ref cursor has no return type.

Syntax:
1 Type typename is ref cursor return record type data type;
2 Variable Name typename
Syntax
1 Type typename is ref cursor
2 Variable Name typename;

In Weak ref cursor we must specify select statement by using open for clause this clause is used in
executable section of the PL/SQL block.

Syntax:
1 Open ref cursor varname for SELECT * FROM table_name condition;

Q54. What is Difference Between trim, delete collection method?


Ans:
1 SQL> declare
2 type t1 is table of number(10);
3 v_t t1;=t1(10,20,30,40,50,60);
4
5 beign
6
7 v_t.trim(2);
8 dbms_output.put_line(„after deleting last two elements‟);
9
10 for i in v_t.first.. V_t.last
11 loop
12 dbms_output.put_line(v_t(i));
13 End loop;
14
15 vt.delete(2);
16 dbms_output.put_line(„after deleting second element;);
17
18 for i in v_t.first..v_t.last
19 loop
20
21 If v_t.exists(i) then
22 dbms_output.put_line(v_t(i));
23

https://www.softwaretestinghelp.com/plsql-interview-questions/
21
24 end if;
25 end loop;
26 end;
27 /

Q55. What is Overloading Procedures?


Ans: Overload refers to same name can be used for different purpose, in oracle we can also implement
overloading procedure through package. Overloading procedure having same name with different type or
different number of parameters.

Q56. What is Global Variables?


Ans: In oracle we are declaring global variables in Package Specification only.

Q57. What is Forward Declaration?


Ans: In oracle declaring procedures within the package body is called forward declaring generally before
we are calling private procedures into public procedure first we must implements private into public
procedure first we must implement private procedure within body otherwise use a forward declaration
within the package body.

Q58. What is Invalid_number, Value_Error?


Ans: In oracle when we try to convert “string type to number type” or” data string into data type” then
the oracle server returns two types of errors.
1. Invalid.number
2. Value_error (or) numeric_error
a) Invalid_number:
When PL/SQL block has a SQL statement and also those SQL statements try to convert string type to
number type or data string into data type then oracle server returns an error: ora-1722-Invalid Number
For handling this error oracle provides number exception Invalid_number exception name.
Example:
1 begin
2 Insert
3 intoemp(empno, ename, sal)
4 values(1,‟gokul‟, „abc‟)
5 exception when invalid_number then dbms_output.put_line(„insert proper data only‟);
6 end;/
b)value_error
Whenever PL/SQL block having procedural statements and also those statements find to convert string

https://www.softwaretestinghelp.com/plsql-interview-questions/
22
type to number type then oracle servers returns an error: ora-6502:numeric or value error: character to a
number conversion error
For handling, this error oracle provided exception value_error exception name
Example:
1 begin
2 declare z number(10);
3 begin
4 z:= „&x‟ + „&y‟;
5 dbms_output.put_line(z);
6 exception when value_error then dbms_output.put_line(„enter numeric data value for x & y only‟);
7 end;/

Output:
1 Enter value for x:3
2 Enter value for y:2
3 z:=5
4
5 Enter value for x:a
6 Enter value for y:b
7
8 Error:enter numeric data value for x & y only.
Q59. What is Flashback Query?
Ans:

 Flashback query are handle by Database Administrator only flashback queries along allows the
content of the table to be retrieved with reference to the specific point of time by using as of clause
that is flashback queries retrieves clause that is flashback queries retrieves accidental data after
committing the transaction also.

 Flashback queries generally uses undo file that is flashback queries retrieve old data before
committing the transaction oracle to provide two methods for flashback queries

Method1: using timestamp


Method2: using scn number

Newly Updated Oracle PL/SQL Interview Questions 2020

1) Explain what PL/SQL package consist of?


Ans: PL/SQL consists of two major parts, they are: package specification and package body.

Package specification: it acts as a public interface for your application which includes procedures, types,
etc.
https://www.softwaretestinghelp.com/plsql-interview-questions/
23
Package Body: It contains the code which required to implement the Package Specification

2) Explain what the benefits of PL/SQL Packages are?


Ans: These are the benefits of PL/SQL Packages

 We can store functions and procedures in a single unit called package.

 Packages provides security to grant privileges.

 Functions and procedures, within the package, shares a common variable among them.

 Packages support even if the functions are overloaded.

 Packages enhance the performance even when the multiple objects loaded into memory.

3) explain different methods to trace the PL/SQL code?


Ans: Tracing code is a necessary technique to test the performance of the code during runtime. We have
different methods in PL/SQL to trace the code, which are,

 DBMS_ TRACE

 DBMS_ APPLICATION_INFO

 Tkproof utilities and trcsess

 DBMS_SESSION and DBMS_MONITOR

4) What does it mean by PL/SQL Cursors?


Ans: In PL/SQL to retrieve and process more it requires a special resource, and that resource is known as
Cursor. A cursor is defined as a pointer to the context area. Context area is an area of memory which
contains information and SQL statements for processing the statements.

5) what is the difference between Implicit and Explicit Cursors?

Ans: Implicit cursor used in PL/SQL to declare, all SQL data manipulation statements. An implicit
cursor is used to declare SQL statements such as open, close, fetch etc.

An explicit cursor is a cursor and which is explicitly designed to select the statement with the help of a
cursor. This explicit cursor is used to execute the multirow select function. An explicit function is used
PL/SQL to execute tasks such as update, insert, delete, etc.

6) what is a trigger?

https://www.softwaretestinghelp.com/plsql-interview-questions/
24
Ans: It is a program in PL/SQL, stored in the database and executed instantly before or after the
UPDATE, INSERT and DELETE commands.

7) what are the uses of database triggers?


Ans: Triggers are programs which are automatically fired or executed when some events happen and are
used for:

 To implement complex security authorizations.

 To drive column values.

 To maintain duplicate tables.

 To implement complex business rules.

 To bring transparency in log events.

8) Name the two exceptions in PL/SQL?


Ans: Error handling part of PL/SQL is called an exception. We have two types of exceptions, and they
are User-defined and predefined.

9) which command is used to delete the package?


Ans: To delete the „Package‟ in PL/SQL we use the DROP PACKAGE command.

10) what is the process for PL/SQL compilation?


Ans: The compilation process consists of syntax check, bind and p-code generation. It checks the errors
in PL/SQL code while compiling. Once all errors are corrected, a storage address allocated to a variable
which stores this data. This process is called as binding. P-Code consists of a list of rules for the PL/SQL
engine. It is stored in the database and triggered when next time it is used.

https://www.softwaretestinghelp.com/plsql-interview-questions/
25

You might also like