Home > Database > Oracle > body text

What should I do if I forget my Oracle password?

coldplay.xixi
Release: 2020-07-16 10:38:51
Original
11007 people have browsed it

Solution for forgotten oracle password: First log in to the operating system where the oracle database server is installed; then look for the setting of the environment variable [ORACLE_SID]; finally enter the command [sqlplus/as sysdba] and log in as sysdba. Can.

What should I do if I forget my Oracle password?

Solution for forgotten oracle password:

1. Log in to the operating system where the oracle database server is installed. Open the command window: (My demonstration machine is windows)

What should I do if I forget my Oracle password?

2. Check the setting of the environment variable ORACLE_SID:

windows : echo %ORACLE_SID%

linux: echo $ORACLE_SID

What should I do if I forget my Oracle password?

3. Set the value of the environment variable ORACLE_SID to the SID of the oracle instance you want to log in: set ORACLE_SID=orcl

What should I do if I forget my Oracle password?

4. Type the command: sqlplus/as sysdba

to sysdba Log in to oracle with your identity!

Under Linux system, if you cannot find the sqlplus command, please switch to the oracle user.

What should I do if I forget my Oracle password?

5. Execute the command in the sqlplus window:

alter user you_username identified by you_password;
Copy after login

to change your user’s password~

What should I do if I forget my Oracle password?

Related learning recommendations: oracle database learning tutorial

The above is the detailed content of What should I do if I forget my Oracle password?. 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 [email protected]
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!