OCP-052 Exam Summary (60) -CUUG answer internal version

Examine these facts about a database:

  The database default tablespace to EXAMPLE.

  DEFERRED_SEGMENT_CREATION is TRUE (the original is FALSE, the title is wrong)

Examine these commands:

SQL> CREATE USER user1 IDENTIFIED BY oracle_4U PASSWORD EXPIRE;

User created.

SQL>ALTER USER user1 IDENTIFIED BY oracle;

User altered.

SQL>GRANT CREATE SESSION TO user1;

Grant succeeded.

SQL>GRANT CREATE TABLE TO user1 WITH ADMIN OPTION;

Grant succeeded.

Which four are true?

A)User1 can connect to the database instance.

B)User1 can create in the EXAMPLE tablespace.

C)User1 must change the password at first login.

D)User1 can grant the CREATE SESSION privilege to other users.

E)User1 can grant the CREATE TABLE privilege to other users.

F)User1 can REVOKE the CREATE TABLE privilege from users that were granted the privilege by SYS .

G)User1 can REVOKE the CREATE SESSION privilege from users that were granted the privilege by SYS .

Answer: ABEF

Zhao:

A on, create session is allowed to use this session to create a user on the server. This is to allow the user to log in.

C wrong, has been tested. PASSWORD EXPIRE the password expires, the user user1 with the EXPIRE just created, you must change password at next logon. But then alter the command line by modifying his password, so you do not have to change your password the next time you log database USER1.

D wrong, when not used with admin option granted to user1 users create session privileges. So he can not grant this privilege to others.

F Yes, there are users WITH ADMIN OPTION permissions, you can recover the system privileges to other users.

G wrong, to no avail WITH ADMIN OPTION authorization create session, the system can not recover the rights of other users.

Guess you like

Origin www.cnblogs.com/cnblogs5359/p/11597883.html