Top 10 Oracle Interview Question and Answer - Database and SQL (original) (raw)

These are some interview questions and answers asked during my recent interview. Oracle interview questions are very important during any programming job interview. The interviewer always wants to check how comfortable we are with any database either we go for the Java developer position or C, C++ programmer position. So here I have discussed some basic questions related to the oracle database. Apart from these questions which are very specific to the Oracle database, you may find some general questions related to database fundamentals and SQL like Difference between correlated and noncorrelated subquery in database or truncate vs delete in SQL, etc.

Some of the most important topics in Oracle Interview questions are SQL, date, inbuilt function, stored procedure, and less used features like a cursor, trigger, and views. These questions also give an idea about the formats of questions asked during the Oracle Interview.

Oracle Interview Questions and Answers

Question 1: Oracle version 9.2.0.4.0 what does each number refers to?

Answer :oracle version number refers

Question 2: How do you find current date and time in oracle?

Answer: This is one of the frequently asked Oracle Interview questions. I have seen this question every now and then. By the way SYSDATE function is used in oracle to find current date and time of the operating system on which the database is running return type of function is DATE

Syntax:

SELECT TO_CHAR (SYSDATE, 'MM-DD-YYYY HH24:MI:SS') "Current_Date" FROM DUAL.

Question 3: Write the syntax to find the current date and time in format “YYYY-MM-DD”.

Answer:

SELECT TO_CHAR (SYSDATE, 'YYYY-MM-DD HH24:MI:SS') "Current_Date" FROM DUAL

Question 4: How will you convert a date to char in Oracle give one example

Answer: Similar to the previous Oracle Interview question, this is also one of the popular questions in various Oracle Interviews. to_char() function is used to convert date to the character we can specify format also in which we want the output.

SELECT to_char( to_date('11-01-2012', 'DD-MM-YYYY') , 'YYYY-MM-DD') FROM dual;

or

SELECT to_char( to_date('11-01-2012, 'DD-MM-YYYY') , 'DD-MM-YYYY') FROM dual

Question 5: What is bulk copy or BCP in oracle?

Answer: BCP or bulk copy tool is one type of command line tool for unload data from database came into existence after oracle 8 .it is used to import or export data from tables and views but it will not copy structure of data same. Main advantage is fast mechanism for copying data and we can take backup of important data easily.

Question 6: What are the extensions used by oracle reports

Answer : Oracle reports are used to make business enable to provide information of all level within or outside in secure way. REP file and RDF file extensions are used by oracle report.

Question 7: What is Save Points in Oracle database?

Oracle database Interview Questions and Answers in SQLAnswer : SAVE POINTS are used to divide a transaction into smaller parts. It enables rolling back part of a transaction. Maximum of five save points are allowed. Whenever we encounter error we can rollback from the point where we set our SAVEPOINT.This is useful for multistage transaction and conditional transaction where commit and rollback depend on certain condition. This is another commonly asked Oracle Interview Question and since save points are also available in other database e.g. SQL Server, some time Interviewer follow up with differences with other database as well.

Question 8: How will you convert string to a date in oracle database?

Answer : This Oracle Interview questions is some time asked as follow up of previous Oracle Interview questions related to converting date to char in Oracle. By the way to_ date function is used to convert string to a date function.

Syntax : to_date(string, format)

Example:

to_date('2012/06/12', 'yyyy/mm/dd') It will return June 12, 2012

Question 9: What is hash cluster in Oracle?

Answer : This is one of my favorite Oracle Interview question. Hash cluster is one of the techniques to store the table in a hash cluster to improve the performance of data retrieval .we apply hash function on the table row’s cluster key value and store in the hash cluster. All rows with the same hash key value are stores together on disk.key value is same like key of index cluster ,for data retrieval Oracle applies the hash function to the row's cluster key value.

Question 10: What is Snap shot in Oracle database?

Answer : Snapshots are read-only copies of a master table located on a remote node which is periodically refreshed to reflect changes made to the master table.

That’s all on this list of Oracle Interview questions and answers. This can be a good recap before appearing to any programming job interview, where questions from Oracle database is expected. You may want to prepare some SQL Interview question as well along with these Oracle questions, as questions related to SQL query e.g. How to find second highest salary in SQL or How to find duplicate records in table is quite popular on various Oracle Interviews.

Related SQL Interview Questions and Answers for practice

Thanks for reading this article so far. If you like these Oracle Interview Questions then please share with your friends and colleagues. If you have any questions or doubt fell free to ask in comments.

P. S. - If you are new to Oracle SQL and want to learn both Oracle and PL/SQL in depth and looking for best online courses then you can also checkout these best Oracle SQL Courses to learn Oracle SQL in depth.