Oracle 视图 DBA_HIST_RULE_SET 官方解释,作用,如何使用详细说明
本站中文解释
_ACTIONS
Oracle 视图 DBA_HIST_RULE_SET_ACTIONS 是数据字典视图,显示当前和历史空间管理属性的变更。它以下列的列组成:
· RULE_OWNER:规则来源的拥有者。
· RULE_SET_ID:规则集 ID。
· ACTION_CLASS:行动类。
· ACTION_NAME:行动名称。
· ACTION_TYPE:行动类型。
· ACTION_VALUE:行动的值。
· VERSION:规则集版本。
使用此视图,可以查看一个规则集的历史变更记录。示例:
SELECT *
FROM dba_hist_rule_set_actions
WHERE rule_set_id = 12345
AND rule_owner = ‘TEST’;
官方英文解释
DBA_HIST_RULE_SET
displays historical information about rule set statistics.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Unique snapshot ID |
|
|
|
Database ID for the snapshot |
|
|
|
Instance number for the snapshot |
|
|
|
Owner of the rule set |
|
|
|
Name of the rule set |
|
|
|
Startup time of the instance |
|
|
Total CPU time (in hundredths of a second) spent in evaluation of the rule set |
|
|
|
Total elapsed time (in hundredths of a second) spent in evaluation of the rule set |
|
|
|
Number of evaluations on the rule set |
|
|
|
Number of evaluations on the rule set which did not internally issue SQL to evaluate rules |
|
|
|
Total number of SQL statements executed during evaluation of the rule set |
|
|
|
Number of times the rule set object was reloaded in shared memory |
|
|
|
The database ID of the PDB for the sampled session |
|
|
|
The ID of the container that
|