|
P6
|
发表于 2012-6-17 18:02:34
Disk file operations I/OThis event is used to wait for disk file operations (for example, open, close, seek, and resize). It is also used for miscellaneous I/O operations such as block dumps and password file accesses.
Wait Time: The wait time is the actual time it takes to do the I/O
Parameter Description
FileOperation Type of file operation
fileno File identification number
filetype Type of file (for example, log file, data file, and so on)
fileOperation主要有下面几个方面
1 file creation
2 file open
3 file resize
4 file deletion
5 file close
6 wait for all aio requests to finish
7 write verification
8 wait for miscellaneous io (ftp, block dump, passwd file)
9 read from snapshot files
我们知道操作系统在操作文件的时候,需要打开文件、关闭文件、定位文件位置等。
当这些操作在进行的时候,Oracle就处于等待时间。
这类等待时间出现以后,往往和Bug有关系。
这类等待时间主要是和文件操作有关系,但不是文件内容的操作。 |
|