-
Overloading procedure - all parameters are default
If there are 2 overloaded procedure, one among then have 1 IN parameter and another have 2 parameters. Both procedures parameters are of default type.
What will happen when you will call package.procedure without any parameter? -
Group By
Create a query using “ group by” that shows maximum salary for each department?
-
-
Can we use function inside a trigger
Is it possible to use function inside a trigger.
-
-
Oracle Joins
There are 2 tables, A and B having 3 rows each. What will be result on executing the following query? : SQL> select * from A,B
-
-
Copying data across tables
In what ways can data be copied from one table to another?
-
-
-
Autonomous transactions
What is an autonomous transaction?
-
Oracle collections
What are the types of collection in PL/SQL? What is the advantage of nested tables?
-
What is the use of nocopy parameter in oracle procedure
Hi, What is nocopy parameter in oracle procedure. what is the use of it. In which situation,we can use the nocopy parameter.Thanks,Saravanan.P
-
-
Dropping a type in Oracle
Can a type body be dropped without dropping the type specification?
-
Oracle locks
With what ways can we find out instance locks?
-
What is a cursor for loop ?
Cursor for loop implicitly declares %ROWTYPE as loop index,opens a cursor, fetches rows of values from active set into fields in the record and closeswhen all the records have been processed. eg. FOR emp_rec IN C1 LOOP salary_total := salary_total +emp_rec sal; ...
-
Populating Tables in Oracle 11g
How do you populate tables or data in Oracle 11g step by step?
-
What is a database trigger ? Name some usages of database trigger ?
Database trigger is stored PL/SQL program unit associated with a specific database table. Usages are Audit data modifications, Log events transparently, Enforce complex business rules Derive column values automatically, Implement complex ...
-
What are the modes of parameters that can be passed to a procedure ?
IN,OUT,IN-OUT parameters.
PL/SQL Interview Questions
Ans