简体   繁体   中英

How do I log back into my HR database for Oracle SQL Developer( the password expired )?

I'm having some trouble with logging into the HR database that comes with SQL Developer :

first I log into SQL*Plus like so:

sqlplus sys/sys_password as sysdba

How do I connect to the HR database after that ? I tried

open HR

But this doesn't work.

You could reset its password:

ALTER USER hr IDENTIFIED BY new_password;

And then just use this password to log in.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM