如何安装oracle instantclient连接多个远程数据库从本地机器/环境在windows?

z9smfwbn  于 2023-06-24  发布在  Windows
关注(0)|答案(1)|浏览(102)

在本地Windows机器上安装Oracle(instantclient)sqlplus客户端,无需登录Linux服务器即可连接报表数据库。
我使用Oracle“instantclient_21_10”版本进行了测试

twh00eeo

twh00eeo1#

https://www.oracle.com/database/technologies/instant-client/winx64-64-downloads.html下载软件包
1.下载并解压缩基本包。
1.在同一目录下下载并解压缩sqlplus(工具-可选包)。
打开窗口命令提示符
cd C:\Users\instantclient_21_10 --提取的路径位置。
sqlplus用户名/密码@//:/<listener_service_string_name>

**Exp:**sqlplus myusername///10.16.17.18:1521/mydbstring.hello.com

现在你可以从提示符中执行sqlplus任务了。

相关问题