Final - DB design Flashcards

1
Q

What is the first phase of database design?

A

Characterize users’ data needs

This includes identifying who the users are and how to characterize their data needs.

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

What is the purpose of choosing a data modeling technique?

A

To select an appropriate method for representing data, such as relational model or E-R model.

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

What is a conceptual schema?

A

A representation that captures the users’ data needs, often designed by a data modeling team.

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

What is typically used to design a conceptual schema?

A

The E-R model.

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

What is the purpose of reviewing the schema?

A

To ensure it supports all functional requirements and that data required for all outputs is present.

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

What does mapping the conceptual model to a logical model involve?

A

Translating the conceptual schema into a logical structure that can be implemented in a database.

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

What is the E-R model?

A

A data model used in database design that maps meanings and interactions of real-world entities onto the conceptual schema.

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

Define ‘Entity’ in the context of E-R models.

A

An object that exists and is distinguishable from other objects.

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

What is an ‘Entity Set’?

A

A set of entities of the same type that share the same properties.

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

What is a ‘Relationship’ in E-R models?

A

An association among several entities.

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

Define ‘Relationship Set’.

A

A mathematical relation among n ≥ 2 entities.

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

List the entities of the Library example.

A
  • Libraries
  • Books
  • Authors
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What are ‘Attributes’ in the context of an entity set?

A

Properties possessed by all members of an entity set.

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

What is a ‘Domain’?

A

A set of permitted values for each attribute.

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

Define ‘Composite Attributes’.

A

Attributes that can be divided into other attributes.

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

Give an example of a composite attribute.

A

Address can be divided into street, city, state, postal_code.

17
Q

What differentiates Single vs Multivalued Attributes?

A

Single has a single value; multivalued has a set of values for a specific entity set.

18
Q

What is a ‘Derived Attribute’?

A

An attribute that can be computed from other attributes.

19
Q

List the attributes of the library entities.

A
  • Library: (ID, name, address, …)
  • Book: (Title, publisher, ISBN, genre, …)
  • Author: (ID, name, …)
20
Q

What are ‘Cardinalities’ in E-R models?

A

They express the number of entities to which another entity can be associated.

21
Q

Define ‘One-to-One’ cardinality.

A

An entity in A is associated with AT MOST one entity in B, and vice versa.

22
Q

Define ‘One-to-Many’ cardinality.

A

An entity in A is associated with 0 or more entities in B, but an entity in B can be associated with AT MOST one entity in A.

23
Q

Define ‘Many-to-Many’ cardinality.

A

An entity in A is associated with 0 or more entities in B, and vice versa.

24
Q

What does an E-R diagram express?

A

The logical structure of a database graph.

25
Q

What do divided rectangles in E-R diagrams represent?

A

Entity sets.

26
Q

What do diamonds represent in E-R diagrams?

A

Relationship sets.

27
Q

What do solid lines indicate in E-R diagrams?

A

Links between entity sets and relationship sets.

28
Q

What do undivided rectangles represent in E-R diagrams?

A

Descriptive attributes of a relationship set.

29
Q

What do dashed lines indicate in E-R diagrams?

A

Links between descriptive attributes and the relationship set.

30
Q

What do double lines denote in E-R diagrams?

A

Total participation; every entity participates in at least one relationship.

31
Q

What do double diamonds indicate?

A

An identifying relationship between a strong and weak entity set.

32
Q

What is a strong entity set?

A

An entity set that has a primary key (PK).

33
Q

What is a weak entity set?

A

An entity set that has no primary key (PK), so its PK is formed by the PK of the identifying entity set plus the weak entity set.