1. What is Oracle?
- Answer: Oracle is a relational database management system (RDBMS) developed by Oracle Corporation. It is widely used for managing and processing data in various applications.
2. Differentiate between SQL and PL/SQL.
- Answer: SQL (Structured Query Language) is a language used for managing and querying relational databases, while PL/SQL (Procedural Language/SQL) is Oracle's proprietary extension of SQL, adding procedural programming constructs.
3. Explain the difference between UNIQUE and PRIMARY KEY constraints.
- Answer: Both constraints ensure uniqueness, but a table can have multiple UNIQUE constraints, while it can have only one PRIMARY KEY constraint. The PRIMARY KEY constraint also implies NOT NULL.
4. What is the purpose of the DUAL table in Oracle?
- Answer: DUAL is a one-row, one-column table in Oracle. It is often used to perform calculations or store scalar values, and it is commonly used in SELECT statements when performing computations.
5. Explain the concept of a cursor in Oracle.
- Answer: In Oracle, a cursor is a pointer to the result set of a query. It allows fetching and processing rows returned by a SQL statement.
6. How do you create a stored procedure in Oracle?
- Answer: Stored procedures in Oracle are created using the CREATE PROCEDURE statement. Example:
CREATE OR REPLACE PROCEDURE my_procedure IS
BEGIN
-- Procedure logic here
END my_procedure;
7. What is the difference between UNION and UNION ALL?
- Answer: UNION combines the result sets of two SELECT statements, removing duplicates, while UNION ALL combines the result sets without removing duplicates.
8. Explain the purpose of the NVL function.
- Answer: The NVL function in Oracle is used to replace NULL values with a specified default value.
SELECT NVL(column_name, 'Default_Value') FROM table_name;
9. How can you perform a self-join in Oracle?
- Answer: A self-join involves joining a table with itself. It is achieved by aliasing the table and using different names for the columns.
SELECT e1.employee_id, e1.employee_name, e2.manager_name
FROM employees e1, employees e2
WHERE e1.manager_id = e2.employee_id;
10. What is an Oracle Index? - Answer: An Oracle Index is a database object used to improve the speed of data retrieval operations on a table. It provides a fast access path to the rows in the table based on the indexed column.
11. Explain the purpose of the COMMIT statement. - Answer: The COMMIT statement in Oracle is used to save any changes made during the current transaction. It makes the changes permanent and ends the current transaction.
12. How do you enforce referential integrity in Oracle? - Answer: Referential integrity in Oracle is enforced using foreign key constraints. It ensures that values in a column or columns of one table correspond to values in another table's primary key or unique key columns.
13. What is an Oracle View? - Answer: An Oracle View is a virtual table based on the result of a SELECT query. It does not store data on its own but provides a way to represent complex queries or joins as a single virtual table.
14. Explain the concept of Oracle Flashback Query. - Answer: Oracle Flashback Query is a feature that allows you to view the state of a table at a specific point in the past. It uses the AS OF clause in a SELECT statement.
15. How do you use the ROWNUM pseudo column in Oracle? - Answer: The ROWNUM pseudo column in Oracle is used to assign a unique number to each row in the result set of a query.
SELECT ROWNUM, employee_name
FROM employees
WHERE ROWNUM <= 10;
16. What is the purpose of the GROUP BY clause in Oracle? - Answer: The GROUP BY clause in Oracle is used to group rows based on specified columns and apply aggregate functions to each group.
SELECT department_id, AVG(salary) AS avg_salary
FROM employees
GROUP BY department_id;
17. How can you implement pagination in Oracle? - Answer: Pagination in Oracle can be achieved using the ROWNUM or ROW_NUMBER() function in combination with the FETCH FIRST or OFFSET and FETCH clauses.
SELECT * FROM (
SELECT employee_id, employee_name, ROWNUM AS rnum
FROM employees
) WHERE rnum BETWEEN 11 AND 20;
18. What is the purpose of the TO_DATE function in Oracle? - Answer: The TO_DATE function in Oracle is used to convert a character string to a date format.
SELECT TO_DATE('2023-01-01', 'YYYY-MM-DD') FROM dual;
19. Explain the concept of Oracle Synonyms. - Answer: An Oracle Synonym is an alias or alternate name for a table, view, sequence, or another schema object. It simplifies the access to objects in other schemas or locations.
20. How can you implement row-level security in Oracle? - Answer: Row-level security in Oracle can be implemented using Virtual Private Database (VPD) policies. VPD allows you to enforce security policies at the row level based on user-specific conditions.
21. What is an Oracle Trigger? - Answer: An Oracle Trigger is a set of instructions that are automatically executed (or "triggered") in response to a specific event on a particular table or view. Triggers are often used to enforce business rules or maintain data integrity.
22. Explain the purpose of the DBMS_JOB package in Oracle. - Answer: The DBMS_JOB package in Oracle is
used to schedule and manage jobs (background tasks) that are executed periodically. It provides a way to automate tasks within the Oracle database.
23. How do you use the MERGE statement in Oracle? - Answer: The MERGE statement in Oracle is used to perform an "upsert" operation (insert or update) based on a condition. It can be used to synchronize data between source and target tables.
24. What is the role of the HAVING clause in Oracle? - Answer: The HAVING clause in Oracle is used to filter the results of a GROUP BY query based on aggregate conditions. It is similar to the WHERE clause but operates on grouped data.
SELECT department_id, AVG(salary) AS avg_salary
FROM employees
GROUP BY department_id
HAVING AVG(salary) > 5000;
25. How can you optimize a SQL query in Oracle? - Answer: SQL query optimization in Oracle involves using proper indexing, optimizing joins, avoiding unnecessary columns, using bind variables, and analyzing execution plans using tools like Explain Plan.
26. Explain the purpose of the Oracle Data Pump utility. - Answer: The Oracle Data Pump utility (expdp and impdp) is used for exporting and importing data and metadata between Oracle databases. It provides a faster and more flexible alternative to the original exp and imp utilities.
27. What is the difference between a materialized view and a regular view in Oracle? - Answer: A regular view in Oracle is a virtual table based on a SELECT query, while a materialized view is a physical copy of the data defined by a query. Materialized views can be refreshed periodically.
28. How do you use the WITH clause (Common Table Expressions) in Oracle? - Answer: The WITH clause in Oracle is used to define a Common Table Expression (CTE) within a SELECT statement. It improves the readability and maintainability of complex queries.
WITH department_cte AS (
SELECT department_id, AVG(salary) AS avg_salary
FROM employees
GROUP BY department_id
)
SELECT * FROM department_cte;
29. Explain the purpose of the DBMS_OUTPUT package in Oracle. - Answer: The DBMS_OUTPUT package in Oracle is used for displaying output from stored procedures and PL/SQL blocks. It is commonly used for debugging purposes.
SET SERVEROUTPUT ON;
BEGIN
DBMS_OUTPUT.PUT_LINE('Hello, Oracle!');
END;
30. What is Oracle Real Application Clusters (RAC)? - Answer: Oracle Real Application Clusters (RAC) is a feature that allows multiple instances to access a single Oracle database. It provides high availability and scalability by distributing database processing across multiple servers.
31. How do you use the CASE statement in Oracle? - Answer: The CASE statement in Oracle is used to perform conditional logic within a SQL query or PL/SQL block.
SELECT employee_name,
CASE
WHEN salary > 5000 THEN 'High'
WHEN salary > 3000 THEN 'Medium'
ELSE 'Low'
END AS salary_category
FROM employees;
32. Explain the purpose of the Oracle Analytic Functions. - Answer: Oracle Analytic Functions, such as ROW_NUMBER(), RANK(), DENSE_RANK(), and LEAD(), are used to perform calculations across a specified range of rows related to the current row. They are commonly used for advanced reporting and analysis.
33. What is the purpose of the DBMS_SCHEDULER package in Oracle? - Answer: The DBMS_SCHEDULER package in Oracle is used for scheduling and managing jobs, including stored procedures, PL/SQL blocks, and programs. It provides more advanced scheduling options compared to DBMS_JOB.
34. How do you use the PARTITION BY clause in Oracle Analytic Functions? - Answer: The PARTITION BY clause in Oracle Analytic Functions is used to divide the result set into partitions to which the function is applied independently.
SELECT department_id,
employee_name,
salary,
AVG(salary) OVER (PARTITION BY department_id) AS avg_salary_by_department
FROM employees;
35. Explain the purpose of the Oracle DBMS_STATS package. - Answer: The DBMS_STATS package in Oracle is used for gathering and managing optimizer statistics. It helps the Oracle optimizer in generating efficient execution plans for SQL queries.
36. How do you use the REGEXP functions in Oracle? - Answer: The REGEXP functions in Oracle, such as REGEXP_LIKE, REGEXP_INSTR, and REGEXP_SUBSTR, are used for working with regular expressions in SQL queries.
SELECT employee_name
FROM employees
WHERE REGEXP_LIKE(employee_name, '^A');
37. What is the purpose of the Oracle AUTONOMOUS_TRANSACTION pragma? - Answer: The AUTONOMOUS_TRANSACTION pragma in Oracle is used to define an autonomous transaction within a PL/SQL block. It allows committing or rolling back changes independently of the main transaction.
38. Explain the purpose of the Oracle DBMS_LOB package. - Answer: The DBMS_LOB package in Oracle is used for managing large objects (LOBs) such as BLOBs (Binary Large Objects) and CLOBs (Character Large Objects) in the database.
39. How do you use the CONNECT BY clause for hierarchical queries in Oracle? - Answer: The CONNECT BY clause in Oracle is used to perform hierarchical queries. It defines the relationship between parent and child rows in a hierarchical structure.
SELECT employee_id, employee_name, manager_id
FROM employees
START WITH manager_id IS NULL
CONNECT BY PRIOR employee_id = manager_id;
40. What is the purpose of the Oracle UTL_FILE package? - Answer: The UTL_FILE package in Oracle is used for reading from and writing to operating system files from within PL/SQL. It provides a way to interact with files on the server's file system.
41. How can you retrieve the current date and time in Oracle? - Answer: The current date and time in Oracle can be obtained using the SYSDATE function.
SELECT SYSDATE FROM dual;
42. Explain the purpose of the Oracle CURSOR FOR loop. - Answer: The CURSOR FOR loop in Oracle is used to iterate through the rows returned by a cursor. It simplifies the process of fetching and processing records from a cursor.
FOR emp_rec IN (SELECT employee_id, employee_name FROM employees)
LOOP
-- Processing logic here
END LOOP;