PL/SQL Developer连接Oracle数据库(64位)

一、 使用64位PL/SQL Developer连接64位Oracle数据库,下载后直接使用。

        官网地址:https://www.allroundautomations.com/registered/plsqldev.html

        站内下载资源:https://download.csdn.net/download/feige388/10437580

二、使用32位PL/SQL Developer连接64位Oracle数据库。

        1、下载32位Oracle InstantClient,并展开到某目录,例如:E:\app\Administrator\product\instantclient_11_2;

        2、将Oracle安装文件中的tnsnames.ora拷贝到该目录下;

        3、PLSQL Developer中设置Oracle_Home和OCI Library:

        Oracle主目录名:E:\app\Administrator\product\instantclient_11_2

        OCI库:E:\app\Administrator\product\instantclient_11_2\oci.dll

PL/SQL Developer连接Oracle数据库(64位)

4、PLSQL Developer目录下编辑如下start.bat文件,替换其快捷方式,启动PLSQL Developer:

        @echo off

        set path=E:\app\Administrator\product\instantclient_11_2

        set ORACLE_HOME=E:\app\Administrator\product\instantclient_11_2

        set TNS_ADMIN=E:\app\Administrator\product\instantclient_11_2

        set NLS_LANG=AMERICAN_AMERICA.ZHS16GBK

        start plsqldev.exe