DBA_OBJECT_TABLES
describes all object tables in the database. Its columns are the same as those in ALL_OBJECT_TABLES
.
· ALL_OBJECT_TABLES
describes the object tables accessible to the current user.
· USER_OBJECT_TABLES
describes the object tables owned by the current user. This view does not display the OWNER
column.
Column | Datatype | NULL | Description |
|
|
| Owner of the table |
|
|
| Name of the table |
|
| | Name of the tablespace containing the table; NULL for partitioned, temporary, and index-organized tables |
|
| | Name of the cluster, if any, to which the table belongs |
|
| | Name of the index-organized table, if any, to which the overflow or mapping table entry belongs. If the |
|
| | If a previous |
|
| | Minimum percentage of free space in a block; NULL for partitioned tables |
|
| | Minimum percentage of used space in a block; NULL for partitioned tables |
|
| | Initial number of transactions; NULL for partitioned tables |
|
| | Maximum number of transactions; NULL for partitioned tables |
|
| | Size of the initial extent (in bytes); NULL for partitioned tables |
|
| | Size of secondary extents (in bytes); NULL for partitioned tables |
|
| | Minimum number of extents allowed in the segment; NULL for partitioned tables |
|
| | Maximum number of extents allowed in the segment; NULL for partitioned tables |
|
| | Percentage increase in extent size; NULL for partitioned tables |
|
| | Number of process freelists allocated to the segment; NULL for partitioned tables |
|
| | Number of freelist groups allocated to the segment; NULL for partitioned tables |
|
| | Indicates whether or not changes to the table are logged: · · |
|
| | Indicates whether the table has been backed up since the last modification ( |
|
| | Number of rows in the table |
|
| | Number of used blocks in the table |
|
| | Number of empty (never used) blocks in the table |
|
| | Average available free space in the table |
|
| | Number of chained rows in the table |
|
| | Average row length, including row overhead |
|
| | Average free space of all blocks on a freelist |
|
| | Number of blocks on the freelist |
|
| | Number of parallel execution processes per instance for scanning the table, or |
|
| | Number of instances across which the table is to be scanned, or |
|
| | Indicates whether the table is to be cached in the buffer cache ( |
|
| | Indicates whether table locking is enabled ( |
|
| | Sample size used in analyzing this table |
|
| | Date on which this table was most recently analyzed |
|
| | Indicates whether the table is partitioned ( |
|
| | If the table is an index-organized table, then |
|
| | Indicates whether the object ID (OID) is |
|
| | Owner of the type of the table |
|
| | Type of the table |
|
| | Indicates whether this is a temporary table ( |
|
| | Indicates whether the object table is a secondary object created by the ODCIIndexCreate method of the Oracle Data Cartridge ( |
|
| | Indicates whether the table is a nested table ( |
|
| | Default buffer pool to be used for table blocks: · · · · NULL |
|
| | Indicates whether partitioned row movement is enabled ( |
|
| | For partitioned object tables, indicates whether statistics were collected for the table as a whole ( |
|
| | Indicates whether statistics were entered directly by the user ( |
|
| | Indicates the duration of a temporary table: · · Null - Permanent table |
|
| | Indicates whether Oracle Database ignores blocks marked corrupt during table and index scans ( |
|
| | Indicates whether the table has the |
|
| | Owner of the cluster, if any, to which the table belongs |
|
| | Indicates whether row-level dependency tracking is enabled ( |
|
| | Indicates whether table compression is enabled ( |
|
| | Default compression for what kind of operations: · · · NULL |
|
| | Indicates whether the table has been dropped and is in the recycle bin ( |
Note:
1. SELECT owner, table_name, status, table_type
FROM DBA_OBJECT_TABLES order by owner;
OWNER | TABLE_NAME | STATUS | TABLE_TYPE |
MDSYS | SDO_GR_RDT_2 | VALID | SDO_RASTER |
SYS | SYSNTLCMA3vg9TlLgRAAUTyMV9w== | VALID | KUPC$_FILEINFO |
SYS | KOTAD$ | VALID | KOTAD |
SYS | KOTMD$ | VALID | KOTMD |
SYS | KOTTBX$ | VALID | KOTTBX |
SYS | KOTADX$ | VALID | KOTADX |
SYS | KOTTD$ | VALID | KOTTD |
SYS | KOTTB$ | VALID | KOTTB |
SYS | SYSNTFqMXMbeuFOvgRAADuiMN8g== | VALID | KU$_LOGLINE1010 |
SYS | SYSNTFqMXMbesFOvgRAADuiMN8g== | VALID | KU$_LOGLINE1010 |
SYS | SYSNTFqMXMbeqFOvgRAADuiMN8g== | VALID | KUPC$_FILEINFO |
SYS | SYSNTLCMA3vhBTlLgRAAUTyMV9w== | VALID | KU$_LOGLINE1010 |
SYS | SYSNTLCMA3vg/TlLgRAAUTyMV9w== | VALID | KU$_LOGLINE1010 |
SYS | WRI$_SQLSET_WORKSPACE_CPLANS | VALID | SQL_PLAN_ROW_TYPE |
WMSYS | WM$EVENT_AUX_PARAMS_NT | VALID | WM$NV_PAIR_TYPE |
WMSYS | WM$VERSIONED_TABLES_UNDO_CODE | VALID | WM$ED_UNDO_CODE_NODE_TYPE |
XDB | SERVLET | VALID | XMLTYPE |
XDB | xdb-log9_TAB | VALID | XMLTYPE |
XDB | XDB$ALL_MODEL | VALID | XMLTYPE |
XDB | XDB$ATTRGROUP_REF | VALID | XMLTYPE |
XDB | XDB$SCHEMA | VALID | XMLTYPE |
XDB | XDB$COMPLEX_TYPE | VALID | XMLTYPE |
XDB | ftp-log14_TAB | VALID | XMLTYPE |
XDB | http-log20_TAB | VALID | XMLTYPE |
XDB | XDB$RESOURCE | VALID | XMLTYPE |
XDB | XDB$NLOCKS | VALID | XDB$NLOCKS_T |
XDB | XDB$CONFIG | VALID | XMLTYPE |
XDB | XDB$H_LINK | VALID | XDB$LINK_T |
XDB | XDB$SIMPLE_TYPE | VALID | XMLTYPE |
XDB | XDB$CHOICE_MODEL | VALID | XMLTYPE |
XDB | XDB$STATS | VALID | XMLTYPE |
XDB | XDB$GROUP_REF | VALID | XMLTYPE |
XDB | XDB$GROUP_DEF | VALID | XMLTYPE |
XDB | XDB$ANY | VALID | XMLTYPE |
XDB | XDB$ANYATTR | VALID | XMLTYPE |
XDB | XDB$ATTRIBUTE | VALID | XMLTYPE |
XDB | XDB$ELEMENT | VALID | XMLTYPE |
XDB | XDB$SEQUENCE_MODEL | VALID | XMLTYPE |
XDB | XDB$ATTRGROUP_DEF | VALID | XMLTYPE |
XDB | XDB$ACL | VALID | XMLTYPE |
Oracle data dictionary views
Oracle dynamic performance views
No comments:
Post a Comment