如何远程连接Oracle 11g数据库

How to connect to Oracle 11g database remotely(如何远程连接Oracle 11g数据库)
本文介绍了如何远程连接Oracle 11g数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在计算机 A 上安装了 Oracle 11g XE.我可以使用 connect username/password> 命令通过 sql 命令行进行连接.我也可以向Demo数据库发送SQL指令:Select * from demo_customers;

数据库在计算机 A 的本地主机上运行.

我希望计算机 B 连接到本地主机上计算机 A 的数据库.我该怎么做?

解决方案

您需要在服务器 A 上运行 lsnrctl 实用程序以启动侦听器.然后,您将使用以下语法从计算机 B 进行连接:

sqlplus 用户名/密码@hostA:1521/XE

如果使用默认值 1521,则端口信息是可选的.

此处为侦听器配置文档.此处为远程连接文档.>

I have Oracle 11g XE installed on computer A. I can connect through the sql command line using the command connect username/password. I also can send SQL instructions to the Demo database: Select * from demo_customers;

The database is running on localhost of computer A.

I want computer B to connect to computer A's database on localhost. How can I do that?

解决方案

You will need to run the lsnrctl utility on server A to start the listener. You would then connect from computer B using the following syntax:

sqlplus username/password@hostA:1521 /XE

The port information is optional if the default of 1521 is used.

Listener configuration documentation here. Remote connection documentation here.

这篇关于如何远程连接Oracle 11g数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

SQL to Generate Periodic Snapshots from Transactions Table(用于从事务表生成定期快照的SQL)
MyBatis support for multiple databases(MyBatis支持多个数据库)
Oracle 12c SQL: Missing column Headers in result(Oracle 12c SQL:结果中缺少列标题)
SQL query to find the number of customers who shopped for 3 consecutive days in month of January 2020(查询2020年1月连续购物3天的客户数量)
How to get top 10 data weekly (This week, Previous week, Last month, 2 months ago, 3 month ago)(如何每周获取前十大数据(本周、前一周、上个月、2个月前、3个月前))
Select the latest record for an Id per day - Oracle pl sql(选择每天ID的最新记录-Oracle pl SQL)