ICode9

精准搜索请尝试: 精确搜索
首页 > 数据库> 文章详细

Instant Client for SQL*Loader, Export, and Import

2021-07-26 14:01:36  阅读:217  来源: 互联网

标签:bin Instant Loader Client HOME% ORACLE HOME


Oracle Instant Client allows you to run your applications without installing the standard Oracle client or having an Oracle home. 

The Tools Instant Client package is available on platforms that support the OCI Instant Client.

The Tools package contains several command-line utilities, including SQL*Loader, Data Pump Export, Data Pump Import, Original (classic) Export, and Original (classic) Import.

  1. Instant client有两个版本 Basic Instant Client or Instant Client Light
  1. Basic Instant Client

Basic Instant Client works with any NLS_LANG setting supported by the Oracle Database. It supports all character sets and language settings available in the Oracle Database.

  1. Instant Client Light

The Instant Client Light (English) version of Instant Client further reduces the disk space requirements of the client installation. The size of the library has been reduced by removing error message files for languages other than English and leaving only a few supported character set definitions out of around 250.

Instant Client Light is geared toward applications that use either US7ASCII, WE8DEC, WE8ISO8859P1, WE8MSWIN1252, or a Unicode character set.

There is no restriction on the LANGUAGE and the TERRITORY fields of the NLS_LANG setting, so the Instant Client Light operates with any language and territory settings. Because only English error messages are provided with the Instant Client Light, error messages generated on the client side, such as Net connection errors, are always reported in English, even if NLS_LANG is set to a language other than AMERICAN. Error messages generated by the database side, such as syntax errors in SQL statements, are in the selected language provided the appropriate translated message files are installed in the Oracle home of the database instance.

  1. 从Oracle软件中提取Instant Client:

提取如下文件作Basic Instant Client使用:

Linux:

$ORACLE_HOME/instantclient/libociei.so

$ORACLE_HOME/lib/libnfsodm12.so

$ORACLE_HOME/bin/exp

$ORACLE_HOME/bin/imp

$ORACLE_HOME/bin/expdp

$ORACLE_HOME/bin/impdp

$ORACLE_HOME/bin/sqlldr

Windows:

%ORACLE_HOME%\instantclient\oraociei12.dll

%ORACLE_HOME%\bin\exp.exe

%ORACLE_HOME%\bin\imp.exe

%ORACLE_HOME%\bin\expdp.exe

%ORACLE_HOME%\bin\impdp.exe

%ORACLE_HOME%\bin\sqlldr.exe

提取如下文件作Light Instant Client使用:

Linux:

$ORACLE_HOME/instantclient/light/libociicus.so

$ORACLE_HOME/lib/libnfsodm12.so

$ORACLE_HOME/bin/exp

$ORACLE_HOME/bin/imp

$ORACLE_HOME/bin/expdp

$ORACLE_HOME/bin/impdp

$ORACLE_HOME/bin/sqlldr

Windows:

%ORACLE_HOME%\instantclient\light\oraociicus12.dll

%ORACLE_HOME%\bin\exp.exe

%ORACLE_HOME%\bin\imp.exe

%ORACLE_HOME%\bin\expdp.exe

%ORACLE_HOME%\bin\impdp.exe

%ORACLE_HOME%\bin\sqlldr.exe

  1. 配置Instant Client

不需要配置ORACLE_HOME or ORACLE_SID环境变量

export LD_LIBRARY_PATH=/home/instantclient12_2:${LD_LIBRARY_PATH}

export PATH=/home/instantclient12_2:${PATH}

export NLS_LANG=AMERICAN_AMERICA.UTF8

标签:bin,Instant,Loader,Client,HOME%,ORACLE,HOME
来源: https://blog.csdn.net/linsuhangoracle/article/details/119107966

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有