Chapter7 Flashcards

1
Q

a customized representation of data from one or more tables and/or views

A

view

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

the tables that the view is referencing

A

base table

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

the views that actually copy data from the data from base tables and take up storage are called ______

A

materialized views

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

the maximum number of columns that can be defined in a view is _______

A

1000

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

note1:

A

When the database instance terminates abnormally or the DBA performs SHUTDOWN ABORT on the database instance, the sequence numbers cached are lost.

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

is a named sequential-number generator

A

sequence

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

access the next number in the sequence

A

NEXTVAL(sequence_name.nextval)

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

get the last sequence number your session has generated

A

CURRVAL(sequence_name.currval)

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

forces the data dictionary to be updated for each sequence number generated

A

NOCACHE

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

defines the size of the block of sequence numbers held in memory

A

CACHE

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

is an alias for another database object

A

synonym

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

synonym that is available to all user

A

public

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

synonym that is available to only one owner

A

private

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

- high cardinality

A

B-tree

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q
  • primarily used for decision-support or static data
A

bitmap

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