Oracle 11g OCP认证052考试题库(1)-CUUG内部学员版
最新学讯:近期OCP认证正在报名中,因考试人员较多请尽快报名获取最近考试时间,报名费用请联系在线老师,甲骨文官方认证,报名从速!
我要咨询11g版本的OCP考试持续了好几年,一直比较稳定,直到2018年4月份左右,052考试不断的出现新的考题,虽然我们收集整理了不少,但新题还是难避免,这样出现一部分新题,我们收集一部分,持续了不短的时间。
对于这些052考试新题,不仅老师给出了答案,学员也积极的找资料、查文档,形成了一份内部综合版本,通过分数非常高,一起渡过这次052考试的难关。
-----------------------------------------------
052考试题-1(OCP考试题库讨论群:101-5267-481 验证:ocp)
USER1.EMP has a referential integrity constraint defined on EMP.DNO that references USER1.DEPT.DNO.
USER1 executes these commands:
SQL> UPDATE dept SET loc='UK' where dno=1;
1 row updated.
SQL> UPDATE emp SET sal=1000 where eno=100;
1 row updated.
SQL>ALTER TABLE dept DROP(dno)
What will be the outcome and why?
A)It will fail because a referential integrity constraint is defined on USER1.EMP.
B)It will execute successfully and drop DEPT.DNO.
C)It will fail because there is an uncommitted transaction on USER1.DEPT.
D)It will execute successfully and drop the DEPT.DNO and EMP.DNO columns.
E)It will fail because there is an uncommitted transaction on USER1.EMP
Answer: A
赵:
A 译:它将失败,因为 USER1.EMP 上定义了引用完整性约束。
小明:外键约束中,一个被作为外键引用的主键值不能直接删除,更不用说整个列