Chapter7 Flashcards
a customized representation of data from one or more tables and/or views
view
the tables that the view is referencing
base table
the views that actually copy data from the data from base tables and take up storage are called ______
materialized views
the maximum number of columns that can be defined in a view is _______
1000
note1:
When the database instance terminates abnormally or the DBA performs SHUTDOWN ABORT on the database instance, the sequence numbers cached are lost.
is a named sequential-number generator
sequence
access the next number in the sequence
NEXTVAL(sequence_name.nextval)
get the last sequence number your session has generated
CURRVAL(sequence_name.currval)
forces the data dictionary to be updated for each sequence number generated
NOCACHE
defines the size of the block of sequence numbers held in memory
CACHE
is an alias for another database object
synonym
synonym that is available to all user
public
synonym that is available to only one owner
private
- common index type
- high cardinality
B-tree
- primarily used for decision-support or static data
bitmap