Oracle 视图 V$TEMPSTAT 官方解释,作用,如何使用详细说明
本站中文解释
Oracle的视图V$TEMPSTAT是一个动态视图,它可以用来查看用于临时表空间的使用统计信息。该视图描述每个用于临时表空间的会话的使用情况,包括缓存的总大小、未使用的空间大小、总的文件块数量及其他信息。
使用V$TEMPSTAT视图时,可以得到每个会话使用的临时表空间信息,如会话ID、文件块数量以及使用空间大小等等。要使用V$TEMPSTAT视图,需要在SQLPlus 中执行以下命令:
SELECT * FROM V$TEMPSTAT;
官方英文解释
V$TEMPSTAT
displays information about file read/write statistics.
Column | Datatype | Description |
---|---|---|
|
|
Number of the file |
|
|
Number of physical reads done |
|
|
Number of times DBWR is required to write |
|
|
Number of physical blocks read |
|
|
Number of blocks written to disk, which may be the same as |
|
|
Number of single block reads |
|
|
Time (in hundredths of a second) spent doing reads if the |
|
|
Time (in hundredths of a second) spent doing writes if the |
|
|
Cumulative single block read time (in hundredths of a second) |
|
|
Average time (in hundredths of a second) spent on I/O, if the |
|
|
Time (in hundredths of a second) spent doing the last I/O, if the |
|
|
Minimum time (in hundredths of a second) spent on a single I/O, if the |
|
|
Maximum time (in hundredths of a second) spent doing a single read, if the |
|
|
Maximum time (in hundredths of a second) spent doing a single write, if the |
|
|
The ID of the container to which the data pertains. Possible values include:
|
See Also:
“TIMED_STATISTICS”