052-009題解析
View the Exhibit and examine the privileges granted to the SL_REP user.
The EMP table is owned by the SCOTT user. The SL_REP user executes the following command:
SQL> GRANT SELECT ON scott.emp TO hr;
Which statement describes the outcome of the command?
A.The command executes successfully.
B.The command produces an error because the EMP table is owned by SCOTT.
C.The command produces an error because SL_REP has the GRANT ANY OBJECT PRIVILEGE without ADMIN_OPTION.
D.The command produces an error because SL_REP does not have the SELECT privilege with GRANT_OPTION on the EMP table.
Answer: A答案解析:
本題主要考的是許可權問題,主要是理解GRANT ANY OBJECT PRIVILEGE的系統許可權。
這個系統許可權可以把任何使用者下的表授權給其他使用者。
SQL> CREATE USER SL_REP IDENTIFIED BY SL_REP ACOUNT UNLCOK;
SQL> GRANT connect,resource TO SL_REP;
SQL> GRANT grant any object privilege TO SL_REP;
另一個回話中
SQL> conn SL_REP/SL_REP
SQL > GRANT SELECT ON scott.emp TO hr;
可以成功授權。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12798004/viewspace-1133245/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Java面試題解析Java面試題
- 二、RHCSA試題解析
- Bugku web題解析Web
- golang url解析問題Golang
- svn上問題解析
- 052-046題解析
- 052-003題解析
- 052-004題解析
- Oracle IO問題解析Oracle
- oracle IO 問題解析Oracle
- weex常見問題解析
- Google經典面試題解析Go面試題
- leetcode小題解析LeetCode
- 常見面試題 - URL 解析面試題
- python練習題解析Python
- Go面試題答案與解析Go面試題
- 052-002題解析
- 052-006題解析
- 052-007題解析
- 052-008題解析
- 052-013題解析
- Oracle IO問題解析(ZT)Oracle
- Oracle IO問題解析(7)Oracle
- Oracle I/O問題解析Oracle
- 程式設計題目解析程式設計
- 【Java】Word題庫解析2Java
- [面試題]事件迴圈經典面試題解析面試題事件
- 【JavaScript】前端演算法題 40道題+解析JavaScript前端演算法
- Oracle ocp 052題庫解析2Oracle
- Mybatis N+1問題解析MyBatis
- 部分JS經典題目解析JS
- answerOpenCV輪廓類問題解析OpenCV
- 前端面試題之Promise解析前端面試題Promise
- 解析xml 成bool的問題XML
- 解析一道JS面試題JS面試題
- iOS介面資料解析問題iOS
- Facebook面試題 | 迷你解析器面試題
- JavaScript 的 this 指向問題深度解析JavaScript