Understanding The Concepts of Databases (AQA)

0.0(0)
studied byStudied by 7 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/13

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

14 Terms

1
New cards

Database

A structured collection of data stored and accessed electronically, ensuring data integrity, security, and concurrent access to multiple users.

2
New cards

Relational Database

A type of database that stores data in a structured format using tables related through keys, introduced by E.F. Codd in 1970.

3
New cards

Table

A collection of related data entries organized in rows and columns.

4
New cards

Record

A single, complete set of related data in a table.

5
New cards

Field

A single piece of data or attribute for each record in a table.

6
New cards

Primary Key

A unique identifier for each record in a table, ensuring unique identification.

7
New cards

Foreign Key

A field in one table that uniquely identifies a row in another table, creating a relationship between them.

8
New cards

Data Inconsistency

Occurs when different copies of the same data do not match due to lack of synchronization.

9
New cards

Data Redundancy

Occurs when the same data is stored in multiple places, leading to inefficiency and inconsistency.

10
New cards

Normalization

Organizing data into logical units (tables) and establishing relationships between them using primary and foreign keys.

11
New cards

ACID Transactions

Transactions that adhere to ACID properties (Atomicity, Consistency, Isolation, Durability) to maintain data consistency.

12
New cards

Constraints

Rules enforced at the database level to prevent invalid or inconsistent data, maintaining data integrity.

13
New cards

Single Source of Truth

Storing data in normalized tables to ensure there is only one authoritative source for each piece of data.

14
New cards

Efficient Storage

Storing data once and referencing it using foreign keys when needed to reduce redundancy.