Oracle9i Database Reference Release 2 (9.2) Part Number A96536-02 |
|
|
View PDF |
This chapter describes data dictionary tables and views. These tables and views are called static, because they change only when a change is made to the data dictionary (for example, when a new table is created or a user is granted new privileges). Oracle also maintains tables that monitor ongoing database activity. These dynamic performance tables are described in Chapter 3, "Dynamic Performance (V$) Views".
Data dictionary tables are not directly accessible, but you can access information in them through data dictionary views. To list the data dictionary views available to you, query the view DICTIONARY
.
Many data dictionary tables have three corresponding views:
ALL_
view displays all the information accessible to the current user, including information from the current user's schema as well as information from objects in other schemas, if the current user has access to those objects by way of grants of privileges or roles.DBA_
view displays all relevant information in the entire database. DBA_
views are intended only for administrators. They can be accessed only by users with the SELECT_ANY_TABLE
privilege. (This privilege is assigned to the DBA role when the system is initially installed.)USER_
view displays all the information from the schema of the current user. No special privileges are required to query these views.The columns of the ALL_
, DBA_
, and USER_
views corresponding to a single data dictionary table are usually nearly identical. Therefore, these views are described in full only once in this chapter, at their first occurrence alphabetically, and are listed without full descriptions at their other occurrences.
A number of data dictionary views are relevant only if you are using Oracle Replication. Table 2-1 lists these views.
The following are additional Oracle Replication data dictionary views:
|
|
|
|
|
|
|
|
|
|
See Also:
Oracle9i Replication Management API Reference for information about these views |
A number of data dictionary views are relevant only if you are using Oracle Workspace Manager. Table 2-2 lists these views.
ALL_ Views | DBA_ Views | USER_ Views |
---|---|---|
The following are additional Oracle Workspace Manager data dictionary views:
See Also:
Oracle9i Application Developer's Guide - Workspace Manager for information about these views |
The following data dictionary views are only available after you create an optional recovery catalog (which contains schemas containing information about backups) for use with Recovery Manager:
See Also:
Oracle9i Recovery Manager Reference for information about these views |
The remainder of this chapter lists the data dictionary views in alphabetical order.
Press the "Next" button to go to the first static data dictionary view.