InterviewSolution
| 1. |
How Does One Manage Oracle Database Users? |
|
Answer» Oracle user accounts can be LOCKED, UNLOCKED, forced to choose new passwords, etc. For example, all accounts except SYS and SYSTEM will be locked after creating an Oracle9iDB DATABASE using the DB Configuration Assistant (dbca). DBA's must UNLOCK these accounts to make them available to users. Look at these examples: ALTER USER scott ACCOUNT LOCK -- lock a user account. Oracle user accounts can be locked, unlocked, forced to choose new passwords, etc. For example, all accounts except SYS and SYSTEM will be locked after creating an Oracle9iDB database using the DB Configuration Assistant (dbca). DBA's must unlock these accounts to make them available to users. Look at these examples: ALTER USER scott ACCOUNT LOCK -- lock a user account. |
|