英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论