Unlock an Oracle user on the command line

Source: Internet
Author: User

DBAs often encounter unlocking Oracle users in their daily work. This article describes how to unlock Oracle users using the command line, you can use several simple unlock statements to complete this task. The specific process is as follows:

Scott users are locked by default, and they can be unlocked first to log on to the land. Use the following statement to unlock scott:

Alter user scott account unlock;

This password may be required after unlocking:

Alter user scott identified by tiger;

Log On again:

Sqlplus scott/tiger

You can log on.

Oracle commands for locking and unlocking users

SQL> conn/as sysdba
Connected.
// Scott cannot log on when the default tieger password is not set.

How to lock a user:

SQL> alter user test account lock;

The user has changed.

------- The test user fails to log on to the database.
C: \> sqlplus test/test

ERROR:
ORA-28000: the account is locked

How to unlock an Oracle user:

SQL> conn/as sysdba
SQL> alter user test account unlock;

The user has changed. This completes the Oracle user unlocking operation.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.