Oracle 视图 V$LGWRIO_OUTLIER 官方解释,作用,如何使用详细说明
本站中文解释
Oracle 视图 V$LGWRIO_OUTLIER 用于监控在数据库中执行操作时,用户等待比其他会话长的操作。
用法:
1、可以检查造成用户等待的操作:
查询v$lgwrio_outlier视图
SELECT *
FROM v$lgwrio_outlier;
2、可以查看哪些临时表空间(TEMP)和undo表空间是最繁忙的:
SELECT *
FROM v$lgwrio_outlier
WHERE wait_class IN (‘undo’,’temporary’);
3、可以查看特定会话的等待概况:
SELECT *
FROM v$lgwrio_outlier
WHERE session_id = ;
官方英文解释
V$LGWRIO_OUTLIER
contains entries corresponding to Log Writer (LGWR) process I/Os that have taken a long time (more than 500 ms) to complete. Use this view to see if there any occasional delays in serving disk I/O requests by the storage subsystem.
Column | Datatype | Description |
---|---|---|
|
|
I/O function name of the delayed I/O |
|
|
Size of the I/O in bytes |
|
|
Wait event name that was used to track the I/O |
|
|
Name of the file to which the I/O was targeted |
|
|
Time taken to complete the I/O (in milliseconds) |
|
|
For Oracle ASM, the name of the first disk to which the I/O was issued |
|
|
Latency seen on the first disk (in milliseconds) |
|
|
For Oracle ASM, the name of the second disk to which the I/O was issued |
|
|
Latency seen on the second disk (in milliseconds) |
|
|
For Oracle ASM, the name of the third disk to which the I/O was issued |
|
|
Latency seen on the third disk (in milliseconds) |
|
|
The ID of the container to which the data pertains. Possible values include:
|
See Also:
-
“V$IO_OUTLIER”
-
“V$KERNEL_IO_OUTLIER”