SQL Loader part of Oracle Client? Seperate install,licensing

I use Oracle SQL Loader on one of my network machines.
The second does not have the SQLLDR.exe in the /bin directory.
First, can I install this component seperately and secondly
what are the licensing implications ?
Thanks

Assuming you are referring to client installation, the other machine where the SQLLDR.EXE is missing seems to be a "runtime" client installation. Oracle client is a free download so there should be no implications for installing an administrator type install on this machine.
If this is not the case, then you should be talking to the sales person about knowing the implications.

Similar Messages

  • Attempt to load Oracle client libraries threw BadImageFormatException. This problem will occur when running in 64 bit mode with the 32 bit Oracle client components installed.

    Hello guys,
                Problem has been solved -
    Attempt to load Oracle client libraries threw BadImageFormatException. This problem will occur when running in 64 bit mode with the 32 bit Oracle client components installed.
    1. If you install 64 bit oracle this is not an issue. Install 64 bit oracle.
    2. Download odp.net 32 bit  from below link:-
        ODP.NET Managed Driver Beta Download</title><meta name="Title" content="ODP.NET Managed Driver B…
    3. installed the odp.net.
    4. open the visual studio 2010.
    5.Select new - project - asp.net web application - project name -ok
    6.select tools- > connect to database- then follow the following steps
                             i>  user name - your user name/client username (example -- hr)
                             ii> password -- enter your password/client password  (example- hr)
                            iii>select connection type -- if you want to connect client database then- select EZ connect other wise select tns
                            iv>test the connection- then you will get connection succeed.
                            v> then click ok
    Thanks
    Chandrashekhar

    You do not need to do anything in VS.  You do need to configure both tnsnames.ora files, because the drivers do not share any data.
    Please see:
    http://sqlblog.com/blogs/jorg_klein/archive/2011/06/09/ssis-connect-to-oracle-on-a-64-bit-machine.aspx

  • This problem will occur when running in 64 bit mode with the 32 bit Oracle client components installed.

    hi friends ,
    My report Fetch from the orcle database , we installed Oracle 10g and 11g - clent 32 -bit on win 2k8 -64 bit machine .while design time runing fine,but ofter depolyement im facing below issue.
    In error has occurred during report processing. (rsProcessingAborted)
    The execution failed for the shared data set 'abc'. (rsDataSetExecutionError)
    Cannot create a connection to data source ' Data source for shared dataset'. (rsErrorOpeningConnection)
    Attempt to load Oracle client libraries threw BadImageFormatException. This problem will occur when running in 64 bit mode with the 32 bit Oracle client components installed.
    An attempt was made to load a program with an incorrect format. (Exception from HRESULT: 0x8007000B)
      Any help is greatly appreciated, I have tried couple of solutions going through some threads online but no use and place dt tell install 1og r 11g 64-bit

    Hi,
    Based on the error message, we should confirm whether Oracle client tool has been installed on the Report Server at the beginning. If the Report Server installed is 64-bit, we should also install a 64-bit Oracle client tool on the Report Server. Besides, we
    can also try to bypass tnsnames.ora file when connecting to Oracle by specifying all the information in the data source instead of using the TNS alias to connect
    to the Oracle database. Please see the sample below:
    Data Source=(DESCRIPTION=(CID=GTU_APP)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST= server01.mydomain.com)(PORT=1521)))(CONNECT_DATA=(SID=OracleDB)(SERVER=DEDICATED)));
    Reference:http://blogs.msdn.com/b/dataaccesstechnologies/archive/2010/06/30/ora-12154-tns-could-not-resolve-the-connect-identifier-specified-error-while-creating-a-linked-server-to-oracle.aspx
    Hope this helps.
    Regards,
    Heidi Duan
    Heidi Duan
    TechNet Community Support

  • Help in calling sql loader and an oracle procedure in a script

    Hi Guru's
    please help me in writing an unix script which will call sql loader and also an oracle procedure..
    i wrote an script which is as follows.
    !/bin/sh
    clear
    #export ORACLE_SID='HOBS2'
    sqlldr USERID=load/ps94mfo16 CONTROL=test_nica.ctl LOG=test_nica.log
    retcode=`echo $?`
    case "$retcode" in
    0) echo "SQL*Loader execution successful" ;;
    1) echo "SQL*Loader execution exited with EX_FAIL, see logfile" ;;
    2) echo "SQL*Loader execution exited with EX_WARN, see logfile" ;;
    3) echo "SQL*Loader execution encountered a fatal error" ;;
    *) echo "unknown return code";;
    esac
    sqlplus USERID=load/ps94mfo16 << EOF
    EXEC DO_TEST_SHELL_SCRIPT
    it is loading the data in to an oracle table
    but the procedure is not executed..
    any valuable suggestion is highly appriciated..
    Cheers

    multiple duplicate threads:
    to call an oracle procedure and sql loader in an unix script
    Re: Can some one help he sql loader issue.

  • Installing 10.2.0.1 Oracle Client after installing XE

    Hi all,
    I have a oracle XE installed on a enterprise linux.
    Now, i wanted to install the10.2.0.1 oracle client in the same system but i get the following error when installing with oracle universal installer 10.2.0.1:
    OUI-10133:Invalid staging area. There are no top level components for Linux for installation in this staging area.
    I tried with:
    ORACLE_BASE=/usr/lib/oracle and group name = dba (from XE installation)
    and with:
    ORACLE_BASE=/oracle and group name = oinstall (suggested in 10g client manual)
    but i get the same error.
    Can anyone tell me what's the problem?
    Thanks,
    Celio

    It sounds as if the products.jar (or similar) is missing from the stage directory on your installation disk.

  • Oracle client version :installed

    In my system services ,the oracle client shown is OracleOraHome817ClientCache.
    But in my Add or Remove Programs , it shows Oracle 10g InstantClient 10.2.0.3 installed as well.
    so can I confim that my Oracle client is Oracle 8i, since my system services show Oracle 8i.
    Thanks ,
    Arc

    It is possible to have many Oracle products installed on the same server. Just because you saw a service with client in the name and under add/remove programs something else doesn't mean anything. Which client should you/your application be using? Also, which client do you want to use by default? In that case whatever the home selector has selected first is the default client installed.

  • SQL*LOADER filter in Oracle 10g

    Hi,
    I need to load data from file into TABLE T1 using sql*loader but I must apply a filter in this way
    data file : 2 fields A and B
    Filter :
    A must verify: when exists (select 1 from T2 where T2.f1 = A)
    B must verify: when exists (select 1 from T2 where T2.f2 = B)
    A record must be rejected if one of these two roles doesn't OK.
    Do you have an idea please?
    Thx

    External table gives you the ability to query your files as you query your table.
    They are a much far better and flexible than SQL Loader.
    Read this
    http://www.orafaq.com/node/848
    Edited by: Karthick_Arp on Apr 6, 2009 5:57 AM

  • Using clob in sql loader utility in oracle 9i

    Hi,
    I want to load data into a table with 2 clob columns using a sql loader utility dat file and control file created programatically.
    The size of clob in dat file can change and the clob columns are inline in data file.
    As per 9i doc the size of clob is 4GB .
    How can I change the control file so that it can load max 4 GB data in clob columns .
    I am getting error while calling sqlldr using below control file :
    SQL*Loader-350: Syntax error at line 13.
    Expecting non-negative integer, found "-294967296".
    ,"NARRATIVE" char(4000000000)
    ^
    control file :
    LOAD DATA
    INFILE '' "str X'3C213E0A'"
    APPEND INTO TABLE PSD_TERM
    FIELDS TERMINATED BY '~^'
    TRAILING NULLCOLS
    "PSD_ID" CHAR(16) NULLIF ("PSD_ID"=BLANKS)
    ,"PSD_SERIAL_NUM" CHAR(4) NULLIF ("PSD_SERIAL_NUM"=BLANKS)
    ,"PSD_TERM_COD" CHAR(4) NULLIF ("PSD_TERM_COD"=BLANKS)
    ,"PSD_TERM_SER_NO" CHAR(4) NULLIF ("PSD_TERM_SER_NO"=BLANKS)
    ,"VERSION_DT" DATE "DD-MON-YYYY HH:MI:SS AM" NULLIF ("VERSION_DT"=BLANKS)
    ,"LATEST_VERSION" CHAR(1) NULLIF ("LATEST_VERSION"=BLANKS)
    ,"NARRATIVE" char(4000000000)
    ,"PARTITION_DT" DATE "DD-MON-YYYY HH:MI:SS AM" NULLIF ("PARTITION_DT"=BLANKS)
    ,"NARRATIVE_UNEXPANDED" char(4000000000)
    )

    Yes, you can do it. Create the sequence (suppose you call it "PK_SEQ_X") and then in your control file reference it as "PK_SEQ_X.NEXTVAL". For example suppose you wanted to put it into a column named 'Y' the entry in your control file will look like 'load data insert into table Z (Y "PK_SEQ_X.NEXTVAL", ....)'
    Note that the double quotes around the sequence name are required.

  • Oracle Client 10g XE licensing inconsistencies

    Oracle Client XE downloads require to accept "OTN License Agreement for Oracle Database Express Edition"
    http://www.oracle.com/technetwork/licenses/xe-license-152020.html
    but debain package oracle-xe-client_10.2.0.1-1.0_i386.deb contains different license in the file
    /usr/share/doc/oracle-xe-client/copyright
    This licenses do not match and the former states:
    "BETA TRIAL LICENSE: ...provided to you by Oracle solely for evaluation purposes until January 31, 2006"
    Does it effectively means that Oracle Client 10g XE cannot be legaly used at all?

    OTN uses the same license for both client and server download. See
    http://www.oracle.com/technetwork/database/express-edition/downloads/102xelinsoft-102048.html
    In my question I asked only about license inconsistencies on client software available as oracle-xe-client_10.2.0.1-1.0_i386.deb. I did not check if oracle-xe_10.2.0.1-1.0_i386.deb or oracle-xe-universal_10.2.0.1-1.0_i386.deb have the same sort of license inconsistencies, because I am currently not interested in XE database server.

  • Oracle connection from remote server where oracle client is installed not happening.

    Hi  ,
    I am facing problem today , that i am not able to reach oracle DB from other machine where i have installed Oracle clinet few months ago. Same was heppeing till yesterday.
    OS: Windows
    Version: 11G
    Oracle DB TNS:
    # tnsnames.ora Network Configuration File: C:\app\oracluadmin\product\11.2.0\dbhome_1\NETWORK\ADMIN\tnsnames.ora
    # Generated by Oracle configuration tools.
    DFCCDB =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = 10.199.4.130)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = dfccdb.dfcc.co.in)
    ORACLR_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
        (CONNECT_DATA =
          (SID = CLRExtProc)
    Output from DB server:
    C:\Users\oracluadmin>tnsping DFCCDB
    TNS Ping Utility for 64-bit Windows: Version 11.2.0.3.0 - Production on 28-JAN-2014 14:51:22
    Copyright (c) 1997, 2011, Oracle.  All rights reserved.
    Used parameter files:
    C:\app\oracluadmin\product\11.2.0\dbhome_1\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 10.199.4.130)(PORT = 1521))) (CONNECT_DATA = (SERVER
    = DEDICATED) (SERVICE_NAME = dfccdb.dfcc.co.in)))
    OK (0 msec)
    C:\Users\oracluadmin>sqlplus SYS AS SYSDBA@DFCCDB
    SQL*Plus: Release 11.2.0.3.0 Production on Tue Jan 28 14:56:15 2014
    Copyright (c) 1982, 2011, Oracle.  All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL>
    Clinet server TNS:
    DFCCDB =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = 10.199.4.130)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = dfccdb.dfcc.co.in)
    Output from client server:
    C:\Users\gisadmin>tnsping DFCCDB
    TNS Ping Utility for 64-bit Windows: Version 11.2.0.1.0 - Production on 28-JAN
    014 15:06:18
    Copyright (c) 1997, 2010, Oracle.  All rights reserved.
    Used parameter files:
    C:\app\gisadmin\product\11.2.0\client_1\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TC
    (HOST = 10.199.4.130)(PORT = 1521))) (CONNECT_DATA = (SERVICE_NAME = dfccdb.df
    .co.in)))
    OK (10 msec)
    C:\Users\gisadmin>sqlplus SYS AS SYSDBA@DFCCDB
    SQL*Plus: Release 11.2.0.1.0 Production on Tue Jan 28 15:06:36 2014
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Enter password:
    ERROR:
    ORA-12560: TNS:protocol adapter error
    Enter user-name:
    Thnaks....

    Hi,
    Refer the logs:
    <msg time='2014-02-11T10:43:10.455+05:30' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='DFCC-GISDB-01'
    host_addr='10.199.4.58'>
    <txt>11-FEB-2014 10:43:10 * (CONNECT_DATA=(SERVICE_NAME=dfccdb.dfcc.co.in)(CID=(PROGRAM=C:\app\gisadmin\product\11.2.0\client_1\bin\sqlplus.exe)(HOST=DFCC-GISAPP-01)(USER=gisadmin))) * (ADDRESS=(PROTOCOL=tcp)(HOST=10.199.4.55)(PORT=25229)) * establish * dfccdb.dfcc.co.in * 12514
    </txt>
    </msg>
    <msg time='2014-02-11T10:43:10.455+05:30' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='DFCC-GISDB-01'
    host_addr='10.199.4.58'>
    <txt>TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    </txt>
    </msg>
    <msg time='2014-02-11T10:43:58.706+05:30' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='DFCC-GISDB-01'
    host_addr='10.199.4.58'>
    <txt>11-FEB-2014 10:43:58 * (CONNECT_DATA=(SERVICE_NAME=dfccdb.dfcc.co.in)(CID=(PROGRAM=C:\app\gisadmin\product\11.2.0\client_1\bin\sqlplus.exe)(HOST=DFCC-GISAPP-01)(USER=gisadmin))) * (ADDRESS=(PROTOCOL=tcp)(HOST=10.199.4.55)(PORT=25230)) * establish * dfccdb.dfcc.co.in * 12514
    </txt>
    </msg>
    <msg time='2014-02-11T10:43:58.722+05:30' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='DFCC-GISDB-01'
    host_addr='10.199.4.58'>
    <txt>TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    </txt>
    </msg>
    <msg time='2014-02-11T10:44:33.120+05:30' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='DFCC-GISDB-01'
    host_addr='10.199.4.58'>
    <txt>11-FEB-2014 10:44:33 * (CONNECT_DATA=(SERVICE_NAME=dfccdb.dfcc.co.in)(CID=(PROGRAM=C:\app\gisadmin\product\11.2.0\client_1\bin\sqlplus.exe)(HOST=DFCC-GISAPP-01)(USER=gisadmin))) * (ADDRESS=(PROTOCOL=tcp)(HOST=10.199.4.55)(PORT=25231)) * establish * dfccdb.dfcc.co.in * 12514
    </txt>
    </msg>
    <msg time='2014-02-11T10:44:33.136+05:30' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='DFCC-GISDB-01'
    host_addr='10.199.4.58'>
    <txt>TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    </txt>
    </msg>
    <msg time='2014-02-11T10:45:24.662+05:30' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='DFCC-GISDB-01'
    host_addr='10.199.4.58'>
    <txt>11-FEB-2014 10:45:24 * (CONNECT_DATA=(SERVICE_NAME=dfccdb.dfcc.co.in)(CID=(PROGRAM=C:\app\gisadmin\product\11.2.0\client_1\bin\sqlplus.exe)(HOST=DFCC-GISAPP-01)(USER=gisadmin))) * (ADDRESS=(PROTOCOL=tcp)(HOST=10.199.4.55)(PORT=25280)) * establish * dfccdb.dfcc.co.in * 12514
    </txt>
    </msg>
    <msg time='2014-02-11T10:45:24.662+05:30' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='DFCC-GISDB-01'
    host_addr='10.199.4.58'>
    <txt>TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    </txt>
    </msg>
    <msg time='2014-02-11T10:48:00.819+05:30' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='DFCC-GISDB-01'
    host_addr='10.199.4.58'>
    <txt>11-FEB-2014 10:48:00 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=oracluadmin))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=186647296)) * status * 0
    </txt>
    </msg>
    <msg time='2014-02-11T10:48:14.547+05:30' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='DFCC-GISDB-01'
    host_addr='10.199.4.58'>
    txt>11-FEB-2014 10:48:14 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=oracluadmin))(COMMAND=services)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=186647296)) * services * 0
    </txt>
    </msg>

  • Which Oracle Client to install with BO XI4

    Hello,
    To install BO on Oracle , we should have the Oracle DB installed with the client.
    But  Which option should i choose from instant client, administrator,runtime or Custom.
    I already installed the Instant client and BO XI 4 SP2 Patch 8, if another client has to be insatlled, can i do it after te BO insatalltion or should i start from the begining?
    Regards,
    Hassan

    Hi,
    i always used the runtime installer. In XI 3.1 the instant client wasnt sufficient enough. Did you used the instant client also for the connection to the CMS and Audit DB oder did you used the shipped DB?
    Maybe they changed it in BI4 and the instant client is enough. But to be 100% safe i would use the runtime.
    Regards
    -Seb.

  • 10G data pumps / sql loader

    When data is moved by data pumps / sql loader,
    is the change enter into redo ?
    Thanks eric

    Where can I find Oracle client for 10g (or earlier)? Look at the upper left corner of this page (there is red image "Download Oracle Software")...
    Is SQL*Loader part of Oracle client? Yes it is.

  • Installing Oracle SQL loader in Oracel Client

    Hi
    Our Customer does not have SQL Loader in Oracle client
    I want to add Oracle SQL loader to the Oracle Client.
    Is there any solution other than uninstalling the present oracle client and
    re-installing the oracle client with SQL loader
    Regards
    Kandakuru

    Thanks a lot Kristian
    I will try with the oracle universal installer
    Regards
    Kandakuru

  • Adding sql loader into 11g Client already installed

    I have already installed Oracle 11g client and need to add in sql loader. How is that best accomplished?

    Easier than I thought. Just go back into the previous oracle client home install and the preinstalled items will be greyed out. Just add additional components you want to install.

  • Dumb question re Sql Loader in XP Client

    Hi all,
    I have a rather silly question. Previously I've worked exclusively in a Unix environment, but now find myself in XP.
    I've done the full install of the Windows client for XP, but SQL*Loader is missing. I've RTFM'd, but can't find the necessary section. How do I get sql*loader installed in the XP environment?
    Thanks (and apologies) in advance

    IF you are talking of the 9i version, there should be the three database install disks (that contain both the database and the client tools). When you run the installer from the first disk from this set, you will have the option of installing the client tools (including SQL*Loader).
    http://www.oracle.com/technology/software/products/database/oracle10g/index.html
    http://www.oracle.com/technology/software/products/oracle9i/htdocs/winsoft.html

Maybe you are looking for

  • Excise tab is not coming in MIGO

    Dear All ,                                  pl help that as user is trying to do G.R wrt inb. delv , let me brief out user had made a qty contract with an import vendor itis having two line items , now an Rel order ( material ) is created wrt this qt

  • Sales report on last 6motns and 3 months

    Hi, Can any one guide me on this issue . user wants current year sales, last year sales,last6monts,last3months data required .Can any one guide me on this . Regards Rk

  • After update to 10.1.3 the menus can't open normally and printing is not possibe

    Hello, Does anyone recognise this problem and can help me ? After the update to 10.1.3 I the menus open fuzzy. So I can still read the pdf , but when I push the print button, the printscreen gets fuzzy and I cant continue. This also happens when I tr

  • Problem using insert statement....?

    I am facing problem while using insert statement. It is not updating the database table though the same code is working very well on another server. Please tell what could be the problem.......?

  • OVD 11.1.1.7 pagination query

    Hi All, I'm working on OVD 11.1.1.7 implementation for a customer. I've used LSA adapter to provide unified view of two AD adapters underneath. The requirement is to authenticate client specific applications against OVD for login/logout purposes. The