如何在SQL开发者上连接到新创建的Oracle数据库。

huangapple go评论60阅读模式
英文:

How to connect to a newly created Oracle database on SQL developer

问题

如何使用SQL开发人员连接到新创建的Oracle数据库?我需要配置TNS names.ora文件吗?

英文:

How do u connect to a newly created oracle database using SQL developer. Do I need to configure the TNS names.ora file?

答案1

得分: 0

只要您的监听器进程在服务器上运行(如有需要,请在服务器上使用命令 lsnrctl status 进行检查),您可以使用 JDBC 进行连接,这是 SQL Developer 中的默认选项。

提供主机名(或 IP 地址)、监听器端口以及用户名和密码,您应该可以连接成功。

您还可以通过 TNS 进行连接,在 SQL Dev 连接下拉列表中选择连接类型 = TNS。

只有在这种模式下(例如使用 SQL*Plus 时),您才需要本地的 Oracle 客户端,并且您的 tnsnames.ora 文件必须附加一个用于连接到的 Oracle 实例的条目。

英文:

As long as your listener process is running on the server (check on the server with command lsnrctl status if needed), you can connect using JDBC which is the default in SQL Developer.

Provide the hostname (or IP), the listener port and a user+password and you should be fine.

You can also connect through TNS, using the Connection Type = TNS in the SQL Dev connection dropdown list.
Only in this mode (and when using SQL*Plus for example), you will need a local Oracle client and your tnsnames.ora file will have to be appended with an entry for the Oracle instance you want to connect to.

huangapple
  • 本文由 发表于 2020年1月6日 15:51:42
  • 转载请务必保留本文链接:https://go.coder-hub.com/59608453.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定