 |
|
DBA_EDITION_COMMENTS view tips
Oracle Tips by Burleson Consulting |
DBA_EDITION_COMMENTS
<< Return to the index
Oracle 11g makes the following comments about the DBA_EDITION_COMMENTS table: "Describes comments on all editions in the database"
Column description of the DBA_EDITION_COMMENTS view:EDITION_NAMEDescription of DBA_EDITION_COMMENTS.EDITION_NAME: "Name of the edition" COMMENTSDescription of DBA_EDITION_COMMENTS.COMMENTS: "Edition comments"
DBA_EDITION_COMMENTS View SourceOracle 11g's data dictionary defines the DBA_EDITION_COMMENTS view using the following source query:
select o.name, c.comment$
from sys.obj$ o, sys.com$ c
where o.obj# = c.obj# (+)
and o.type# = 57
 |
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
|
|