Relational Data Model and Relational Database Constraints

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/43

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

44 Terms

1
New cards

Relational Models represent data as...

a collection of relations

represents data as a table of values

2
New cards

In a relational model, each row is called....

a tuple

3
New cards

A tuple is....

a row in a table that contains data about a specific item in a database table (each row represents an entity)

<p>a row in a table that contains data about a specific item in a database table (each row represents an entity)</p>
4
New cards

Domain (D) is...

the set of valid atomic values for each attribute

5
New cards

Atomic means...

each value is indivisible

6
New cards

How can we specify a domain?

data type

range of values

Ex: phone numbers: set of ten digit phone numbers
Ex: GPA: set of possible values of computed grade point averages. Real number 0 ti 4

7
New cards

Domains are more _______ than data types

restrictive

8
New cards

A relation schema R

is made up of a relation name R and a list of attributes

R(A1, A2,....An)

9
New cards

Attribute Ai

name of role played by some domain D in the relation schema R

10
New cards

Degree (arity) of a relation

Number of attributes n of its relation schema

11
New cards

Three formats to represent relation schema

text-based format with arity degree ENTITY(attribute1, attribute 2, etc etc) (must have n number (n-nary) attributes in there)

Text-based format using data types ENTITY(Name: string, ssn, string, GPA, real, etc etc)

Schema Diagram

12
New cards

Relation (or relation state)

set of n-tuples r = {t1, t2,....tm}

Each n tuple t = <v1, v2, ...vn> is an ordered list of n values t (values of attributes at a point in time)
- each value vi, 1 </ i </ n is an element of dom(Ai) or a special NULL value

Based on relation schema

13
New cards

Relation state

r(R)

cartesian products of domains that define R contain all possible tuples

14
New cards

Cardinality

total number of possible unique values in a domain

total number of possible unique values (states) in a relation

15
New cards

Current relation state

relation state at a given time

reflects only the valid tuples that represent a particular state of the real world

16
New cards

Attribute names indicate

different roles, or interpretations, for the domain

17
New cards

Do tuples need to be ordered?

No, indices have an order but relations don't. And relations are a set of tuples

18
New cards

Do duplicates of tuples with the same attribute values exist?

No

19
New cards

A tuple is considered as a set of....

(<attribute>, <value>) pairs

20
New cards

Flat Relational Model

each value in a tuple is atomic

- multi-valued attributes must be represented by separate relations

- composite attributes represented by simple component attributes

- composite and multivalued attributes not allowed

21
New cards

Meanings for NULL values

value unknown

value exists but is not available

attribute does not apply to this tuple (value undefined)

22
New cards

What are constraints?

restrictions on actual values in database state

- derived from rules in the mini-world that the database represents

- also called integrity constraints, which help to insure data integrity of a dtabase

23
New cards

Types of constraints

Key constraints

Domain constraint (null value constraint)

Entity integrity constraint

Referential Integrity Constraint

24
New cards

Key Constraints...

No two tuples can have the same combination of values for all their attributes

- Superkey

- Key

25
New cards

Superkey

any combination of attributes that uniquely identifies a record(tuple)

- may or may not contain unnecessary attributes (for identification)

Every tuple has at least one superkey

26
New cards

Key

minimal superkey of R

contains identifying information for attribute and only those required attributes

27
New cards

Any key is a superkey

Does this work for vice cersa?

No

28
New cards

Any set of attributes that includes a key is a....

superkey

29
New cards

a minimal superkey is a....

key

30
New cards

Candidate Key

relation schema may have more than one key, and in each of the keys is called a candidate keys

can have multiple

Each must be a minimal superkey

31
New cards

Primary Key

designated among candidate keys

underlined attribute

only one primary key (other candidate keys are designated as unique keys)

32
New cards

Domain constraints include

Data types

restricted range

restricted pattern within a data type (like name as alpha only characters with max length)

user-defined data types

33
New cards

Entity Integrity Constraint

No primary key value can be NULL

34
New cards

Foreign key rules to maintain referential integrity

attributes in FK have the same domain as the primary key attributes PK

Value of FK in a tuple t2 of the current state either occurs as a value of PK for some tuple in the current state or is null

35
New cards

Foreign keys are not actual ______ and don't have to be...

keys; unique

36
New cards

Relational Database schema

set of relation schemas S = {R1, R2,...Rm}

Set of integrity constraints

37
New cards

relational database state

set of relation states DB = {r1, r2,...rm}

Each ri, is a state of Ri must satisfy all integrity constraints specified in the set IC

38
New cards

Invalid state

Does not obey all the integrity constraints

39
New cards

Functional dependency constraint

establishes a functional relationship among two sets of attributes X and Y in the same relation

Value of X determines a unique value of Y (everyone in the same area pays the same tax rate)

40
New cards

Retrieval is....

query

41
New cards

Update, Insert, and Delete are....

modification operations that change the states of relations in the database

42
New cards

The delete operation can violate only....

referential integrity if tuple being deleted is referenced by foreign keys from other tuples

43
New cards

Options to not violate referential integrity with the delete operation

1. Restrict - reject decision

2. Set null or set default to referencing attributes that would cause the violation

3. Cascade - propagate deletion by deleting tuples that reference the tuple that is being deleted

44
New cards

Update Operation can cause similar issues as with insert/delete if.....

updating a primary/foreign key

else, then it wouldn't cause any problems