简体   繁体   English

如何登录到Oracle SQL Developer的HR数据库(密码已过期)?

[英]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 : 登录SQL Developer随附的HR数据库时遇到一些麻烦:

first I log into SQL*Plus like so: 首先,我像这样登录到SQL * Plus:

sqlplus sys/sys_password as sysdba

How do I connect to the HR database after that ? 之后如何连接到HR数据库? 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. 然后使用此密码登录。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如果hr数据库仍然存在,如何在oracle sql developer中创建新数据库? - how to create a new database in oracle sql developer if hr database is still there? 如何使用sql developer备份和还原数据库(oracle 9i) - how to backup and restore database(oracle 9i ) using sql developer 登录 oracle 帐户时出现错误,例如来自 sql 开发人员的“hr” - I get error when logging into oracle account such as 'hr' from sql developer 适用于SQL Developer的Oracle数据库 - Oracle Database for SQL Developer 如何使用Oracle SQL Developer连接到数据库 - How to connect to a database with Oracle SQL Developer 如何在Oracle SQL Developer中创建数据库 - How to create Database in Oracle SQL Developer 如何在 Vagrant 中创建 Oracle 数据库并在我的本地 Rails 应用程序和 SQL Developer 中连接到它? - How to create an Oracle database inside Vagrant and connect to it in my local Rails app and SQL Developer? 如何在 SQL developer 上连接到新创建的 Oracle 数据库 - How to connect to a newly created Oracle database on SQL developer 如何从 Oracle SQL Developer 的数据库差异中排除 ISEQ$$ 值? - How to exclude ISEQ$$ values from a Database Diff in Oracle SQL Developer? 如何将我的 Cloudant 数据库备份到 COS? - How do I back up my Cloudant database to COS?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM