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 /XEThe port information is optional if the default of 1521 is used.Listener configuration documentation here.Remote connection documentation here. 这篇关于如何远程连接到Oracle 11g数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-07 01:13