Real interview questions from Oracle company. Includes theoretical concepts and coding problems.
What is the difference between a database and a data warehouse?
A database is a collection of organized data that is stored in a way that allows for efficient retrieval and manipulation, while a data warehouse is a centralized repository that stores data from various sources in a single location, making it easier to analyze and report on the data.
What is the purpose of indexing in a database?
The purpose of indexing in a database is to improve the speed of data retrieval by providing a quick way to locate specific data, reducing the amount of time it takes to scan the database and retrieve the required data.
What is the difference between a left join and a right join in SQL?
A left join returns all the rows from the left table and the matching rows from the right table, while a right join returns all the rows from the right table and the matching rows from the left table. If there are no matches, the result will contain null values.
What is the purpose of normalization in database design?
The purpose of normalization in database design is to minimize data redundancy and dependency by organizing the data into two or more related tables, making it easier to maintain and update the data.
What is the difference between a primary key and a foreign key in a database?
A primary key is a unique identifier for each row in a table, while a foreign key is a field in a table that refers to the primary key in another table, establishing a relationship between the two tables.
What is the purpose of a database trigger?
The purpose of a database trigger is to automatically execute a set of actions or rules when a specific event occurs, such as inserting, updating, or deleting data, to maintain data integrity and enforce business rules.
What is the difference between a stored procedure and a function in a database?
A stored procedure is a set of SQL statements that can be executed repeatedly with a single command, while a function is a set of SQL statements that returns a value, can be used in a query, and can take parameters.
What is the purpose of data encryption in a database?
The purpose of data encryption in a database is to protect the data from unauthorized access by converting it into a code that can only be deciphered with the correct decryption key, ensuring the confidentiality and integrity of the data.
What is the difference between a cluster and a grid in a database?
A cluster is a group of computers that work together to provide a single system, while a grid is a network of computers that work together to provide a shared resource, such as processing power or storage.
What is the purpose of data backup and recovery in a database?
The purpose of data backup and recovery in a database is to ensure that the data is safe and can be restored in case of a failure or disaster, minimizing the risk of data loss and downtime.
What is the difference between a relational database and a NoSQL database?
A relational database uses a fixed schema and stores data in tables with well-defined relationships, while a NoSQL database uses a flexible schema and stores data in a variety of formats, such as key-value pairs, documents, or graphs.
What is the purpose of data warehousing in a database?
The purpose of data warehousing in a database is to provide a centralized repository for data analysis and reporting, making it easier to extract insights and make informed decisions.
What is the difference between a data mart and a data warehouse?
A data mart is a subset of a data warehouse that is designed to meet the needs of a specific department or team, while a data warehouse is a comprehensive repository that contains data from multiple sources and is used for enterprise-wide analysis and reporting.
What is the purpose of ETL (Extract, Transform, Load) in a database?
The purpose of ETL in a database is to extract data from multiple sources, transform it into a consistent format, and load it into a target system, such as a data warehouse or data mart, for analysis and reporting.
What is the difference between a star schema and a snowflake schema in a database?
A star schema is a simple schema that consists of a fact table surrounded by dimension tables, while a snowflake schema is a more complex schema that consists of a fact table surrounded by dimension tables, which are further divided into sub-dimension tables.
Write a Java program to connect to an Oracle database and retrieve all the rows from a table.