Oracle 视图 DBA_HIST_TBSPC_SPACE_USAGE 官方解释,作用,如何使用详细说明

本站中文解释

DBA_HIST_TBSPC_SPACE_USAGE是Oracle的一个动态性能视图,用于提供表空间、文件、块和空间使用情况的历史数据。它仅在采集活动已启用时可用,要在11g中启用采集器可以运行下面的脚本:

SQL> EXEC DBMS_Stats.Gather_Table_Stats;

可以使用该视图来检查某表空间内存池使用情况,以及每个文件,块数和空间使用情况。

使用DBA_HIST_TBSPC_SPACE_USAGE视图,可执行以下SQL语句来查看表空间的历史使用情况:

SELECT * FROM DBA_HIST_TBSPC_SPACE_USAGE;

可以使用此视图的WHERE子句来缩小视图的数据集:

SELECT * FROM DBA_HIST_TBSPC_SPACE_USAGE WHERE TABLESPACE_NAME = ‘YOUR_TABLESPACE’;

此视图可用于帮助数据库管理员监控表空间以及针对表空间,文件,块和空间使用情况采取管理措施。此视图可以帮助管理员优化数据库性能和表空间容量,并确保数据库能够充分满足客户的需求。

官方英文解释

DBA_HIST_TBSPC_SPACE_USAGE displays historical tablespace usage statistics.

Column Datatype NULL Description

SNAP_ID

NUMBER

Unique snapshot ID

DBID

NUMBER

NOT NULL

Database ID for the snapshot

TABLESPACE_ID

NUMBER

Tablespace ID

TABLESPACE_SIZE

NUMBER

Tablespace size (in database blocks)

TABLESPACE_MAXSIZE

NUMBER

Maximum size of the tablespace (in database blocks)

TABLESPACE_USEDSIZE

NUMBER

Used size of the tablespace (in database blocks)

RTIME

VARCHAR2(25)

Runtime

CON_DBID

NUMBER

The database ID of the PDB for the sampled session

CON_ID

NUMBER

The ID of the container that CON_DBID identifies. Possible values include:

  • 0: This value is used for rows containing data that pertain to the entire CDB. This value is also used for rows in non-CDBs.

  • 1: This value is used for rows containing data that pertain to only the root

  • n: Where n is the applicable container ID for the rows containing data


数据运维技术 » Oracle 视图 DBA_HIST_TBSPC_SPACE_USAGE 官方解释,作用,如何使用详细说明