Oracle 11gR1
DBA_PART_TABLES
displays the object-level partitioning information for all partitioned tables in the database. Its columns are the same as those in ALL_PART_TABLES
.
· ALL_PART_TABLES
displays the object-level partitioning information for the partitioned tables accessible to the current user.
· USER_PART_TABLES
displays the object-level partitioning information for the partitioned tables owned by the current user. This view does not display the OWNER
column.
Column | Datatype | NULL | Description |
|
| | Owner of the partitioned table |
|
| | Name of the partitioned table |
|
| | Type of the partitioning method: · · · · · |
|
| | Type of the composite partitioning method: · · · · · |
|
| | Number of partitions in the table |
|
| | For a composite-partitioned table, the default number of subpartitions, if specified |
|
| | Number of columns in the partitioning key |
|
| | For a composite-partitioned table, the number of columns in the subpartitioning key |
|
| | If a previous |
|
| | Default tablespace to be used when adding a partition |
|
| | Default value of |
|
| | Default value of |
|
| | Default value of |
|
| | Default value of |
|
| | Default value of |
|
| | Default value of |
|
| | Default value of |
|
| | Default value of |
|
| | Default value of |
|
| | Default value of |
|
| | Default value of |
|
| | Default value of |
|
| | Default · · · · |
|
| | Default compression to be used when adding a partition: · · · · |
|
| | Default buffer pool to be used when adding a partition: · · · · NULL |
|
| | Name of the partitioning referential constraint for reference-partitioned tables |
|
| | String of the interval value |
Note:
1.
select owner, table_name, partitioning_type, partition_count, status, def_tablespace_name, def_logging, def_compression
from DBA_PART_TABLES;
OWNER | TABLE_NAME | PARTITIONING_ TYPE | PARTITION_ COUNT | STATUS | DEF_ TABLESPACE_ NAME | DEF_ LOGGING | DEF_ COMPRESSION |
SYSTEM | LOGSTDBY$APPLY_PROGRESS | RANGE | 1 | VALID | SYSAUX | NONE | NONE |
SYSTEM | LOGMNR_DICTSTATE$ | RANGE | 1 | VALID | SYSAUX | YES | NONE |
SYSTEM | LOGMNR_DICTIONARY$ | RANGE | 1 | VALID | SYSAUX | YES | NONE |
SYS | STREAMS$_APPLY_SPILL_MSGS_PART | LIST | 1 | VALID | SYSAUX | NONE | NONE |
SYS | WRH$_FILESTATXS | RANGE | 10 | VALID | SYSTEM | NONE | NONE |
No comments:
Post a Comment