Final Exam Issues Flashcards

1
Q

What is a combination of product, selection and (optionally) projection?

A

Join

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

SELECT * FROM A INNER JOIN B;

A

Product

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

Partial specialization

A

Specifies that an entity instance of a supertype does not require an instance of a subtype

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

HAVING

A

finds all groups meeting stated conditions

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

referential integrity and it’s importance

A

Referential integrity requires that any values for a foreign key be from the set of values from
the related primary key. Referential integrity is important because it ensures that data is
consistent between primary key and foreign key relationships

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

ACID

A

Atomicity: A transaction is considered an atomic unit; all changes in a transaction are made or none of the changes are made.
Consistency: Statements in a transaction must leave the database in a consistent state by not
violating any data constraints.
Isolation: An in-process transaction will not be impacted by other users. Likewise, any
changes made during an in-process transaction will not be seen by other users until the
transaction is resolved.
Durability: Once a transaction is committed, the changes are considered permanent.

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