码迷,mamicode.com
首页 > 数据库 > 详细

如何安装Oracle Instant Client

时间:2014-08-08 12:07:25      阅读:255      评论:0      收藏:0      [点我收藏+]

标签: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。

下面我们来看看官方提供的相关安装包:

bubuko.com,布布扣

下载链接: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安装完成。

 

                

       

 

如何安装Oracle Instant Client,布布扣,bubuko.com

如何安装Oracle Instant Client

标签:des   style   blog   http   color   os   io   strong   

原文地址:http://www.cnblogs.com/ivictor/p/3898702.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!