TABLE REMARKS
---------------------- -------------------------------------------
ALL_CATALOG All tables, views, synonyms, sequences
accessible to the user
ALL_COL_COMMENTS Comments on columns of accessible tables
and views
ALL_COL_GRANTS_MADE Grants on columns for which the user is
owner or grantor
ALL_COL_GRANTS_RECD Grants on columns for which the user or
PUBLIC is the grantee
ALL_INDEXES Descriptions of indexes on tables accessible
to the user
ALL_TABLES Description of tables accessible to the user
ALL_TAB_COMMENTS Comments on tables and views accessible to
the user
ALL_TAB_GRANTS_MADE User's grants and grants on user's objects
ALL_TAB_GRANTS_RECD Grants on objects for which the user or
PUBLIC is the grantee
ALL_USERS Information about all users of the database
ALL_VIEWS Text of views accessible to the user
COLUMN_PRIVILEGES Grants on columns for which the user is the
grantor, grantee, or owner, or PUBLIC is the
grantee
DICTIONARY Description of data dictionary tables and
views
DICT_COLUMNS Description of columns in data dictionary
tables and views
USER_CATALOG Tables, views, synonyms, sequences
accessible to the user
USER_COL_COMMENTS Comments on columns of user's tables and
views
USER_FREE_SPACE Free extents in tablespaces accessible to the
user
USER_INDEXES Description of the user's own indexes
USER_TABLES Description of the user's own tables
USER_TABLESPACES Description of accessible tablespaces
USER_TAB_COLUMNS Columns of user's tables, views and clusters
USER_TAB_COMMENTS Comments on the tables and views owned
by the user
USER_TAB_GRANTS_MADE All grants on objects owned by the user
USER_TAB_GRANTS_RECD Grants on objects for which the user is the
grantee
USER_USERS Information about the current user
USER_VIEWS Text of views owned by the user
Most object names begin with one of three prefixes:
describe tablename;
select Table_Name, Comments from DICT where Table_Name like '%TABLES%';
| TABLE_NAME | COMMENTS | |
| ALL_TABLES | Description of tables accessible to the user | |
| DBA_TABLES | Description of all tables in the database | |
| DBA_TABLESPACES | Description of all tablespaces | |
| USER_TABLES | Description of the user's own tables | |
| USER_TABLESPACES | Description of accessible tablespaces |
select Table_Name from DICT_COLUMNS where Column_Name = 'BLOCKS' and Table_Name like 'USER':
TABLE_NAME ------------------ USER_EXTENTS USER_FREE_SPACE USER-SEGMENTS USER_TABLES USER_TSQUOTAS
Contains information for ALL objects belonging to the user