Home > Database > Oracle > body text

What should I do if I forget my oracle11g password?

PHPz
Release: 2023-04-21 13:50:57
Original
1920 people have browsed it

If you forget your Oracle 11g database password, don't worry, you can reset it by following the steps below.

First, log in to your operating system as an administrator. Then, open a command prompt or terminal window (if you're using Linux or macOS). In Windows systems, you can open the command prompt through "Start Menu - All Programs - Accessories - Command Prompt".

Next, switch to the installation directory of Oracle 11g. In Windows systems, the default installation directory is "C:\app\username\product\11.2.0\dbhome_1\bin", where "username" is your Windows username. In Linux or macOS systems, the default installation directory is "/u01/app/username/product/11.2.0/dbhome_1/bin", where "/u01" is the default Oracle installation root directory.

Enter the following command in the installation directory:

sqlplus /nolog
Copy after login

This will open the command line interface of the SQL*Plus tool, which you can use to connect to your local Oracle database instance.

Next, enter the following command to connect to the default administrator account "sys":

conn sys as sysdba
Copy after login

The command will prompt you to enter the password for the administrator account. Since you have forgotten your password, you can reset the administrator account password by following the steps below.

First execute the following command:

alter user sys identified by 新密码;
Copy after login

This will change the password of the administrator account "sys" to the new password you specified.

Next, execute the following command:

startup;
Copy after login

This will start the Oracle database instance. You can verify successful connection to the database instance by executing the following command:

select instance_name from v$instance;
Copy after login

If you see output for the instance name, you have successfully connected to the Oracle database instance.

You can now log in to the Oracle database using the new password for the administrator account "sys" and make any necessary changes to other users or set new passwords.

In conclusion, forgetting your Oracle 11g database password is not a big problem and you can reset it in simple steps. Be sure to keep your password safe to avoid similar problems from happening again.

The above is the detailed content of What should I do if I forget my oracle11g password?. For more information, please follow other related articles on the PHP Chinese website!

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
Popular Tutorials
More>
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!