Chapter 7-Physical database Design Flashcards

1
Q

Why can’t table names contain blank spaces?

A

Spaces are used to separate individual words of statements.

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

Secondary Index

A

A mechanism that creates an additional key for a relation.

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

ALTER TABLE

A

Can be used to change a constraint that is already in a table.

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

What can you use the CHECK constraint for?

A

To create a list of acceptable values of an attribute.

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

When are CHECK constraints tested?

A

Upon update and insertion operations.

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

The data dictionary should provide the following information.

A

Each attributes domain.
Any default values for each attribute.
The attributes value if it can be null.

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

In the physical design phase each relation should provide the following

A

The relations name.
The relations attributes.
The primary key and any foreign keys.
The integrity constraints for any foreign keys.

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

CREATE TABLE statement is used to:

A

Create base relations.
( Blank spaces are used to separate individual words of statements. The name of the table precedes the attribute name and is separated by a dot)

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