Oracle 视图 DBA_RECOVERABLE_SCRIPT_HIST 官方解释,作用,如何使用详细说明
本站中文解释
Oracle 视图DBA_RECOVERABLE_SCRIPT_HIST是记录回收脚本执行历史的数据库视图。
DBA_RECOVERABLE_SCRIPT_HIST视图包含有关在一段时间内执行了回收脚本(recoverable scripts)的历史信息,这些回收脚本通常用于保存和恢复数据库。该视图在Oracle数据库10g中引入。
DBA_RECOVERABLE_SCRIPT_HIST 字段含义:
SCRIPT_TIMESTAMP: 回收脚本执行时间戳,格式为:YYYY-MM-DD HH24:MI:SS
SCRIPT_TEXT: 回收脚本的文本
SCRIPT_OWNER: 回收脚本文本的所有者
SCRIPT_NAME: 回收脚本的名称
STATUS: 回收脚本的状态,值为正常或失败
对于DBA_RECOVERABLE_SCRIPT_HIST 视图,几乎没有什么可以用它做的;它提供了一个用于检测回收脚本历史的快捷方式,帮助DBA检查在数据库中执行了哪些指令,以及查询它们的执行结果。
要使用DBA_RECOVERABLE_SCRIPT_HIST视图,可以使用以下SQL查询语句:
SELECT * FROM DBA_RECOVERABLE_SCRIPT_HIST;
这将查询出有关所有回收脚本的执行记录,以便检查它们的执行状态和详情等情况。
官方英文解释
DBA_RECOVERABLE_SCRIPT_HIST
displays details about executed or purged recoverable operations.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Unique id of the operation |
|
|
|
Time the operation was invoked |
|
|
|
Invoking package owner of the operation |
|
|
|
Invoking package of the operation |
|
|
|
Invoking procedure of the operation |
|
|
|
Script owner |
|
|
|
state of the recoverable script: EXECUTED, PURGED |
|
|
|
total number of blocks for the recoverable script to be executed |
|
|
|
last block so far executed |
|
|
|
comment for the recoverable script |