|
最初由 xmzw 发布
[B]QUESTION NO: 74
You set the value of the OS_AUTHENT_PREFIX initialization parameter to OPS$ and created a user account by issuing this SQL statement:
CREATE USER OPS$smith
IDENTIFIED EXTERNALLY;
Which two statements are true? (Choose two.)
A. Oracle server assigns the DEFAULT profile to the user.
B. You can specify the PASSWORD EXPIRE clause for an external user account.
C. The user does not require CREATE SESSION system privilege to connect to the database.
D. If you query the DBA_USERS data dictionary view the USERNAME column will contain the value SMITH.
E. The user account is maintained by Oracle, but password administration and user authentication are performed by the operating system or a network service.
Answer: C, D
我选择A,D [/B]
Should be A,B
D is incorrect. The value in DBA_USERS is OPS$SMITH, not SMITH,
B is correct, please check the 031 student guide page 15-10. |
|