Oracle 视图 DBA_TABLESPACE_THRESHOLDS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle 视图DBA_TABLESPACE_THRESHOLDS提供了详细的表空间临界值信息,包括百分比、字节、警告和停止值。
它可以用来确定当空间低于临界值时,将产生自动警告或错误。这不仅可以使DBA及早发现问题,而且可以有效利用磁盘空间,更新表空间和控制磁盘空间使用量。
要查看某一个表空间临界值,可以执行以下SQL语句:
SELECT * FROM DBA_TABLESPACE_THRESHOLDS WHERE TABLESPACE_NAME=’TBS_NAME’;
此外,还可以查看全部表空间临界值信息,执行:
SELECT * FROM DBA_TABLESPACE_THRESHOLDS;
官方英文解释
DBA_TABLESPACE_THRESHOLDS
describes space utilization threshold settings for all tablespaces in the database.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Tablespace name |
|
|
|
Tablespace contents:
|
|
|
|
Indicates whether the extents in the tablespace are dictionary managed ( |
|
|
|
Indicates whether the threshold value is derived from a |
|
|
|
Name of the metric for which the threshold is set |
|
|
|
Relational operator for warning thresholds:
|
|
|
|
Warning threshold value |
|
|
|
Relational operator for critical thresholds:
|
|
|
|
Critical threshold value |