Studio of ODI needs Oracle Client

HI team,

11.1.1.7.0 = ODI version

I installed all ODI - Studio, autonomous agent, agent of Java EE on one machine...

And I installed only ODI Studio on the local computer and the two machines are in the same domain.

If connecting to the repository of the local computer throw error uncategorized exception to access the repository...

Sorry for the basic question...

So my doubt is ODI STUDIO customer Oracle needs... to connect to the repository?

Response would be appreciated

Thanks in advance

Prashant

mRainey

ODI. Fung Guru ODI ODI

Hi all

Solve by installing Oracle Client on the local computer and configure the connection at the base of the remote computer to the local computer.

mRainey - error is less to...

oracle.odi.core.config.MasterRepositoryResourceFailureException: ODI-10182: Uncategorized exception for access to the repository.

Could not make JDBC connection; nested exception is java.sql.SQLException: Exception occurred while getting connection: oracle.ucp.UniversalConnectionPoolException: cannot get data source connection: java.sql.SQLRecoverableException: IO error: the network adapter could not establish the connection


So my approach is right to access the remote repository... ?? so that I can closed these forums...

Thanks and greetings

Prashant Reddy


Tags: Business Intelligence

Similar Questions

  • Oracle Developer Tools for Visual Studio needs an Oracle Client for the Windows Installation?

    Hi everyone, I need to know if Oracle Developer Tools for Visual Studio is in need of a customer Oracle for Windows installed

    Thanks for your time

    Yes, you have the Oracle Client. However, you don't need to install the Oracle Client separately. ODT automatically includes the Oracle customer in each ODAC installation.

    The next version of the ODAC have an ODT version that uses ODP.NET, successful pilot. This version is not longer an Oracle Client.

  • EA4 - need to 32 or 64-bit Oracle client

    Running Windows 7 on 64-bit hardware.  SQLD 3.x, we were 32-bit version of SQL and Oracle client.  Need the 64-bit version of the EA4 64-bit Oracle client?

    Bitwise to the Oracle client must match the level of the bit of the JDK.

  • Need Oracle Essbase Client 11.1.2.1.0

    Hello

    I need to install Oracle Essbase Client 11.1.2.1.0 on my system (windows 64 bit).

    I see the download links in the Oracle web site for 11.1.2.1.0, but this link does not work.

    http://download.Oracle.com/OTN/Hyperion/11121/EssbaseClients-11121.zip

    Someone could transfer this https://www.wetransfer.com/ zip to my mail: [email protected]

    Thank you, Pablo.

    It must be nice, if you need the client installation files then you will need to put in a request for media SR.

    See you soon

    John

    http://John-Goodwin.blogspot.com/

  • I need to install the Oracle client until I can use Oracle SQL Developer?

    Hi all

    I used to use the PL/SQL Developer to connect to the Oracle server, and before it can work, I have to install Oracle on my PC client.

    So I wonder to know if I use Oracle SQL Developer, what I have to do the same thing? If not, why?

    Thank you very much.

    Hello Serge,

    you don't need a client. Developer SQL uses JDBC to connect.

    Concerning
    Marcus

  • Problem ODBC Oracle client installation in Windows 2008 R2 64 bit...?

    Hi all

    I am facing a problem for ODBC drivers as I installed client Run-time Windows Server 2008 R2 64 bit. Client has successfully installed can't seem to connect to the server database using input TNS through Sql in my command prompt, but the problem is that I am not able to create all the drivers ODBC in Control Panel (ODBC Administrator) Am not able to find a driver to configure a data source.

    Using this data source, we need to connect to the database of an application.

    Could you please help me on this.

    Capture.JPG

    Best regards

    Martin Raymond Vinay

    Raymond Vinay wrote:

    Hello Stevens,

    Thanks for the reply. I installed the client 11g r2 64 bit and I tried this too much C:\Windows\SysWOW64\odbcad32.exe

    As I said, the (sysWOW64) is for the 32 bit.  You say now that you have installed 64 - bit, so that it does not apply

    but he has not found drivers. I have not found any odbc folder in the oracle client home. Could you please suggest what to do next.

    Now, we know that you have installed the 11.2 customer.  As I say, the ODBC drivers are NOT installed by default on this version.

    And if you do as I said in my last post:

    a default installation, then go back and do a "custom" installation, by specifying the same ORACLE_HOME as before and by selecting the ODBC components.

    Best regards

    Martin Raymond Vinay

    Jr. Oracle DBA

    Miracle Software Systems Inc...

  • Reg: Preloading in the Oracle client.

    Hi Experts,

    What exactly is the concept behind the 'prefetch' in the Oracle client.

    My understanding - is the number of records retrieves customer data base and throws it to the user.

    Read a few posts on AskTom

    1. https://asktom.oracle.com/pls/asktom/f?p=100:11:0:P11_QUESTION_ID:6840389700346552727

    2. https://asktom.oracle.com/pls/apex/f?p=100:11:0:P11_QUESTION_ID:429660240587

    But still I got some doubts-

    1. you want to understand the concept in detail as network round trips, data packets, etc.

    2. a scenraio - say my query will generate 158 K records, and I put my line Prefetch = 3500 to my client. It will be really beneficial? The customer while recovery displays the current state as "go get... records of 2002...". 3003, 4004... etc.

    Why get it 1,000 records, while I put the 3500.

    Please notify.

    Thank you and best regards,

    -Nordine

    (on Oracle 11.2.0.3.0 / SQL client Tools)

    Imagine the most stupid possible implementation (in a perspective of network traffic)

    The client sends a request to the database (1 trip)

    The client then requests the first line

    Oracle executes the request well enough to find the first line, which returns to the client (1 trip)

    The client then requests the following line

    Oracle executes the request well enough to find the first line, which returns to the client (1 trip)

    ---

    Repeat 158 000 times, until the last line is read

    As a round trip network is, in the best cases, the order of 10 milliseconds, it would mean that 158 000 back and forth network would consume seconds 1580 or about 26 minutes just networking air before adding in time for Oracle to generate results or the customer to do something with the results.

    Table extraction generally reduced this problem by allowing the client to fetch more than 1 row with each round trip.  If you pick 100 lines at once, you have need of round-trips of 1580, which would take 15.8 seconds in our environment of hypothetical return of 10ms.  If you get 1000 rows at a time, you have 158 network trips that would take 1.58 seconds.  But, of course, is not really as simple as that.  Network packets are not arbitrarily size so the lines you are great and go look for these lines, the packages more you exchange which makes extraction individual times more.  This means that network fetch load reduction is almost certainly less linear on a reasonable range of fetch sizes - maybe the example of 100 line passes 30 seconds on fetch of network load and the sample line of 1000 passes 10 seconds.  As with anything, you want to compare in your environment with your data to see where your application gets the best performance.

    As for what the customer is displayed, it is a question for the customer.  I guess the customer is written to view independent progress of the fetch size.

    Justin

  • Operating system Windows 8 + applications demanding 32-bit oracle client

    Hello

    We are trying to install 32-bit oracle client on Windows 8 opertaing system

    11.2.0.1

    Completing successfully on Windows 7 but Windows 8 says does not meet requirements minimum environemnet.

    We have a 32-bit appliactuion that requires the oracle client

    When we tried the oracle client 64-bit on the onne of Windows 7, application did not work then henec the 32-bit oracle client allowing enforcement ro work O.K.

    Problem is that we have this application works in Windows 8 environment.

    Any thoughts if can use 32-bit oracle client on Windows and if so where can I download it from?

    Thank you

    We are trying to install 32-bit oracle client on Windows 8 opertaing system

    11.2.0.1

    Not a combination of support or certification. You will need client 11.2.0.4 or 12cR1 - see the certification MOS of the pl tab.

    HTH
    Srini

  • create the database with Oracle Client link

    Hello together,

    on my machine Windows 7 with Oracle Client installed 12.0.1.0, I'm trying to create a database link to a database server, which runs on Oracle Standard Edition1 11.2.0.2.

    When I connect to sqlplus on the client with "sqlplus/nolog" and type the command:

    SQL > create SID of the database link

    connect to the user identified by passwd

    using "tnsnames.ora connection."

    I have a SP2-0640: not connected. OK, it is clear, because I use sqlplus with option/nolog. But client-side normally I have no database, where I can connect. So I think, there is no user, or?

    The database to which I want to connect is located in tnsnames.ora.

    Generally: Is it possible to use the Oracle Client to create a database link? Maybe there's another way to do this?

    A big thank you and best regards,

    David

    You don't seem to understand the concept of a database link.

    A database link connects two databases. Not a client and a database.

    You need to link up in a data source to a target database.

    The only thing you need is a client of sqlplus in sqlplus client, you need to connect to the source database.

    If you can't connect to the source database, you must present the statement to someone.

    Sybrand Bakker

    Senior Oracle DBA

  • Oracle Client (ODBC or OLEDB)

    After installing vcloud Request Manager, connect to the Oracle database does not work in the application. I installed an Oracle11G 32-bit instant client and my ODBC DSN is configured and works. However, vCloud Request Manager still not connect to the database.

    Here are my questions:

    VCloud Request Manager, that database of protocols serve actually to connect to the Oracle database? ODBC or OLE DB

    Based on the error messages I've seen, it seems that vCloud Request Manager does not use my 32-bit ODBC DSN to connect to the Oracle database. Any thoughts?

    I can't say that this method has been tested. In theory, as long as the prerequisites are there then it should be ok. The full oracle client can be downloaded from Oracle that contains need it parts and is selected by using the custom option on the initial pages of the installation.

    Oracle Database 11 g Release 2 (11.2.0.1.0) Client for Microsoft Windows (32-bit)

    http://www.Oracle.com/technetwork/database/Enterprise-Edition/downloads/112010-win32soft-098987.html

    Oracle Database 11 g Release 1 (11.1.0.7.0) Client for Microsoft Windows Server 2008 (32-bit)

    http://www.Oracle.com/technetwork/database/Enterprise-Edition/downloads/111070-Win32-2008soft-087263.html

    Oracle Database 10g Client Release 2 (10.2.0.3)

    http://www.Oracle.com/technetwork/database/10203vista-087538.html

    Note: you will need to be patched to 10.2.0.4

    These links are located under the Oracle database software download Section

    http://www.Oracle.com/technetwork/database/Enterprise-Edition/downloads/index.html

  • Required for the Installation of Essbase Oracle client

    Hello

    I installed Essbase server and server EAS with the services of the Foundation in a Windows Machine.

    My RDBMS (Oracle) is installed on a different Machine.

    Do I need to install the Oracle client on my machine Essbase to configure with the RDBMS? or installation of the customer Oracle is not necessary to configure with RDBMS?


    Thank you.

    You don't need the Oracle client if you want to set up the database of the foundation she uses JDBC drivers that are included in the installation of the Foundation.
    The Oracle client is useful if you want to configure the ODBC Oracle connections to be used with loads of SQL essbase data.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Best Universal Oracle Client

    Hi friends,

    We have different versions of databases 9i, 10g, 11g, etc. on unix and windows servers.

    I want to install on my computer laptop oracle client that accesses all oracle databases. Is - this client 11g? or client 10g?
    I read something before that customer 10g is more stable and compatible with all versions to 11g?
    It is still true today?

    Thank you very much

    MsK

    Can be a little more specific on the release of accurate database that you are using? There is quite a difference between a non patched 9.0.1 database and a 9.2.0.8 fully patched database when it comes to compatibility of the client.

    MetaLink 207303.1 is the Client / Server compatibility matrix.

    A customer 11.2 is compatible with a 11.2, 11.1, 10.2.0.2 or group of later patches and a 9.2.0.4 or highest group of hotfixes. It is not compatible with a 10.1 database
    A 10.2 client is compatible with a 11.2, 11.1, 10.2, 10.1, or 9.2.0.4 or higher fixes group

    If you need to connect to a 9.0.1 are, you would need to go all the way back to 9.2 (10.1) client that is no longer available on OTN.

    Justin

  • Is it possible to install several Oracle client (versions) on windows 7?

    Hey,.

    Is it possible to install several Oracle client (versions) on development sharepoint2010 servers?

    If so - what are the conditions or precautions take?

    Please through your thoughts?

    Thanks in advance!

    You should be able to. They will have separate directories.

    On the top of my head... the only thing I can think can be a problem, that is your tnsnames.ora file. You will need to make sure that your environment variables are configured to use the $OH/network/admin/tnsnames.ora you want to keep.

    You could probably set TNS_ADMIN to point to the desired directory...

  • The Oracle Client installation

    Hello

    I need to install 10.2.0.4 Oracle client on a Windows Server. However, I have the basic version customer oracle 10.2.0.1.

    It comes to a customer's requirement. I can download the patch 10.2. 0.4 of metalink for customer install.

    Yes, you will need to download the pach defined for the server of Oracle database that you can also use to upgrade the Oracle database Client.

  • Question about silent install Oracle client

    I created a perl file to do the installation in silent mode and everything works great. At the start of the installation window YES happens (as a type of deal dos mode). Users have nothing to do, as the response file takes care of it, but they do not like the YES (go figure). Can someone tell me which option need me to hide it?


    RESPONSEFILE_VERSION = 2.2.1.0.0

    UNIX_GROUP_NAME =""

    FROM_LOCATION="\\chwiris1\Applications\Oracle\#ORACLE10\Client\10.1.0.x_clients\Disk1\stage\products. XML ".

    FROM_LOCATION_CD_LABEL = < unspecified value >

    ORACLE_HOME = "C:\Oracle\PS_HOME."

    ORACLE_HOME_NAME = "PS_HOME".

    TOPLEVEL_COMPONENT = {"Oracle.client", "10.1.0.2.0"}

    SHOW_SPLASH_SCREEN = false

    SHOW_WELCOME_PAGE = false

    SHOW_CUSTOM_TREE_PAGE = false

    SHOW_COMPONENT_LOCATIONS_PAGE = false

    SHOW_SUMMARY_PAGE = false

    SHOW_RELEASE_NOTES = false

    SHOW_EXIT_CONFIRMATION = false

    SHOW_DEINSTALL_CONFIRMATION = false

    SHOW_DEINSTALL_PROGRESS = false

    SHOW_INSTALL_PROGRESS_PAGE = false

    SHOW_REQUIRED_CONFIG_TOOL_PAGE = false

    SHOW_OPTIONAL_CONFIG_TOOL_PAGE = false

    SHOW_CONFIG_TOOL_PAGE = false

    SHOW_RELEASE_NOTES = false

    SHOW_ROOTSH_CONFIRMATION = false

    SHOW_END_SESSION_PAGE = false

    SHOW_EXIT_CONFIRMATION = true

    NEXT_SESSION = false

    NEXT_SESSION_ON_FAIL = false

    NEXT_SESSION_RESPONSE = < unspecified value >

    DEINSTALL_LIST = {"Oracle.client", "10.1.0.2.0"}

    SHOW_DEINSTALL_CONFIRMATION = false

    SHOW_DEINSTALL_PROGRESS = false

    ACCEPT_LICENSE_AGREEMENT = true

    SELECTED_LANGUAGES = {"en"}

    INSTALL_TYPE = "Custom".

    oracle.client:DEPENDENCY_LIST={"oracle.networking.netcltprod:10.1.0.2.0","oracle.utilities.util:10.1.0.2.0","oracle.rdbms.sqlplus:10.1.0.2.0","oracle.java.jdbc:10.1.0.2.0","oracle.winprod:10.1.0.2.0","oracle.swd.opatch:10.1.0.2.0"}

    Oracle.Winprod:DEPENDENCY_LIST = {"Oracle.P2K.oo4o:10.1.0.5.0", "Oracle.P2K.ODBC:10.1.0.2.0", "Oracle.P2K.OleDb:10.1.0.2.0", "' Oracle.P2K.ODP .net: 10.1.0.2.0" "}

    Oracle.Networking.netca:OPTIONAL_CONFIG_TOOLS = "{}".

    Oracle.options.OPS.VIPCA:OPTIONAL_CONFIG_TOOLS = "{}".

    Oracle.options.OPS.csscommon:OPTIONAL_CONFIG_TOOLS = "{}".

    s_recodHTTPPort = < indeterminate value >

    We used perl to automate on Unix environment and "-silent" worked. There are other options as I show '-nobackground ' and '-noconsole ". You might want to try.

    I also see that you have SHOW_EXIT_CONFIRMATION = true. Your users are invited to the exit at the end of installation screen?

Maybe you are looking for

  • Restoration of a backup profile emails

    I keep all my emails deleted in a folder called 'deleted items '. I use an IMAP server. Somehow, I lost all my emails deleted for the period 01/04/2015 - 17/07/2015. However, I made a backup of my profile TB on 7/2 for most of the emails should be in

  • Satellite P50T-A-119 - screen does not work and recovery never ends

    Hello I have a Satellite P50t-A-119The built-in screen no longer works: The Toshiba leading innovation splash screen * never * appears on the * built-in screen *. On a * connected external VGA-display * I see the following type of screens (if the mac

  • NVIDIA Geforce4 420 go drivers graphics

    Whenever I try to play Half life 2, I get the message to update my graphics driver. Ive gone to the Nvidia download page, and they lead me to the Toshibas website. However I still can't get further Ive got a Nvidia Geforce4 420 go card and am running

  • Why used my music come through my new speakers?

    Ive just installed windows 7 again and since doing so my music won't play in my speakers more.

  • Paid app do not downloading...

    Hi guyz... Am in troble here, A customer bought one of my app & he made the payment once, but ddnt app uploaded to the device, and when he tries to download it, its request to make the payment again... No idea what exactlly happening here? Thank you