標籤:des style blog http color os io strong
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/[email protected]
SQL*Plus: Release 11.2.0.1.0 Production on Fri Aug 8 10:17:53 2014Copyright (c) 1982, 2010, Oracle. All rights reserved.Connected to:Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - ProductionWith the Partitioning, OLAP, Data Mining and Real Application Testing optionsSQL>
測試ok!
至此,Oracle Instant Client和SQl*Plus安裝完成。