Database Basics
DBMS v Traditional
Relational Database Concepts
Queries
Data Warehouse & Marts
100

What does DBMS stand for?

Database Management System

100

What is data integrity, and why is it important?

Accuracy and consistency of data in a database

100

What is a primary key used for?

Uniquely identifying a record

100

What SQL command is used to retrieve data from a database?

SELECT
100

What is the difference bwteen a data warehouse and a data mart?

A data warehouse is organisationally-wide; a data mart is a subset for specific department

200

What is a collection of related data called?

A Database

200

How does a DBMS improve security compared to a file system?

Role-based access control, authentication, encryption

200

What is a foreign key, and why is it important?

A key in one table that refers to the primary key in another table to create relationships.

200

How do you filter results in SQL to show only customers from "New York"?

WHERE City = 'New York'

200

What is ETL in a data warehouse?

Extract, Transform, Load – the process of preparing data for storage.

300

What holds the attribute of an entity?

Field

300

What is data redundancy, and how does a DBMS reduce it?

Duplicate data; DBMS uses normalization and relationships to reduce it

300

What is normalization, and why is it important?

Process of organising data to reduce redundancy and improve integrity.

300

Write an SQL statement to add a new student to a Students table

INSERT INTO Students (ID, Name) VALUES (1, 'John Doe');

300

What is big data, and how does it relate to data warehouses?

Large, complex datasets that require special tools for analysis.

400

Name one function of a database management system.

Data storage, retrieval, security, etc.

400

What is a key advantage of DBMS over traditionsl file storage?

Reduced redunacy & Better data integrity

400

What is the difference between OLTP (Online Transaction Processing) and OLAP (Online Analytical Processing)?

OLTP handles real-time transactions, OLAP is used for complex data analysis and reporting.

400

Write an SQL query to select all students from a table named Students who have a grade above 80

SELECT * FROM Students WHERE Grade > 80

400

How does a data warehouse differ from an operational database?

Data warehouses store historical data for analysis; operational databases handle real-time transactions.

500

What is the difference between structured and unstructured data?

Structured data follows a fixed format, unstructured does not. 

500

What is the role of a database administrator (DBA)?

Manages, secures, and optimizes the database system

500

What is data mining, and how is it used in business intelligence?

The process of discovering patterns and trends in large datasets to make business decisions.