Fundamentals of Databases Flashcards

1
Q

Entity

A

Thing about which data is to be stored

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Attributes

A

Characteristics or other information about entities

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Relationship of car and owner

A

One-to-one

Car ——- Owner

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Relationship of car and passenger

A

Each car has many passengers, each passenger sits in one car

Car ——-<- Passenger

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Relationship of car and driver

A

Each driver can drive many different cars, each car is driven by many drivers

Car ->——<- Driver

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Primary Key

A

Attribute that provides an unique identifier for every entity in the database table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Foreign Key

A

An attribute in a table which is a primary key in another

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Composite Primary Key

A

When it is not possible to form a primary key from one attribute so they are combined

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Database Normalisation

A

Efficient without any compromise to the integrity of their data. Entities contain no redundant/repeated data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Advantages of Database Normalisation

A

Faster searching and sorting, easier to maintain and data consistency is improved

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

First Normal Form

A

Contains no repeating attributes (atomic)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Second Normal Form

A

Database must satisfy first normal form and partial key dependencies are removed (databases with composite Primary keys have a non-key attribute doesn’t depend on the whole of the composite key

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Third normal form

A

Conforms to second normal form and must have no non-key dependencies

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Concurrent access

A

When users attempt to access to access the same field at the same time

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Record Locks

A

When a record is being accessed by one user, it is locked to other users until the first user has finished using it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Serialisation

A

Requests from other users trying to access the field are placed in a queue

17
Q

Timestamp ordering

A

When multiple commands are sent to the same field, they are given a timestamp which indicates the time at which the command was initiated

18
Q

Commitment ordering

A

Uses an algorithm to work out optimum order to execute commands