`

Oracle Instant Client

阅读更多

转自:https://help.ubuntu.com/community/Oracle%20Instant%20Client


 

Introduction

Oracle Instant Client is a free Oracle database client. The current version is 11.2.0.1.0, and several versions back to 10.1.0.5 are available.

 

Install RPMs

  • Download the Oracle Instantclient RPM files fromhttp://www.oracle.com/technetwork/database/features/instant-client/index-097480.html. Everyone needs either "Basic" or "Basic lite", and most users will want "SQL*Plus" and the "SDK".

  • Convert these .rpm files into .deb packages and install using "alien" ("sudo apt-get install alien" if you don't have it):

    alien -i oracle-instantclient-basic*.rpm
    alien -i oracle-instantclient-sqlplus*.rpm
    alien -i oracle-instantclient-devel*.rpm
  • Test your Instantclient install by using "sqlplus" to connect to your database:

 

sqlplus  username/password@//dbhost:1521/SID

If sqlplus complains of a missing libaio.so.1 file, run 

sudo apt-get install libaio1

If sqlplus complains of a missing libsqlplus.so file, follow the steps in the section "Integrate Oracle Libraries" below.

If you execute sqlplus and get "sqlplus: command not found", see the section below about adding the ORACLE_HOME variable. 

 

Integrate Oracle Libraries

If oracle applications, such as sqlplus, are complaining about missing libraries, you can add the Oracle libraries to the LD_LIBRARY_PATH each time it is used, or to add it to the system library list create a new file as follows:

sudo vi /etc/ld.so.conf.d/oracle.conf
  • and add the oracle library path as the first line. For example,

 

/usr/lib/oracle/11.1.0.1/client/lib
  • or

 

/usr/lib/oracle/11.2/client/lib/
  • Then run ldconfig:
    sudo ldconfig

 

ORACLE_HOME

Many Oracle database applications look for Oracle software in the location specified in the environment variable 'ORACLE_HOME'.

Typical workstations will only have one Oracle install, and will want to define this variable in a system-wide location.

 

sudo vi /etc/profile.d/oracle.sh

Add the following:

export ORACLE_HOME=/usr/lib/oracle/11.1.0.1/client

or

export ORACLE_HOME=/usr/lib/oracle/11.2/client

Alternatively, each user can define this in their ~/.bash_profile

Note: For 11.04 sqlplus was not recognized as a command unless the following line was also included in the oracle.sh file:

export PATH=$PATH:$ORACLE_HOME/bin

 

SDK fix

Some packages may look for 'oci.h' in $ORACLE_HOME/include, or in $ORACLE_HOME/rdbms/public

The instant client sometimes places the include files, such as oci.h, in /usr/include/oracle/<version>/client.

Inspect your system by running the following commands

ls $ORACLE_HOME
ls -d /usr/include/oracle/*/client

If there is no 'include' directory under ORACLE_HOME, and it is located over in /usr/include/oracle/ , create a symbolic link to assist packages looking for these header files. For example,

 

sudo ln -s /usr/include/oracle/11.2/client $ORACLE_HOME/include

And then check it is correct

ls $ORACLE_HOME
分享到:
评论

相关推荐

    oracle instant client 32位

    使用Oracle Instant Client 32位时,首先需要从官方或第三方源下载对应的版本,如本例中的`instantclient_11_2`。这个压缩包中包含了Oracle Instant Client的基础组件,包括oci.dll、sqlplus.exe等。解压后,你需要...

    oracle instantclient_12_2_win64.zip

    在Windows 64位操作系统环境下,`oracle instantclient_12_2_win64.zip`这个压缩包包含了适用于该平台的Oracle Instant Client 12.2版本的所有组件。这个版本支持与Oracle Database 12c Release 2进行交互,并且经过...

    Oracle Instant Client 12 C

    Oracle Instant Client 12c是Oracle数据库公司推出的一款轻量级的数据库连接工具,它允许开发者和系统管理员在不安装完整Oracle数据库服务器的情况下,与Oracle数据库进行交互。这个版本是针对Oracle Database 12c ...

    Oracle Instant Client 11.2.0.1.0 轻量级Oracle客户端

    Oracle Instant Client 11.2.0.1.0是轻量级Oracle客户端,用于连接访问Oracle 9i、10g、11g 11.2.0.1.0版本的Oracle数据库。 Oracle Instant Client11.2.0.1.0 安装程序包含OCI/ OCCI、JDBC-OCI SDK(软件开发工具...

    Oracle instantclient 12.2.0.1.0 64位

    用户需要将"instantclient_12_2"目录解压到一个合适的路径,如"C:\Oracle\InstantClient_12_2"。 - 配置环境变量:为了使系统能够找到Instant Client的库文件,需要设置两个环境变量:`ORACLE_HOME`指向Instant ...

    Oracle Instant Client 11g base 绿色版(32位)

    Oracle Instant Client是一款轻量级的Oracle数据库连接工具,主要用于客户端应用程序与Oracle数据库之间的通信。它提供了必要的库文件和组件,使得开发人员和系统管理员无需在本地安装完整的Oracle数据库服务器即可...

    oracle instantclient(免安装的Oracle精简版即时客户端)

    Oracle Instant Client是一款由Oracle公司提供的轻量级数据库访问工具,它是Oracle客户端的精简版本,无需完整安装Oracle数据库客户端即可使用。这个免安装的版本极大地减少了系统资源的占用,使得开发者和管理员...

    Oracle instantclient-basic-windows.x64-11.2.0.4.0

    "Oracle instantclient-basic-windows.x64-11.2.0.4.0"是针对Windows 64位平台的Instant Client的基础版本,版本号为11.2.0.4.0,专门支持Oracle 11g数据库系统。 该压缩包主要包含以下组件和功能: 1. **oci**:...

    oracle客户端 Oracle Instant Client

    - **下载**:首先,你需要从Oracle官方网站下载适用于你的操作系统的Instant Client版本,例如在本例中是`instantclient-basic-windows.x64-11.2.0.4.0`。 - **解压**:将下载的压缩包解压到一个合适的目录,通常...

    oracle instantclient-odbc-win32-10.2.0.5.zip

    在"oracle instantclient-odbc-win32-10.2.0.5.zip"这个压缩包中,包含的是Windows 32位版本的Oracle Instant Client ODBC驱动程序,版本号为10.2.0.5。ODBC(Open Database Connectivity)是一种标准的应用程序编程...

    Oracle Instant Client_12_1 Downloads

    Oracle Instant Client_12_1 Downloads 有效解决oracle library is not loaded的问题 有效解决ORA-28547:connection to server failed,probable Oracle Net admin error的问题

    oracle instant client

    - `instantclient_11_2`:这表示是Oracle Instant Client的11.2版本。这个版本可能包含了基本的连接库、SQL*Plus命令行工具、OCI(Oracle Call Interface)库以及其他的实用工具。 2. **Oracle OCI (Oracle Call ...

    Oracle Instant Client 64位,win7,win10可用

    *********重要********** OracleXEClient64位:Oracle Instant Client__V11.2.0.3.0__64bit.exe OracleXEClient64位安装时,右键选"以兼容方式运行WindowsXP,以管理员身份运行此程序

    oracle instantclient

    Oracle InstantClient是Oracle公司提供的一款轻量级的数据库连接工具,它允许用户在不安装完整Oracle客户端的情况下,与Oracle数据库进行交互。这个压缩包文件" instantclient-basic-nt-12.1.0.1.0.zip "是适用于...

    Oracle instantclient连接数据库服务器

    - **Oracle Home**:在 PL/SQL Developer 或其他 Oracle 工具中设置 Oracle Home 的路径,此处为 `C:\instantclient`。 - **OCI Library**:指定 OCI(Oracle Call Interface)库文件的位置,即 `C:\instantclient\...

    Oracle instantclient_11_2(含oci.dll和sqlplus)

    1. 下载并解压Oracle Instant Client压缩包,包括instantclient_11_2文件夹。 2. 设置环境变量,确保系统能找到oci.dll和其他必要库文件。例如,在Windows上,可以添加instantclient_11_2目录到PATH环境变量。 3. ...

    Navicat连Oracle插件instantclient_18_5.zip

    "instantclient_18_5.zip"是一个包含Oracle Instant Client 18.5版本的压缩包,这个版本对应的是Oracle Database 18c的客户端。它包含了运行Oracle应用程序所需的基本库文件,如oci.dll,以及其他的SQL*Plus、...

    oracle instantclient 12_1 odbc

    在这个特定的"oracle instantclient 12_1 odbc"版本中,我们主要关注的是ODBC(Open Database Connectivity)组件,这是一种用于在不同操作系统和编程语言之间提供数据库访问标准的接口。以下是对这个主题的详细解释...

Global site tag (gtag.js) - Google Analytics