A Guide to SQL, Ninth Edition Page 7–10
©2016 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part,
except for use as permitted in a license distributed with a certain product or service or otherwise on a password–
protected website for classroom use.
➢ DBA_TABLES: In Oracle, a table in system catalog that contains information about tables
known to SQL
➢ DBA_VIEWS: In Oracle, a table in system catalog that contains information about views
that have been created
➢ defining query: A query that indicates the rows and columns to include in a view
➢ DROP INDEX: The SQL command used to delete an index
➢ DROP VIEW: The SQL command used to delete a view
➢ foreign key: A column in one table whose values match the primary key of another table
➢ GRANT: The SQL command used to give users access privileges to data in the database
➢ index: A file that relates key values to records that contain those key values; the main
mechanism for increasing the efficiency with which data is retrieved from the database
➢ integrity constraint: A rule for the data in the database
➢ integrity support: The process of specifying integrity constraints for a database that the
DBMS will enforce
➢ SYSTABLES: A table in system catalog that contains information about tables known to
SQL
➢ system catalog: An object that stores information about the tables in the database
➢ SYSVIEWS: A table in system catalog that contains information about views that have
been created
➢ unique index: An index that ensures the uniqueness of values in a non-primary key column