 |
|
DBA_EDITIONING_VIEWS view tips
Oracle Tips by Burleson Consulting |
DBA_EDITIONING_VIEWS
<< Return to the index
Oracle 11g makes the following comments about the DBA_EDITIONING_VIEWS table: "Description of all Editioning Views in the database"
Column description of the DBA_EDITIONING_VIEWS view:OWNERDescription of DBA_EDITIONING_VIEWS.OWNER: "Owner of an Editioning View" VIEW_NAMEDescription of DBA_EDITIONING_VIEWS.VIEW_NAME: "Name of an Editioning View" TABLE_NAMEDescription of DBA_EDITIONING_VIEWS.TABLE_NAME: "Name of an Editioning View's base table"
DBA_EDITIONING_VIEWS View SourceOracle 11g's data dictionary defines the DBA_EDITIONING_VIEWS view using the following source query:
select ev_user.name, ev_obj.name, ev.base_tbl_name
from sys."_CURRENT_EDITION_OBJ" ev_obj, sys.ev$ ev, sys.user$ ev_user
where
/* join EV$ to _CURRENT_EDITION_OBJ on EV id so we can determine */
/* name of the EV and id of its owner */
ev_obj.obj# = ev.ev_obj#
/* join _CURRENT_EDITION_OBJ row pertaining to EV to USER$ to get */
/* EV owner name */
and ev_obj.owner# = ev_user.user#
 |
If you like Oracle tuning, see the book "Oracle
Tuning: The Definitive Reference", with 950 pages of tuning tips and
scripts.
You can buy it direct from the publisher for 30%-off and get
instant access to the code depot of Oracle tuning scripts. |
 |
 |
|
Download your Oracle scripts now:
www.oracle-script.com
The
definitive Oracle Script collection for every Oracle professional DBA
|
|