- 最后登录
- 2015-9-23
- 在线时间
- 165 小时
- 威望
- 0
- 金钱
- 57
- 注册时间
- 2013-7-26
- 阅读权限
- 10
- 帖子
- 52
- 精华
- 0
- 积分
- 0
- UID
- 1172
|
11#
发表于 2014-4-18 15:05:16
DBMS_RESOURCE_MANAGER.CALIBRATE_IO (
num_physical_disks IN PLS_INTEGER DEFAULT 1,
max_latency IN PLS_INTEGER DEFAULT 20,
max_iops OUT PLS_INTEGER,
max_mbps OUT PLS_INTEGER,
actual_latency OUT PLS_INTEGER);
Parameter Description
num_physical_disks
Approximate number of physical disks in the database storage
max_latency
Maximum tolerable latency in milliseconds for database-block-sized IO requests
max_iops
Maximum number of I/O requests per second that can be sustained. The I/O requests are randomly-distributed, database-block-sized reads.
max_mbps
Maximum throughput of I/O that can be sustained, expressed in megabytes per second. The I/O requests are randomly-distributed, 1 megabyte reads.
actual_latency
Average latency of database-block-sized I/O requests at max_iops rate, expressed in milliseconds |
|