Home  >  Article  >  Database  >  How to change the oracle database user password?

How to change the oracle database user password?

coldplay.xixi
coldplay.xixiOriginal
2020-07-16 11:52:1131885browse

How to modify the Oracle database user password: first connect to the server where the Oracle database is located; then enter the command to enter the Oracle console, view the user list after connecting; and finally modify the user password.

How to change the oracle database user password?

How to modify the oracle database user password:

1. Use CRT to connect to oracle as the user who installed the oracle database. The server where the database is located. (Take the server as linux as an example)

How to change the oracle database user password?

##2. Enter the command:

sqlplus/nolog , enter the oracle console, and enter conn / as sysdba;Enter as DBA role.

How to change the oracle database user password?

3. After the connection is successful, enter "

select username from dba_users" to view the user list.

How to change the oracle database user password?

4. If you change the password of a certain user, the format is:

alter user username identified by new password;

Take apps as an example, change the password to 123456. You can enter

alter user apps identified by 123456;

How to change the oracle database user password?

5, and the change is successful.

How to change the oracle database user password?

Related learning recommendations:

oracle database learning tutorial

The above is the detailed content of How to change the oracle database user password?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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