- Explain about Oracle Architecture?
- What happens when query is executed?Explain.
- What is library cache,Data Dictionary?
- What is Result Cache?What is deterministic?
- What is collection. Have u declared constructor in collections? Which collection have u used?
- What is Multiset operator?
- How to find lock on table?
- If application is working slow. what are the issues? (Data volume is not changed,No network issues).
- What is explain plan. How do u read explain plan. What informtion does it show?
- What is statistics.
- If we create a new table say emp, no statistics is generated, no records are inserted than
- whether explain plan will be generated?
- What are anyalytical function? LAG,LEAD?
- What is overloading? Can procedure be overloaded?
- What is pragma Autonomous Transaction?
- What is Trigger.Can we commit in trigger? Compound Trigger?
- Can we commit in compound triggers?
- Can function be called from Trigger?
- Information about syntax check in library cache is obtained from?
- Information about symantic check in library cache is obtained from?
- What is Soft parse,Hard parse?
- A table has record with value 20. updating the value as 30, what information would be in undo segment and what in redo logs.
- What is the minimum no of redo logs required?
- Whether Archiver process is necessary?
A blog on SQL , PLSQL , Linux concepts. Interview Questions from different companies. For suggestions and contributions, reach me at sivak36@gmail.com
Wednesday, August 9, 2017
NIIT SQL/PLSQL Interview Questions
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.