Oracle 视图 DBA_RSRC_IO_CALIBRATE 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_RSRC_IO_CALIBRATE提供了一种查看数据库I/O性能调整的方法,用于帮助数据库管理员校准I/O设置,以最小化和最大化数据库资源利用率。该视图显示调整参数和建议参数,如total_smart_io_requests,max_io_size,min_io_size等,以及该参数当前所选取的值。
使用此视图,DBA可以查看系统目前建议采取的性能参数;也可以查看已选择的参数以及将其应用于系统的可能性;最后还可以查看实际应用于系统的参数建议,以及将不同参数应用于系统的可能性。
使用此视图的方法如下:
1. 登录到sqlplus或enterprise manager
2. 运行如下查询,以查看当前参数的建议和实际设置:
SELECT NAME, TARGET_VALUE,RECOMMENDATION_VALUE FROM DBA_RSRC_IO_CALIBRATE;
3. 运行如下查询,以将实际参数设置为该视图建议的参数:
ALTER SYSTEM SET PARAMETER VALUE BASED ON DBA_RSRC_IO_CALIBRATE;
4. 完成设置后,再次运行上述查询以查看更改后的参数值。
官方英文解释
DBA_RSRC_IO_CALIBRATE
displays I/O calibration results for the latest calibration run.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Start time of the most recent I/O calibration |
|
|
|
End time of the most recent I/O calibration |
|
|
|
Maximum number of data block read requests that can be sustained per second |
|
|
|
Maximum megabytes per second of maximum-sized read requests that can be sustained |
|
|
|
Maximum megabytes per second of large I/O requests that can be sustained by a single process |
|
|
|
Latency for data block read requests |
|
|
|
Number of physical disks in the storage subsystem (as specified by the user) |
|
|
|
Additional information about the most recent calibration run |