Oracle 视图 V$RECOVERY_SLAVE 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图V$RECOVERY_SLAVE可以用于检查和监控当前数据库中进行中的数据库重放操作 (Data guard) 从备份日志应用到从库的信息。也可以用它来查看已经应用过的日志文件和未来需要应用的日志文件。
该视图包含以下信息:
1. SLAVE : 从库实例名称
2. CURRENT_FILE : 正在应用的日志文件
3. CURRENT_BLK : 该文件的起始位置
4. WORKING_FILE : 从备份文件中已被”应用”的最后一个日志文件
5. WORKING_BLK : 该文件的起始位置
6. LOW_SEQ# : 将要被应用的第一个日志文件的序列号
7. LOW_BLK# : 该文件的起始位置
使用方法:可以查询该视图来确定从库事务状态:
SELECT slave, current_file, working_file FROM V$RECOVERY_SLAVE;
官方英文解释
V$RECOVERY_SLAVE
is used to track database media recovery processes to monitor their performance statistics and analyze a media recovery session.
Column | Datatype | Description |
---|---|---|
|
|
Start time of the recovery process |
|
|
Type of recovery process being performed:
|
|
|
Item being measured. When
When
When |
|
|
The units of measurement for each item |
|
|
Amount of work done so far |
|
|
Total amount of work expected |
|
|
Miscellaneous notes, which may display the recovery ID and process ID for current recovery session |
|
|
The ID of the container to which the data pertains. Possible values include:
|
See Also:
Oracle Database Backup and
Recovery User’s Guide