zl程序教程

您现在的位置是:首页 >  数据库

当前栏目

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

Oracle官方asyncIO 使用 如何 详细 作用
2023-06-13 09:11:18 时间
本站中文解释

V$BACKUP_ASYNC_IO 是Oracle用于查询增量备份所使用的异步I/O(Asynchronous I/O)的视图。此视图可报告在备份的每一个文件上活动的异步I/O统计数据,它还能报告每一个备份位差异RMAN请求所需要的异步I/O次数。

使用方法:

1.查看指定文件号上活动异步I/O的信息:

SELECT * FROM V$BACKUP_ASYNC_IO where file#= file;

2.查看指定备份位上所有文件号活动异步I/O的信息:

SELECT * FROM V$BACKUP_ASYNC_IO where thread# thread;

3.查看每一个备份位差异RMAN请求所需要的异步I/O次数信息:

SELECT * FROM V$BACKUP_ASYNC_IO where diff#= diff#;

官方英文解释

V$BACKUP_ASYNC_IO displays performance information about ongoing and recently completed RMAN backups and restores.

For each backup, it contains one row for each input data file, one row for the aggregate total performance of all data files, and one row for the output backup piece. This data is not stored persistently, and is not preserved when the instance is re-started.


Total number of bytes that will be read or written for the file, if known. If not known, this column will be null


Time the file was opened. If TYPE= AGGREGATE , then this is the time that the first file in the aggregate was opened


Time the file was closed. If TYPE= AGGREGATE , then this is the time that the last file in the aggregate was closed


Number of concurrently open DISK files. This value is only present in rows where TYPE= AGGREGATE .


Number of asynchronous requests for which a buffer was immediately ready for use


Number of times that a buffer was not immediately available, but a buffer became available after doing a nonblocking poll for I/O completion


Total time, in hundredths of a second, taken by nonblocking polls for I/O completion


Maximum time taken for a nonblocking poll for I/O completion, in hundredths of a second


The number of times that a buffer was not immediately available, and only became available after a blocking wait was issued


The total time, in hundredths of a second, taken by blocking waits for I/O completion


The maximum time taken for a blocking wait for I/O completion, in hundredths of a second


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.


我想要获取技术服务或软件
服务范围:MySQL、ORACLE、SQLSERVER、MongoDB、PostgreSQL 、程序问题
服务方式:远程服务、电话支持、现场服务,沟通指定方式服务
技术标签:数据恢复、安装配置、数据迁移、集群容灾、异常处理、其它问题

本站部分文章参考或来源于网络,如有侵权请联系站长。
数据库远程运维 Oracle 视图 V$BACKUP_ASYNC_IO 官方解释,作用,如何使用详细说明