将SQL开发人员连接到Oracle 12c

时间:2015-10-19 15:23:12

标签: oracle oracle-sqldeveloper

我在设置这个Oracle Stuff方面有点新意,所以希望你能忍受我。

  • 我在个人笔记本电脑上安装了Oracle,并且已经验证从命令提示符运行它是否正常工作。我使用SYS作为用户ID连接,我能够正常登录
  • 我也安装了SQL开发人员

如何设置从SQL开发人员到Oracle的连接?我确实读过这本手册。如果我需要连接到HR数据库,需要为连接,用户名和密码提供哪些参数?

2 个答案:

答案 0 :(得分:3)

运行SQLPlus,以SYS用户身份连接(使用您在安装期间输入的管理员密码)并解锁HR用户并给他一个新密码:

C:\>sqlplus  sys as sysdba

SQL*Plus: Release 12.1.0.2.0 Production on Mon Oct 19 18:10:51 2015

Copyright (c) 1982, 2014, Oracle.  All rights reserved.

Enter password:

Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options

SQL> alter user hr identified by new_password;

User altered.

SQL> alter user hr account unlock;

User altered.

如果您使用的是Windows,请运行防火墙配置并允许连接到TCP / IP端口1521。

运行SQL Developer并单击big green" +" "连接"中的图标面板。

enter image description here

您将看到如下对话框: enter image description here

填写此表格中的字段,如上图所示 SID是您在安装期间输入的数据库名称(默认为ORACL) 点击"测试"按钮验证一切是否正常,如果是,则点击"保存"按钮记住连接的配置,然后单击"连接"。

答案 1 :(得分:0)

我的可插拔数据库必须首先强行关闭然后才能成功连接。