Oracle Instant Client是Oracle發布的輕量級數據庫客戶端,下面我們來看看官方的定義:
Instant Client allows you to run your applications without installing the standard Oracle client or having an ORACLE_HOME. OCI, OCCI, Pro*C, ODBC, and JDBC applications work without modification, while using significantly less disk space than before. Even SQL*Plus can be used with Instant Client. No recompile, no hassle.
可見,如果僅僅是用SQL Developer連接數據庫服務器端,或用SQL*Plus對數據庫進行操作,相對於標准的客戶端,Oracle Instant Client都是一個更好的選擇,它大大簡化了客戶端的安裝過程,占用空間極少,卻包括必備的OCI、OCCI接口和ODBC、JDBC driver。
下面我們來看看官方提供的相關安裝包:

下載鏈接:http://www.oracle.com/technetwork/database/features/instant-client/index-097480.html
因為我們后台數據庫的版本是11.2.0.1 32位,同時我們需要在windows下面安裝客戶端,故下載
instantclient-basic-win32-11.2.0.1.0.zip (51,458,190 bytes)
instantclient-sqlplus-win32-11.2.0.1.0.zip (758,913 bytes)
如果不需要sqlplus的話,選擇basic即可。
下面來看看如何安裝。
一、 將instantclient-basic和instantclient-sqlplus兩個安裝包放在同一個目錄下,解壓。
在這里,我們放在E:\Oracle下,解壓到當前文件夾,最后會自動生成一個新的文件夾instantclient_11_2,兩個安裝包的文件都會放到該文件夾下,即 E:\Oracle\instantclient_11_2。
二、 修改系統變量
1> 將E:\Oracle\instantclient_11_2添加到系統變量PATH中
2> 新增系統變量
NLS_LANG=AMERICAN_AMERICA.WE8MSWIN1252 -->> 服務器端字符集
TNS_ADMIN=E:\Oracle\instantclient_11_2 -->> 指定tnsnames.ora所在位置
注意:如果安裝網上方法系統變量依然沒有生效的話,需重啟電腦讓修改的系統變量生效。
三、 在E:\Oracle\instantclient_11_2 下新建tnsnames.ora配置文件,內容如下:
orcl = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.11)(PORT = 1521)) ) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = orcl.being.com) ) )
四、 用SQL*Plus登陸測試。
C:\WINDOWS\system32>sqlplus scott/tiger@orcl
SQL*Plus: Release 11.2.0.1.0 Production on Fri Aug 8 10:17:53 2014 Copyright (c) 1982, 2010, Oracle. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production With the Partitioning, OLAP, Data Mining and Real Application Testing options SQL>
測試ok!
至此,Oracle Instant Client和SQl*Plus安裝完成。
