1. MANAGER is an existing role with no privileges or roles. 2. EMP is an existing role containing the CREATE TABLE privilege. 3. EMPLOYEES is an existing table in the HR schema.
Which two commands execute successfully? (Choose two.)
A.
GRANT CREATE SEQUENCE TO manager, emp;
B.
GRANT CREATE TABLE, emp TO manager;
C.
GRANT CREATE ANY SESSION, CREATE ANY TABLE TO manager;
D.
GRANT SELECT, INSERT ON hr.employees TO manager WITH GRANT OPTION;
E.
GRANT CREATE TABLE, SELECT ON hr.employees TO manager;
This command grants the CREATE TABLE privilege and SELECT privilege on the HR.EMPLOYEES table to the MANAGER role. This is valid syntax, as it grants both a system privilege and an object privilege to a role.
That's by A,E is correct
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
treat
2 weeks, 1 day agok1b
1 month agok1b
1 month ago