ocp-467

来源:互联网 发布:ubuntu中文显示乱码 编辑:程序博客网 时间:2024/06/13 22:55

QUESTION NO: 467?
View the Exhibit to examine the parameters set for your database instance.
You execute the following command to perform I/O calibration after the declaration of bind variables in the
session that are used in the command:
SQL> EXECUTE dbms_resource_manager.calibrate_io( num_physical_disks=>1,
-max_latency=>50, -
max_iops=>:max_iops, -
max_mbps=>:max_mbps, -
actual_latency=>:actual_latency);
Which statement describes the consequence?
A. The command produces an error.
B. The calibration process runs successfully and populates all the bind variables.
C. The calibration process runs successfully but the latency time is not computed.
D. The calibration process runs successfully but only the latency time is computed.
Only users with the SYSDBA privilege can run this procedure. Qualified users must also turn on
timed_statistics, and ensure asynch_io is enabled for datafiles. 只有SYSDBA权限的用户可以运行这个过程。
合格的用户也必须开启定时统计( timed_statistics) ,确保为数据文件启用了异步io。
Answer: A


查看图表,检查你的数据库实例的参数设置。
在命令中使用的会话的绑定变量的声明之后,执行以下命令执行I / O
校准:

A.该命令产生一个错误。


0 1