Home> Database> Oracle> body text

What are the commands to unlock users in Oracle?

coldplay.xixi
Release: 2020-08-17 15:24:11
Original
11569 people have browsed it

Oracle's commands to unlock users are: 1. Use the plsql tool sys user login, the code is [ALTER USER username ACCOUNT UNLOCK]; 2. Set the user password to try to log in unlimited times; 3. Set the user password not to expire .

What are the commands to unlock users in Oracle?

The commands for oracle to unlock a user are:

1. Usually we encounter multiple incorrect inputs of the oracle user password. , then changing the user will change the lock, then the solution is very simple, as follows:

Use the plsql tool sys user to log in (you can also enter the dos command: sqlplus / as sysdba) to unlock

ALTER USER 用户名 ACCOUNT UNLOCK;
Copy after login

2 , then when encountering this situation where the user will be locked, we can set the user password to try to log in unlimited times, and the user will not be locked:

ALTER PROFILE DEFAULT LIMIT FAILED_LOGIN_ATTEMPTS UNLIMITED;
Copy after login

3. In addition, small partners who do project operation and maintenance often When the database user password expires, it is troublesome to change the password regularly. Then we can set the user password to not expire:

ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;
Copy after login

Related learning recommendations:oracle database learning tutorial

The above is the detailed content of What are the commands to unlock users in Oracle?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!