Oracle 11g or higher client is not installed or not set to Primary Oracle..

Hi all,
I have installed oracle 11g client on my machine. It connecting fine with the server throuhg sqlplus but when i connect my application that is developed in power builder, it prompts an errror message stated 'Oracle 11g or higher client is not installed or not set to Primary Oracle Home'. I have tried different solutions from different posts over the internet but colud not get fruitfull results.
Please help me out in this regard to continue...
Thanks & Regards,
Adil Mukhtar

As already said, this looks like a powerbuilder issue, related to how it "finds" Oracle client/oci libraries.
Assuming this is on Windows, you could use Process Monitor from Sysinternals to watch what your app does (e.g. where it looks for dll's). It's a great troubleshooting tool: http://technet.microsoft.com/en-us/sysinternals/bb896645
Google provides some results with similar issues. Maybe you have tried most of it already, but at least as a reference for others: http://lmgtfy.com/?q=powerbuilder+%22oracle11g+or+higher+client+is+not+installed%22

Similar Messages

  • Install oracle 11g r2 on client

    HI Folks, please specify a good link to install oracle 11g r2 on client machine on windows xp
    and also steps how to install
    Thanks in advance
    Edited by: newbie on Feb 14, 2011 9:20 PM

    The correct place for such question is {forum:id=64}

  • Steps to UnInstall Oracle 11g 32 bit Client

    Hi ,
    I want to Uninstall the Oracle 11g 32 bit client from my server.
    Please provide the step by step instruction in order to uninstall the oracle 11g 32 bit client completely.
    Thanks
    Sambit

    Pl post exact OS details and exact 11g version.
    Uninstall steps are documented - for example - http://docs.oracle.com/cd/E11882_01/install.112/e24322/remove_oracle_sw.htm
    HTH
    Srini

  • HT204088 I installed iphone 5 from iTunes backup but still have one app showing [ ! ] not installed can not find file . How do I get rid of this pop up

    I installed iphone 5 from itunes back up and get a pop up [ ! ] app not installed can not find file. I have looked through everything that have with "CANADA" in the app title. That is the only info there is.

    If you haven't found out which app it is then if you go into list view in the Apps part of your library do any of the apps have an exclamantion mark against them ? If they do then they are the one(s) that iTunes can't find the actual app file(s) for - if you delete that app from your library then if it is still in then you should be able to re-download it via the Purchased link under Quicklinks on the right-hand side of the iTunes store homepage on your computer's iTunes, or you can just download it directly on your phone via the Purchased tab in its App Store app

  • Can installing Oracle 11g on a client in the same network as another implementation cause problems?

    Hi, I have a running Oracle 11g r2 installation running.  Same network, different subnet.  I want to install 11gR2 for development/testing on another machine not connected in any way to the other system other than they are on the same network (different subnet).
    Is there anything that happens over the network that can screw something up?  I do not want to interfere with my existing implementation in production.

    Multiple installations of Oracle don't react like multiple ex-wives at a will reading
    However if you need to access both production and development instances from the same client you probably want to have a different names for each instance e.g. XXXDEV vs. XXXPRD to easily check which instance you are connecting to.

  • SSIS Oracle 11g 64 bit client upgrade Issue

    After the oracle client upgrade from 10g to 11g, the ssis jobs are getting failed for the BadImageFormatException. Attempt to load Oracle client libraries threw This problem will occur when running in 64 bit mode with the 32 bit Oracle client components installed.
    But the same package with same system requirements and same sql agent configuration is wroking fine in DIT. Please find below the system configuration in both environment.
    DIT
    Oracle Client - Oracle 11g 64 bit , Microsoft SQL Server - 32 and 64bit, Windows machine - 64 bt SP4, In job there is no configuration in command line to run in 32 bit mode since we are using the are using the .Net Provider/OracleClient Data Provider connection manager to the database .
    UAT :
    Oracle Client - Oracle 11g 64 bit , Microsoft SQL Server - 32 and 64bit, Windows machine - 64 bt SP4, In job there is no configuration in command line to run in 32 bit mode
    In UAT, Everything looks as DIT but the job is not working fine in DIT.
    I have gone through all the thread related to 32 64 bit, .Net Oracle client provide but i haven't found any solution for this problem.
    Can you please tell me the missed out configuration in DIT and UAT? the exact problem for this issue ? what is the oracle components required for this connection? Its urgent.
    What is missing in the oracle end?
    Thanks
    Satheesh

    32 bit apps will need 32 bit Oracle client software installed.
    Hope it helps,
    Greg

  • Connecting to 64bit Oracle 11g  from 32bit Client on Windows 7 64bit OS.

    Hi All,
    We have installed Oracle 11g 64 bit on a Windows 7 64 bit system. As we need to run some 32 bit application on the system, We installed 32 bit client and try to configured Local Net Service Name Configuration using Oracle Net Configuration Assistant and during test, it is unable to connect and giving the following error.
    ORA-12514: TNS:listener does not currently know of service requested in connect descriptor
    Best Regards
    Fred

    user13144834 wrote:
    Hi All,
    We have installed Oracle 11g 64 bit on a Windows 7 64 bit system. As we need to run some 32 bit application on the system, We installed 32 bit client and try to configured Local Net Service Name Configuration using Oracle Net Configuration Assistant and during test, it is unable to connect and giving the following error.
    ORA-12514: TNS:listener does not currently know of service requested in connect descriptor
    Best Regards
    Fred=================================
    A couple of important points.
    First, the listener is a server side only process. It's entire purpose in life is to receive requests for connections to databases and set up those connections. Once the connection is established, the listener is out of the picture. It creates the connection. It doesn't sustain the connection. One listener, with the default name of LISTENER, running from one oracle home, listening on a single port, will serve multiple database instances of multiple versions running from multiple homes. It is an unnecessary complexity to try to have multiple listeners or to name the listener as if it belongs to a particular database. That would be like the telephone company building a separate switchboard for each customer.
    Additional notes on the listener: One listener is capable of listening on multiple ports. But please notice that it is the listener using these ports, not the database instance. You can't bind a specific listener port to a specific db instance. Similarly, one listener is capable of listnening on multiple IP addresses (in the case of a server with multiple NICs) But just like the port, you can't bind a specific ip address to a specific db instance.
    Second, the tnsnames.ora file is a client side issue. It's purpose is for address resolution - the tns equivalent of the 'hosts' file further down the network stack. The only reason it exists on a host machine is because that machine can also run client processes.
    Assume you have the following in your tnsnames.ora:
    larry =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = myhost)(PORT = 1521))
        (CONNECT_DATA =
          (SERVICE_NAME = curley)
      )Now, when you issue a connect, say like this:
    $> sqlplus scott/tiger@larrytns will look in your tnsnames.ora for an entry called 'larry'. Next, tns sends a request to (PORT = 1521) on (HOST = myhost) using (PROTOCOL = TCP), asking for a connection to (SERVICE_NAME = curley).
    Where is (HOST = myhost) on the network? When the request gets passed from tns to the next layer in the network stack, the name 'myhost' will get resolved to an IP address, either via a local 'hosts' file, via DNS, or possibly other less used mechanisms. You can also hard-code the ip address (HOST = 123.456.789.101) in the tnsnames.ora.
    Next, the request arrives at port 1521 on myhost. Hopefully, there is a listener on myhost configured to listen on port 1521, and that listener knows about SERVICE_NAME = curley. If so, you'll be connected.
    What can go wrong?
    First, there may not be an entry for 'larry' in your tnsnames. In that case you get "ORA-12154: TNS:could not resolve the connect identifier specified" No need to go looking for a problem on the host, with the listener, etc. If you can't place a telephone call because you don't know the number (can't find your telephone directory (tnsnames.ora) or can't find the party you are looking for listed in it (no entry for larry)) you don't look for problems at the telephone switchboard.
    Maybe the entry for larry was found, but myhost couldn't be resolved to an IP address (say there was no entry for myhost in the local hosts file). This will result in "ORA-12545: Connect failed because target host or object does not exist"
    Maybe there was an entry for myserver in the local hosts file, but it specified a bad IP address. This will result in "ORA-12545: Connect failed because target host or object does not exist"
    Maybe the IP was good, but there is no listener running: "ORA-12541: TNS:no listener"
    Maybe the IP was good, there is a listener at myhost, but it is listening on a different port. "ORA-12560: TNS:protocol adapter error"
    Maybe the IP was good, there is a listener at myhost, it is listening on the specified port, but doesn't know about SERVICE_NAME = curley. "ORA-12514: TNS:listener does not currently know of service requested in connect descriptor"
    Third: If the client is on the same machine as the db instance, it is possible to connect without referencing tnsnames and without going through the listener.
    Now, when you issue a connect, say like this:
    $> sqlplus scott/tigertns will attempt to establish an IPC connection to the db instance. How does it know the name of the instance? It uses the current value of the enviornment variable ORACLE_SID. So...
    $> export ORACLE_SID=fred
    $> sqlplus scott/tigerIt will attempt to connect to the instance known as "fred". If there is no such instance, it will, of course, fail. Also, if there is no value set for ORACLE_SID, the connect will fail.
    check executing instances to get the SID
    [oracle@vmlnx01 ~]$ ps -ef|rgrep pmon
    oracle    4236     1  0 10:30 ?        00:00:00 ora_pmon_vlnxora1
    oracle    4878  4854  0 10:42 pts/0    00:00:00 grep pmonset ORACLE_SID appropriately, and connect
    [oracle@vmlnx01 ~]$ export ORACLE_SID='vlnxora1
    [oracle@vmlnx01 ~]$ sqlplus scott/tiger
    SQL*Plus: Release 10.2.0.4.0 - Production on Wed Sep 22 10:42:37 2010
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing optionsNow set ORACLE_SID to a bogus value, and try to connect
    SQL> exit
    [oracle@vmlnx01 ~]$ export ORACLE_SID=FUBAR
    [oracle@vmlnx01 ~]$ SQLPsqlplus scott/tigere
    SQL*Plus: Release 10.2.0.4.0 - Production on Wed Sep 22 10:42:57 2010
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    ERROR:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux Error: 2: No such file or directory
    Enter user-name: Now set ORACLE_SID to null, and try to connect
    [oracle@vmlnx01 ~]$ export ORACLE_SID=
    [oracle@vmlnx01 ~]$ SQLsqlplus /scott/tiger
    SQL*Plus: Release 10.2.0.4.0 - Production on Wed Sep 22 10:43:24 2010
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    ERROR:
    ORA-12162: TNS:net service name is incorrectly specified=====================================

  • Installation of Oracle 11g 32 bit Client on Windows 7 (32 bit) laptop.

    Hi,
    I just got a new Laptop with Windows 7 (32 bit) operating system.
    Has any one successfully installed Oracle 11g client on in Windows 7 environment and if so what are the steps involved.
    In the past I have never had any trouble installing an Oracle client on a Windows work station.
    Thanks,
    Ashim.

    Oracle hasn't officially supported 11g on windows 7. folks have installed it successfully too. Check the below threads.
    Re: 11g R1 database installation is successful on windows 7 64-bit
    Oracle 11g on Windows 7
    Re: DB 11gR2 for Windows ??
    HTH
    -Anantha

  • Oracle 11g software setup file  needful to install on windows 7

    Hi,
    Any body Can provide the download link for oracle 11g software setup to install on windows 7.

    Hi;
    You can find related setup at below link:
    http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html
    By the way dont forget win7 home edition not certified wiht Oracle 11g
    Installation guide is avaliable at:
    http://download.oracle.com/docs/cd/E11882_01/install.112/e10876/toc.htm#BABEHGHH
    Regard
    Helios

  • Oracle 11g R2 Database Client for Mac OS X?

    Is there an Oracle 11g R2 client for Mac OS X? If so, where is it?

    Hi;
    Please check:
    http://www.oracle.com/technetwork/database/features/instant-client/index-097480.html
    Also see:
    Master Note For Oracle Database Client Installation [ID 1157463.1]
    Client / Server / Interoperability Support Between Different Oracle Versions [ID 207303.1]
    Master Note For Database and Client Certification [ID 1298096.1]
    Regard
    Helios

  • Oracle 11g 64 bit - "Value too large for column" when setting Varchar2

    Hello guys,
    I have a machine running Oracle 11g - 64bits. And I have a table that contains a VARCHAR2(2000) field.
    When I try to set the value of this field to a string that contains double byte characters, I get this error:
    ORA-12899: value too large for column "QAPBG1220_11"."MYTABLE"."MYFIELD" (actual: 2433, maximum: 2000).
    Although the value I'm setting is only 811 characters (€ sign).
    The weird thing is that when I try to run the same query on another PC with Oracle 11g, 32 bits, It runs normally and the values are updated!!
    Anyone has any idea about this? It's driving me crazy
    Thanks in advance
    Zahraa

    create table MYTABLE
    MYTABLEID NUMBER(10) not null,
    MYFIELD VARCHAR2(2000)
    alter table MYTABLE
    add constraint PK_MYTABLE primary key (MYTABLEID);
    INSERT INTO MYTABLE (Mytableid, Myfield) VALUES(1, '€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€fds€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€')
    COMMIT;
    On the 32 bit, this works fine. I get the record with the values 1 and 2000 euro signs.
    On the 64 bits, there is one machine (oracle 11.2.0.1.0) that adds the row, but when I view it, the value shows as "????"
    and another machine (oracle 11.1.0.7.0) that throws an error:
    - "String Literal is too long" : if there are more than 1333 euro characters
    - Value too large for column .... : if there are less than 1333 and more than 666 characters.
    Any ideas?

  • Hp pavilion a1250n says multimedia audio controller not installed, sound not working (windows7)

    No sound plays with my logitech ls11 speakers. my computer is a hp pavilion a1250n, running windows 7, 32 bit operating system, and a AMD ahtlon(tm)64 x2 dual core processor 3800+ 2.00 GHz
    When i click the speaker icon in the lower right corner, and open the playback devices, it says:
    Speaker: anvsoft virtual sound device, default device.
    When i ran a  troubleshooter, to see if there were any files I should install, i got an error message:
    multimedia audio controller couldnt not be installed, driver not found.
    In device manager, below the sound video and game controlers tab, it says Anvsoft virtual sound device.
    Bellow the other devices tab, it says multimedia audio controler, but there is a yellow triangle exclamation makr over it.
    How can I get sound on my computer? Are there any free programs that are compatible that will allow me to have sound?
    Thanks to anyone who takes the time to read this.

    Hi:
    Click on the link below.  Accept the agreeement.  Download, unzip and install the first driver on the list.
    http://www.realtek.com.tw/downloads/downloadsView.aspx?Langid=1&PNid=23&PFid=23&Level=4&Conn=3&DownT...

  • Application not installed - computer not authorized

    Dear Experts,
    I'm going mad trying to get my wife's iPhone to sync her applications (why does she always get the difficult problems?). She has a new iPhone - the last one she managed to flush down the toilet. I'm trying to reinstall the applications that she previously bought. For all applications I get the message "The application XXX was not installed on the iPhone YYY because you are not authorised for it on this computer".
    Note: 1) The PC is authorized because I can (re)download the applications concerned. 2) I can also access my wife's Store account.
    Now I have surfed the web and tried the various things suggested, including:
    1) Double clicking the applications in the iTunes application folder. When I do this I'm asked to authorize the application for the PC, which I then do and it (seems to) accept it. However if I immediately double click again, again I'm asked to auithorize the application again????.
    2) I have completely removed iTunes and everything, including the Apple Computer directory in the Vista "roaming" folder. I have then reinstalled it and reconfigured it, reauthorized the PC and redownloaded the applications. The result is the SAME, arrrgghhhh!
    So, anyone got any idea what is going on? At the moment I feel like taking an axe to the damned thing. This 'authorization' business is a pain in the ...
    Thanks in advance.
    Extrapilot144

    Hiya. Just doublechecking ... have you worked through the following document in the course of your troubleshooting to date?
    [iTunes repeatedly prompts to authorize computer to play iTunes Store purchases|http://support.apple.com/kb/TS1389]

  • Installing PSE12: Shared technologies did not install, and not the rest. Vhat to do?

    Installing PSE 12: Shared technologies did not install, and the installation stoped. What to do? I am running Win 7.

    http://helpx.adobe.com/photoshop-elements/kb/troubleshoot-installation-photoshop-elements- premiere.html#main_Error__Below_mentioned_applications_have_failed_to_install__Shared_tech nologies_

  • Bios not installed, device not found

    I'm sure someone can answer this, but I can't. When booting, I get the message "bios not installed" and "device not found." Now, I know it doesn't pertain to the actual bios, but what exactly does it mean? And how do I get rid of the message?
    AMD 3000 64
    msi k8t NEO-FIS2R
    Hitachi SATA 80gb (using via controller, not promise)
    POWMAX 400
    Diamond GF5200 128MB AGP
    Kingston 2.5latency 512 (256x2) ddr400
    Also, I built an ASUS version, not 64 but still AMD 3000, everything else is pretty much the same, and the Asus build smokes the MSI build. Anyone have an idea why?
    ASUS deluxe a7n8x-e
    CORSAR32X64 VS256MB400
    HD 80GB Hitachi SATA 8MB
    ALBATRON GeForce 128MB FX5200EP
    ASPIRE XDREAMER BK WNDW 350W

    Quote
    Plain and simple, it sucks.
    3dmark 2001 se scores with a Barton-core AMD athlon xp 3200+ and 1 GB ram.
    GeForce FX5200 A-FX20 128MB DDR
    4,650
    BFG GeForce FX 5200...2500+ XP Barton with 1GB PC2700 I get 5361.
    Gainward GeForce FX 5200...AMD64 3200+ with 1GB PC3200 I get 8286.
    They don't suck that bad...not like the GeForce4 MX400s...  

Maybe you are looking for

  • Opening a doc in read mode

    Hi, I'm sending out some marketing information saved as a pdf. I want the documents to open in read mode without tools or others menus showing if possible. Is there a way to accomplish this?

  • Changing NP User ID UDF in business One

    Hey All, We have a client who had all of their netpoint userids created automatically by netpoin. (numeric ids). They want to change some user ids to sensible user ids for their users. If they change the netpoint user UDF in business one the synch ru

  • Viewer goes blank when selecting an adjustment

    I'm probably overlooking something. When I attempt to make an adjustment images in a new project, Aperture has started doing something strange. All of the images in this project are .jpg. After first importing the images, I was able to successfully a

  • Why doesn't converting a DNG with a later converter update metadata?

    Example: Convert a 7D CR2 with DNG Converter 5.5. This gives certain values of metadata such as color matrices & white level. Now convert that same CR2 with DNG Converter 5.6, and this gives different values of such metadata. (That is reasonable. Aft

  • PeopleSoft Campus Solution OVM template

    Hi Guys, have anyone had experience using peoplesoft OVM template in implementing (or testing out) Campus Solution ? I'm planning to have a Campus Solution test in my organization using OVM. Thanks