标签:
服务器A安装的oracle 12c 64位的数据库,机器B如何访问oracle数据库。
准备:
1.下载instantclient-basic-nt-12.1.0.2.0.zip,下载地址:http://pan.baidu.com/s/1c04lzSO
2.下载plsql,下载地址:http://pan.baidu.com/s/1bnHKDOj
安装步骤
1.安装orcle客户端
将下载的 instantclient-basic-nt-12.1.0.2.0.zip解压到机器B中非中文路径的目录下,假设解压到了路径
D:\tools\Application Develop\oracle\instantclient-basic-nt-12.1.0.2.0\instantclient_12_1
2.配置数据源文件
在机器B中的以上路径中新建文件NETWORK\ADMIN\tnsnames.ora
tnsnames.ora的内容即为服务器A中数据源的配置tnsnames.ora的内容。
服务器A中tnsnames.ora的地址:C:\app\Administrator\product\12.1.0\dbhome_2\NETWORK\ADMIN\tnsnames.ora
3.添加环境变量
在机器B右击"我的电脑" - "属性" - "高级" - "环境变量" - "系统环境变量"
3.1选择"Path" - 点击"编辑", 把 "D:\tools\Application Develop\oracle\instantclient-basic-nt-12.1.0.2.0\instantclient_12_1;" 加入;
3.2点击"新建", 变量名设置为"TNS_ADMIN", 变量值设置为"D:\tools\Application Develop\oracle\instantclient-basic-nt-12.1.0.2.0\instantclient_12_1;",点击"确定";
4.安装plsql,设置Oracle Home和OCI Library
安装plsql到在机器B的非中文目录下。打开plsql 点击取消登陆,进入plsql界面,在“工具”的“首选项”中或是英文的”tools“的”preferences“中设置Oracle Home和OCI Library
Oracle Home :D:\tools\Application Develop\oracle\instantclient-basic-nt-12.1.0.2.0\instantclient_12_1
OCI Library :D:\tools\Application Develop\oracle\instantclient-basic-nt-12.1.0.2.0\instantclient_12_1\oci.dll
标签:
原文地址:http://www.cnblogs.com/guohu/p/4728832.html