Oracle
1Z0-061 · Question #125
Examine these statements: CREATE ROLE registrar; GRANT UPDATE ON student_grades TO registrar; GRANT registrar to user1, user2, user3; What does this set of SQL statements do?
The correct answer is C. It creates a role called REGISTRAR, adds the UPDATE privilege on the STUDENT_GRADES. The statement will create a role call REGISTRAR, grant UPDATE on student_grades to registrar, grant the role to user1, user2 and user3.
Controlling User Access
Question
Examine these statements:
CREATE ROLE registrar; GRANT UPDATE ON student_grades TO registrar; GRANT registrar to user1, user2, user3; What does this set of SQL statements do?
Options
- AThe set of statements contains an error and does not work.
- BIt creates a role called REGISTRAR, adds the MODIFY privilege on the STUDENT_GRADES
- CIt creates a role called REGISTRAR, adds the UPDATE privilege on the STUDENT_GRADES
- DIt creates a role called REGISTRAR, adds the UPDATE privilege on the STUDENT_GRADES
- EIt creates a role called REGISTRAR, adds the UPDATE privilege on three users, and gives the
- FIt creates a role called STUDENT_GRADES, adds the UPDATE privilege on three users, and
How the community answered
(31 responses)- A6% (2)
- B13% (4)
- C74% (23)
- D3% (1)
- F3% (1)
Explanation
The statement will create a role call REGISTRAR, grant UPDATE on student_grades to registrar, grant the role to user1, user2 and user3.
Topics
#CREATE ROLE#GRANT privilege#role management#user access control
Community Discussion
No community discussion yet for this question.