The Data Dictionary Is Implemented in Oracle As A Set of Read-Only Tables and Views
The Data Dictionary Is Implemented in Oracle As A Set of Read-Only Tables and Views
6/22/16
DATA Dictionary
At the root of the tree is the dictionary table,
that features two attributes: table_name and
comments.
The comment field presents an informal
description of the corresponding dictionary table.
For instance, we can request information about the dictionary
table:
SELECT comments
FROM dictionary WHERE table_name='DICTIONARY'
and get:
Description of data dictionary tables and views
6/22/16
DATA Dictionary
The second level of the dictionary is divided into four
categories of tables.
User tables describe the objects you own. They are
only accessible to you.
All tables describe the objects of all the users, and
are accessible to all the users.
DBA tables contain information only relevant and
accessible to database administrators.
V$ tables reflect the internal state of the DBMS and
are mainly useful to DBAs for performance audit and
optimisation.
6/22/16
DATA Dictionary
You can query the data dictionary view called USER_VIEWS to see
the name of the view and the view definition.
Select * from user_views
where view_name ='EMP_DETAILS_VIEW.
To Get the sequence details : user_sequences
USER_INDEXES provides information about your indexes.
6/22/16