Screening test on call:
What is AWR and ADDM
What is ASH
What is Explain Plan
What are events in oracle
What Bulk collect
What is cursor
What is refcursor
First Round - Face to Face :
What is Collection . Types of Collections in PLSQL?
Write the syntax of Associative Array.
When should we use Associative array , nested tables?
What is Ref cursor. Can it be passed as parameter in SP and functions?
Type of ref cursors?
What is explicit Cursor. How to find that data in the cursor is not available.
Query to fetch all the columns of the of highest paying departments.
What is TKPROF ? How to enable the SQL Trace. Write the statement enable tracing.
On setting the SQL Trace parameter, where does this parameters value is stored in database.
What information are there in TKPROF.
What is normalization. Explain 1st NF,2nd NF, 3rd NF with examples.
A blog on SQL , PLSQL , Linux concepts. Interview Questions from different companies. For suggestions and contributions, reach me at sivak36@gmail.com
Featured Post
Will the data from Oracle Database be lost after formatting the system in which it is installed?
So Someone asked me a question, Will the data from Oracle Database be lost after formatting the system in which it is installed? Since the ...
Popular Posts
-
Experience Level - 3- 5 Years SQL Questions: Brief about your experience, skills and projects you worked on. 1.Differenfe betw...
-
Data Dictionary tables/Views contain information about the database and its objects. These are automatically created and maintained by oracl...
-
E 1st round Queries on joins, group by , not in, rank , dense rank, decode, case. (for half an hour to write queries ,given different ta...
-
Select * from a where hiredate+60 < sysdate; (here hiredate is non-unique index, so query scanning index range or full table scanning. ...
-
Generate Sequence of Numbers from 1 to N using SQL Query SELECT LEVEL AS ID FROM DUAL CONNECT BY LEVEL <= 20; ...
-
Stages of Processing SQL Statement: SQL statements pass through several stages during their processing: Parsing Binding Executing O...
-
Introduction Both LAG and LEAD functions have the same usage, as shown below. LAG (value_expression [,offset] [,default]) OVER ([quer...
-
About Temporary Tables : Temporary tables are database tables that hold session specific data Each session can only see and modify its o...
-
Parameter Modes in PLSQL procedures and functions are IN , OUT, IN OUT. The differences are as follows.