1、提示找不到文件。解决方法是要把win64_11gR2_database_1of2.zip、win64_11gR2_database_2of2.zip两个文件一起选中解压缩,再安装就没有报错。

win7 64位 安装win64_11gR2遇到的2个问题_安装

2、pl/sql 9连接不了数据库,报oci.dll问题。

win7 64位 安装win64_11gR2遇到的2个问题_安装_02 win7 64位 安装win64_11gR2遇到的2个问题_安装_03

参考网上解决方法:下载instantclient-basic-win32-11.2.0.1.0.zip

使用PL/SQL Developer连接OracleX64版本:
1. 下载32位Oracle InstantClient,并展开到某目录,例如D:\app\instantclient_11_2;
2. 将系统的tnsnames.ora拷贝到该目录下;
3. 在PLSQL Developer中设置Oracle_Home和OCI Library:
Tools——Preferences——Oracle——Connection:
Oracle_Home:D:\app\instantclient_11_2
OCI Library:D:\app\instantclient_11_2\oci.dll
4. 在PLSQL Developer目录下编辑如下bat文件,替换其快捷方式,启动PLSQL Developer:
@echo off
set path=D:\app\instantclient_11_2
set ORACLE_HOME=D:\app\instantclient_11_2
set TNS_ADMIN=D:\app\instantclient_11_2
set NLS_LANG=AMERICAN_AMERICA.ZHS16GBK
start plsqldev.exe