Note
This view was introduced in OceanBase Database V4.0.0.
Purpose
The oceanbase.DBA_IND_SUBPARTITIONS view displays the information about all index subpartitions in the database.
Columns
| Column | Type | Nullable? | Description |
|---|---|---|---|
| INDEX_OWNER | varchar(128) | NO | The owner of the index. |
| INDEX_NAME | varchar(128) | NO | The name of the index. |
| TABLE_NAME | varchar(128) | NO | The name of the table to which the index belongs. |
| PARTITION_NAME | varchar(128) | NO | The name of the partition. |
| SUBPARTITION_NAME | varchar(128) | NO | The name of the subpartition. |
| HIGH_VALUE | mediumtext | NO | The expression for the value bound to the subpartition. |
| HIGH_VALUE_LENGTH | bigint(20) | NO | The length of the expression for the value bound to the subpartition. |
| PARTITION_POSITION | bigint(20) | NO | The position of the partition within the index. |
| SUBPARTITION_POSITION | bigint(20) | NO | The position of the subpartition within the partition. |
| STATUS | varchar(8) | NO | Indicates whether the index partition is usable. |
| TABLESPACE_NAME | varchar(30) | NO | The name of the tablespace containing the partition. |
| PCT_FREE | bigint(0) | NO | At present, this column is not supported and its value is NULL by default. |
| INI_TRANS | bigint(0) | NO | At present, this column is not supported and its value is NULL by default. |
| MAX_TRANS | bigint(0) | NO | At present, this column is not supported and its value is NULL by default. |
| INITIAL_EXTENT | bigint(0) | NO | At present, this column is not supported and its value is NULL by default. |
| NEXT_EXTENT | bigint(0) | NO | At present, this column is not supported and its value is NULL by default. |
| MIN_EXTENT | bigint(0) | NO | At present, this column is not supported and its value is NULL by default. |
| MAX_EXTENT | bigint(0) | NO | At present, this column is not supported and its value is NULL by default. |
| MAX_SIZE | bigint(0) | NO | At present, this column is not supported and its value is NULL by default. |
| PCT_INCREASE | bigint(0) | NO | At present, this column is not supported and its value is NULL by default. |
| FREELISTS | bigint(0) | NO | At present, this column is not supported and its value is NULL by default. |
| FREELIST_GROUPS | bigint(0) | NO | At present, this column is not supported and its value is NULL by default. |
| LOGGING | varchar(3) | NO | At present, this column is not supported and its value is NULL by default. |
| COMPRESSION | varchar(13) | NO | Indicates whether compression is enabled for the partitioned index. Valid values: |
| BLEVEL | bigint(0) | NO | At present, this column is not supported and its value is NULL by default. |
| LEAF_BLOCKS | bigint(0) | NO | At present, this column is not supported and its value is NULL by default. |
| DISTINCT_KEYS | bigint(0) | NO | At present, this column is not supported and its value is NULL by default. |
| AVG_LEAF_BLOCKS_PER_KEY | bigint(0) | NO | At present, this column is not supported and its value is NULL by default. |
| AVG_DATA_BLOCKS_PER_KEY | bigint(0) | NO | At present, this column is not supported and its value is NULL by default. |
| CLUSTERING_FACTOR | bigint(0) | NO | At present, this column is not supported and its value is NULL by default. |
| NUM_ROWS | bigint(0) | NO | At present, this column is not supported and its value is NULL by default. |
| SAMPLE_SIZE | bigint(0) | NO | At present, this column is not supported and its value is NULL by default. |
| LAST_ANALYZED | date | NO | At present, this column is not supported and its value is NULL by default. |
| BUFFER_POOL | varchar(7) | NO | At present, this column is not supported and its value is NULL by default. |
| FLASH_CACHE | varchar(7) | NO | At present, this column is not supported and its value is NULL by default. |
| CELL_FLASH_CACHE | varchar(7) | NO | At present, this column is not supported and its value is NULL by default. |
| USER_STATS | varchar(3) | NO | At present, this column is not supported and its value is NULL by default. |
| GLOBAL_STATS | varchar(3) | NO | At present, this column is not supported and its value is NULL by default. |
| INTERVAL | varchar(3) | NO | At present, this column is not supported and its value is NO by default. |
| SEGMENT_CREATED | varchar(3) | NO | At present, this column is not supported and its value is NULL by default. |
| DOMIDX_OPSTATUS | varchar(6) | NO | At present, this column is not supported and its value is NULL by default. |
| PARAMETERS | text | NO | At present, this column is not supported and its value is NULL by default. |
Sample query
Query the subpartitions (also known as partitions) of the tbl2_f_rl table in the user tenant.
obclient [infotest]> SELECT INDEX_OWNER, INDEX_NAME, PARTITION_NAME, SUBPARTITION_NAME, HIGH_VALUE, HIGH_VALUE_LENGTH, PARTITION_POSITION, SUBPARTITION_POSITION FROM oceanbase.DBA_IND_SUBPARTITIONS WHERE TABLE_NAME='tbl2_f_rl';
The query result is as follows:
+-------------+----------------+----------------+-------------------+------------+-------------------+--------------------+-----------------------+
| INDEX_OWNER | INDEX_NAME | PARTITION_NAME | SUBPARTITION_NAME | HIGH_VALUE | HIGH_VALUE_LENGTH | PARTITION_POSITION | SUBPARTITION_POSITION |
+-------------+----------------+----------------+-------------------+------------+-------------------+--------------------+-----------------------+
| infotest | tbl2_f_rl_idx1 | p1 | sp3 | 1,3 | 3 | 2 | 1 |
| infotest | tbl2_f_rl_idx1 | p1 | sp4 | 4,6 | 3 | 2 | 2 |
| infotest | tbl2_f_rl_idx1 | p1 | sp5 | 7,9 | 3 | 2 | 3 |
| infotest | tbl2_f_rl_idx1 | p0 | sp0 | 1,3 | 3 | 1 | 1 |
| infotest | tbl2_f_rl_idx1 | p0 | sp1 | 4,6 | 3 | 1 | 2 |
| infotest | tbl2_f_rl_idx1 | p0 | sp2 | 7,9 | 3 | 1 | 3 |
+-------------+----------------+----------------+-------------------+------------+-------------------+--------------------+-----------------------+
6 rows in set