Oracle 视图 DBA_TAB_PARTITIONS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_TAB_PARTITIONS用于查询属于当前数据库的所有表和索引的分区信息。该视图显示了每个分区的名称、大小、所属表和表空间名称及其所属的分区类型。
使用Oracle视图DBA_TAB_PARTITIONS的方式如下:
1.首先访问数据库,使用SQL*Plus或其他可与Oracle功能兼容的数据库客户端工具进行访问。
2.使用下面的SELECT语句来查询当前所有表和索引的分区信息:
SELECT table_name, partition_name, segment_name, tablespace_name, partition_type
FROM DBA_TAB_PARTITIONS;
3.查询结果中会显示当前数据库中所有表和索引的分区信息,其中包括分区名、大小、所属表和表空间名称及其所属的分区类型。
官方英文解释
DBA_TAB_PARTITIONS
displays partition-level partitioning information, partition storage parameters, and partition statistics generated by the DBMS_STATS
package for all partitions in the database.
Its columns are the same as those in “ALL_TAB_PARTITIONS”.