【第24题】【063题库】2019年OCP12c认证1Z0-063考试题库大全
最新学讯:近期OCP认证正在报名中,因考试人员较多请尽快报名获取最近考试时间,报名费用请联系在线老师,甲骨文官方认证,报名从速!
我要咨询OCP 12c考试考3科,分别是071、062、063,之前071和062都已经做过解析,这里开始063题库解析,希望对考063的同学有帮助,顺利通过063考试。
OCP解析公开课时间:【每周五晚8点】
OCP解析公开课地址:http://ke.qq.com/course/326223
OCP解析群资料分享:1015267481 验证:ocp
-------------------------------------------------------
24题、You issue commands in SQL*Plus as the Oracle owner, to enable multithreading for your UNIX-based Oracle 12c database:
CONNECT/AS SYSDBA
ALTER SYSTEM SET THREADED__EXECUTION= TRUE SCOPE=SPFILE;
SHUTDOWN IMMEDIATE
You then restart the instance and get an error:
STARTUP
ORA-01031: insufficientprivileges
Why does the startup command return the error shown?
A. because the threaded architecture requires exiting from sql*pIus and reconnectingwith sql*PIus / as sysDBA before issuing a startup command
B. because the threaded architecture requires issuing a new connect / as sysDBA from within sql*pIus before issuing a startup command
C. because the threaded architecture requires authentication using a password file before issuing a startup command
D. because the threaded architecture requires connecting to the instance via a listener before issuing a startup command
E. because the threaded architecture requires restarting the listener before issuing astartup command
Answer: C
(解析:答案 C 的意思是登录时需要用 sys 用户的名字登录然后启动实例,因为使用密码文件意味着需要使用 sys 用户,需要用如下方式进行启动:
1、sqlplus /nolog
2、SQL> conn sys/oracle as sysDBA
3、SQL> startup
)