【2019年8月版本】Oracle OCP認證 071考試原題-60
最新學訊:近期OCP認證正在報名中,因考試人員較多請盡快報名獲取最近考試時間,報名費用請聯系在線老師,甲骨文官方認證,報名從速!
我要咨詢【2019年8月版本】OCP 071認證考試最新版本的考試原題-60-CUUG整理
OCP的071考試,在8月份左右全部換了新題,近期考試的題也全部不包括之前的題庫了,這次oracle更新071考試題庫,雖然全都是新題,但跟之前的相比也有關聯,比如把之前的考題稍微變換一下數字、更新一下日期、或者再加一個錯誤選項等等。
對于2019年8月份的更新,我們CUUG已經進行了收集整理,并給出初步的答案和講解,僅供參考,希望對考OCP 071認證的同學有幫助。
Choose two
Which two are true about the WITH GHANT OPTION clause?
A) The grantee can grant the object privilege to any user in the database, with or without including this option
B) It can be used to pass on privileges to other users by the prantee
C) The grantee must have the GRANT ANY OBJECT PRIVILEGE system privilege to use this option
D) It can be used for system and object privileges
E) It can be used when granting privilleges to roles.
F) It cannot be used to pass on privileges to PUBLIC by the grantee
Answer:BC
(解析:只有對象權限授權的時候才有這個選項;實驗證明有這個選項的授權者可以把該對
象權限授權給所有人。)
F 答案錯:SQL> grant select on scott.emp to public;
授權成功。
E 答案錯:ORA-01926: 無法將 WITH GRANT OPTION GRANT 角色
C 答案對:
SQL> grant GRANT ANY OBJECT PRIVILEGE to hr;
授權成功。
SQL> conn hr/hr
已連接。
SQL> grant select on scott.emp to sh with grant option;