Unit 8.1 Basic Database Concepts

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/17

flashcard set

Earn XP

Description and Tags

Flashcards for Basic Database Concepts

Last updated 9:49 AM on 10/4/24
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

18 Terms

1
New cards

Database

Collection of data/info held together in an organised way.

2
New cards

File-based Database

Database that stores data in a single table, separated by commas, spaces etc. often in a plain text file,

3
New cards

Pro’s of File-based Database

  1. Easy setup

  2. All data in one place so finding data is easier

4
New cards

Con’s of File-based Database

  1. Lots of redundant data as it is repeated.

  2. Difficult to manage/maintain/expand in future.

  3. Data access is slower due to more to search through.

5
New cards

Relational Database

Stores data in multiple tables and links them together using relationships.

6
New cards

Pro’s of Relational Database

  1. Less redundant data leading to smaller file size.

  2. Easier to manage/maintain/expand in future.

  3. Access data faster as less to search through.

7
New cards

Con’s of Relational Database

  1. More complex structure

  2. Data spread out in multiple tables.

  3. Harder set up so more technical knowledge and skills needed.

8
New cards

Entity

Person/Place/thing/object/concept about which data can be collected and stored.

9
New cards

Attribute

Single part of an entity

10
New cards

Table

Contains info about an entity, made up of records and fields

11
New cards

Record (Tuple)

Single row within a table, collection of fields about single item/event also must contain one Primary Key.

12
New cards

Field

Column within a table, separate part of a record

13
New cards

Candidate Key

Set of field(s) that can uniquely identify each record in a table

14
New cards

Primary Key

Field in a table that uniquely identifies each record.

15
New cards

Secondary Key

Key fields used in addition to Primary Key to locate specific info.

16
New cards

Foreign Key

Field in one table that links to a Primary Key in another table.

17
New cards

Relationships

Links between tables in a relational database, commonly joining Primary & Foreign Keys.

18
New cards

Referential Integrity

Ensures data consistency by preventing invalid references into tables and maintaining data changes across tables.