Oraclle 11g instant client x64 doesn't  work in windows 7 x64

First of all I've read the software requirements in the installation guides for 11g instant client x64 and no support for Windows 7 is mentioned.. I'm not sure if this is the case any how here is the details of the problem:
I downloaded instant client (basic) and (sqlplus) and unzipped them on drive E, afterwards I created tnsnames.ora file with the following:
ORCL =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP) (HOST = IGGY) (PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = ORCL)
and saved it in the instant client directory, afterwards I included the instant client directory in the user variable PATH value, and created system variable TNS_ADMIN and added the location of tnsnames.ora in the value.
Now the problem starts when I open MS-DOS and type: sqlplus system @ORCL, It then prompts for the password and when I try to enter anything the cursor doesn't move unless I press enter and the result is that I get the following error:
ORA-12154: TNS: COULD NOT RESOLVE THE CONNECT IDENTIFIER SPECIFIED
Any idea what the reason of this problem is?

Hello again,
I was able to reproduce ORA-12154 and the error raised beacause my DUMMY-HOST was not reachable. Using the correct hostname/IP address solved the issue. Can you check if you are able to ping and to telnet your hostname (IGGY).
Regards,
David
# Reproducing issue
E:\instantclient_11_1>sqlplus system/manager@//DUMMY-HOST:1521/PROD
SQL*Plus: Release 11.1.0.7.0 - Production on Fri Nov 27 10:37:54 2009
Copyright (c) 1982, 2008, Oracle. All rights reserved.
ERROR:
ORA-12154: TNS:could not resolve the connect identifier specified
Enter user-name:
# Hostname is not pingable
E:\instantclient_11_1>ping DUMMY-HOST
Ping request could not find host DUMMY-HOST. Please check the name and try again.
# Pinging host which is alive
E:\instantclient_11_1>ping stlin3p
Pinging stlin3p [192.168.1.123] with 32 bytes of data:
Reply from 192.168.1.123: bytes=32 time<1ms TTL=64
Reply from 192.168.1.123: bytes=32 time<1ms TTL=64
Reply from 192.168.1.123: bytes=32 time<1ms TTL=64
Reply from 192.168.1.123: bytes=32 time<1ms TTL=64
Ping statistics for 192.168.1.123:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms
# Connecting to port 1521 at DUMMY-HOST fails as well
E:\instantclient_11_1>telnet DUMMY-HOST 1521
Connecting To DUMMY-HOST...Could not open connection to the host, on port 1521:
Connect failed
# Connecting to port 1521 at stlin3p is successful
E:\instantclient_11_1>telnet stlin3p 1521
... connected ...
# Content of tnsnames.ora
PROD =
DESCRIPTION =
ADDRESS = (PROTOCOL = TCP) (HOST = stlin3p) (PORT = 1521)
CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = PROD)
# Connecting to DB server using TNS methods is successful
E:\instantclient_11_1>sqlplus system/manager@PROD
SQL*Plus: Release 11.1.0.7.0 - Production on Fri Nov 27 10:36:40 2009
Copyright (c) 1982, 2008, Oracle. All rights reserved.
Connected to:
Oracle Database 10g Release 10.2.0.4.0 - 64bit Production
SQL> exit
Disconnected from Oracle Database 10g Release 10.2.0.4.0 - 64bit Production
# Connecting to DB server using EZCONNECT is also successful
E:\instantclient_11_1>sqlplus system/manager@//stlin3p:1521/PROD
SQL*Plus: Release 11.1.0.7.0 - Production on Fri Nov 27 10:38:21 2009
Copyright (c) 1982, 2008, Oracle. All rights reserved.
Connected to:
Oracle Database 10g Release 10.2.0.4.0 - 64bit Production
SQL> exit
Disconnected from Oracle Database 10g Release 10.2.0.4.0 - 64bit Production

Similar Messages

  • Oracle client 9i doesn't work for windows ordinary user

    Hello All,
    I've installed oracle 9i client on windows xp. Client software works for user belonging to windows administrators group. it doesn't works for ordinary users not belonging to administrators group. Particularly when i run sqlplus from command line i get following error :
    Incorrect environment variable PLUS_DFLT
    Program execution error.
    i also need access to Oracle ODBC driver.
    When i try to configure ODBC source (created by user with administrator privileges) by common user i get following errors :
    The setup routines for Oracle for Oracle in OraHome9i ODBC driver couldn't be loaded due to system error code 5
    Could not load the setup or translator library
    Very appreciate for any help.
    Regards Arkadiusz Masny

    It sounds like the users on the machine do not have access to the Oracle home directory. Check the permissions of the folder by right properties, select the user and check that they have read and then select advanced. Tick the "replace permission entries....." box and apply. This will re apply all user rights in all folders and subfolders. Try again.
    HTH Mark F

  • 11g Instant Client Oracle.DataAccess 2.111.6.20 vs Full Client 2.111.6.0

    My .NET app was developed on a computer where 11g Instant Client Oracle.DataAccess 2.111.6.20 was installed. I copied the application code to another computer where the 11g Full Client Oracle.DataAccess 2.111.6.0 was installed. When I tried to run it I get the following error:
    An unhandled exception of type 'System.TypeIntializationException' occured in System.dll
    The type initializer for 'Oracle.DataAccess.Client.OracleConnection' threw and exception
    My .NET app requires the use of sqlldr which does not come with 11g Instant Client so I'm trying to get it to run on another computer with the 11g Full Client which includes sqlldr.
    The appilcation was built referencing the Oracle.DataAccess 2.111.6.20 on the computer with 11g Instant Client but the app needs to run on a computer where sqlldr is installed which is on another computer with 11g Full Client Oracle.DataAccess 2.111.6.0.
    Am I going to have to install the 11g Full Client Oracle.DataAccess 2.111.6.0 on the development computer to get the app to work or what?

    Thanks Mark
    The 2.111.6.20 version is already on our production server so I can't replace it. The app that uses sqllder ony runs two weeks out of a year so I'm thinking that I can set up another dev computer(dev2) with the full client and run the app from there. I may try installing both clients but I'm not sure how that will work out yet. I'm still looking into deploying 2.111.6.20 from dev to dev2 like the option 1 you suggested but coping the file from the GAC of dev to dev2 is more involved than I expected. I'm also trying to get the development tools VS2008 installed on dev2 to try option 2 as you suggested.
    Configuration
    dev 11g Instant Client Oracle.DataAccess 2.111.6.20
    prod 11g Instant Client Oracle.DataAccess 2.111.6.20
    dev2 11g Full Client Oracle.DataAccess 2.111.6.0
    Thank you,
    Keith

  • Tap-to-Click doesn't work on Windows 8

    Hi all. I'm using bootcamp for two weeks, and Trackpad's tap-to-click feature doesn't work on Windows 8 x64. Can you help me please? Thanks a lot.

    Aah, thanks a lot. That's so easy.

  • My i pod nano first generation doesn't work with windows 8

    My i pod nano first generation doesn't work with windows 8

    Howdy yvesmd,
    Thanks for using the Apple Support Communities.
    If your iPod nano is not being recognized in iTunes on your Windows computer, then I'd like you to please follow the directions in the link below.
    Apple - Support - iPod - iPod nano Troubleshooting
    Cheers,
    Alex H.

  • TS3704 How are you supposed to fix "The feature you are trying to use is on a network resource that is unavailable" alert appears when you remove Apple software in Windows if it doesn't work on Windows 8 or 8.1???

    How are you supposed to fix "The feature you are trying to use is on a network resource that is unavailable" alert appears when you remove Apple software in Windows if it doesn't work on Windows 8 or 8.1???

    See Troubleshooting issues with iTunes for Windows updates. You may have to uninstall what you can, reboot and delete the named folders, then reinstall.
    tt2

  • "Email me" doesn't work in Windows

    Has anyone found that the "Email me" button doesn't work on Windows machines? I have just been told by one or two visitors to my website (www.aroundthebusch.com) who use Windows that the buttons didn't work.

    It may be a Flash Security issue... upload SWF to server, open it to browser from there and try your links again...
    Here´s one SWF exported from indesign (links to email at page 3):
    http://www.edocker.com/_demo/edocker-online-demo/index.html

  • AT-AO-10 doesn´t work with Windows 2000

    I have an AT-AO-10 board that doesn’t work with Windows 2000. I have reserved two IRQs for legacy devices (non plug and play) in BIOS. The AT-AO-10 has got assigned these IRQs, a DMA and a base address that are free, and there aren’t any hardware conflicts, but the board doesn't pass the MAX's text.
    In Windows 'Information System', the board is shown in 'Forced hardware', but I don’t know that is a problem.
    If the board is unplugged, error messages are the same.

    Hello;
    You didn't mention what version of the NI-DAQ driver you are using over there. Anyway, my suggestion to you is to uninstall the NI-DAQ driver you have installed, remove the board, reboot the machine, download and install the latest NI-DAQ version (6.9.3) from NI web site.
    Try the installation with the new driver, and if that is still not working, the best bet is to try the same installation on a different machine to double check if the hardware is not defective.
    Regards
    Filipe A.
    Applications Engineer
    National Instruments

  • Application Restart and Recovery APIs doesn't work for windows services

    I am using the Application Restart and Recovery mechanism (provided in Windows API Code Pack for Microsoft.NET Framework) to collect some information (i.e. stack information when there's an unhandledexception)  before my windows service crash down.
    It works well for windows form applications, but the callback method wouldn't be called if the host is a windows service. 
    I have checked the article: https://msdn.microsoft.com/zh-cn/subscriptions/downloads/cc303708
    But it doesn't specify clearly whether it works for a windows service. It seems that the recovery will only be activated when the user interacts with the error dialog of Windows Error Reporting (clicking "close" on the dialog, for example).
    So I am wondering is my guess right that the Application Restart and Recovery mechanism doesn't work for windows services. Or is there a better way to meet my requirement? 

    I would suggest trying ARR if that's what you want to use.  The restart portion won't work, but it doesn't need to as if you fail out of your service, the Windows service controller will handle recovery (up to and including restarting your service).
     You configure those recovery actions either through code or one of the built in administrative tools for services such as services.msc.  
    DebugDiag/ADplus and similar tools ultimately do use built-in APIs; you don't need to add anything external to collect debugging information.  You do however have to write a good deal of code to do somethings.  It's pretty simple to use the unmanaged
    function that I pointed out before and
    MiniDumpWriteDump to write a minidump when you hit an unexpected error(the dbghelp.dll that comes installed with Windows has it so you don't need anything additional installed).  You can even write a basic debugger that literally debugs a process using
    only kernel32 functions (see
    https://msdn.microsoft.com/en-us/library/windows/desktop/ms679301(v=vs.85).aspx if you're interested).  
    WinSDK Support Team Blog: http://blogs.msdn.com/b/winsdk/

  • My touchpad doesn't work on windows system after I upgrade the OS from window 8.0 to 8.1, can someone help me how to settle it, thanks,

    My touchpad doesn't work on windows system after I upgrade the OS from window 8.0 to 8.1, can someone help me how to settle it, thanks,

    Hi candy, glad that you found that Shockwave Flash Object, it works with the Flash files and is very important
    The NPSWF files that you said are not there, those are for the Firefox browser or Chrome or some other browser. If you use Firefox and want the Flash Player for that, then close all of your browsers so you are only looking at your Desktop.
    Click on this Flash Player Installer for Firefox and SAVE it to your Desktop. Then RUN it from your Desktop, and after it is finished Installing, Restart your computer.
    Then Using Firefox go to the plug-ins and find a SWF vs 10.0.45.2 and make sure it is Enabled. This is just like the Shockwave Flash Object for Internet Explorer, but it is the one that works with Firefox.
    Let me know if that is what you wanted to do. If you don't use Firefox, but Chrome or another browser, then this will work for that one also.
    If you don't use another browser, then don't do any of this. I just thot maybe you did and that is why you were concerned that the NPSWF files were not there.
    Thanks,
    eidnolb

  • Satellite A210 (PSAEG) - Microphone doesn't work on Windows 7 64bit

    Hello, the micro doesn't work under windows 7 64 bit, the driver I'm using is Windows Vsta 64 bit. The volume is set up maximun and so is the amplification but no way to make it work with skype or toshiba camera assistant software.
    Can anyone help me?
    thank you

    Hi Largo09,
    Usually you have to install the webcam and sound driver to get the microphone working. The microphone is a part of webcam
    As you wrote, Satellite A210 is not Windows 7 64bit supported so the only option you have are Vista 64bit drivers
    In my opinion you should check if Microphone is enabled in Windows sound settings. There you can also enable Microphone boost, that can increase the microphone volume.

  • HP Deskjet 2512 Director doesn't work on Windows 7? Is there a fix?

    HP Deskjet 2512 Director doesn't work on Windows 7? Is there a fix? All that happens is two text pages open, but no Director. I have downloaded and installed latest full software version DJ2510_1313. Any help for this?
    This question was solved.
    View Solution.

    Hi DJ2512,
    I understand you have a Deskjet 2512 that is not able to open the Printer Assistant, it opens to text pages. I'm sorry to hear this, but I will definitely do my best to assist you!
    From what you've described, it sounds like your Printer Assistant is opening to a Notepad page. I'd suggest that you follow this HP Printer Assistant Opens with a Script Error or in Notepad document to get the issue resolved.
    Hope this helps, have a great day!!
    Please click “Accept as Solution ” if you feel my post resolved your issue, as it will help others find the solution faster
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    **MissTeriLynn**
    I work on behalf of HP

  • HT1589 This doesn't work in Windows 8. Anybody know how to get this dialog box in Windows 8?

    This doesn't work in Windows 8. Anybody know how to get this dialog box in Windows 8?

    Hello,
    Try disabling graphics hardware acceleration. Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    *Click the orange Firefox button at the top left, then select the "Options" button, or, if there is no Firefox button at the top, go to Tools > Options.
    *In the Firefox options window click the ''Advanced'' tab, then select "General".
    *In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    *Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    * [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    * [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    Did this fix your problems? Please report back to us!
    Thank you.

  • My apple magic mouse doesn't work in windows 7 after installing maverick os x

    My apple magic mouse doesn't work in windows 7 after installing the maverick operating system on my mackbook pro.  How do I fix this problem?

    Hi bsruff,
    If you are having issues with your Magic Mouse in Windows 7 via Boot Camp after upgrading to Mavericks, you may find the following article helpful:
    Apple Support: Resolving issues with Windows when using Apple Magic Mouse or Apple Wireless Keyboard
    http://support.apple.com/kb/TS3092
    Regards,
    - Brenden

  • Rich Textbox example doesn't work in Windows 7

    In the past I use the Rich Textbox example (\samples\userint\activex\richTextxbox.prj) in Windows XP (CVI 2010 SP1).
    Now I noticed that this example doesn't work in Windows 7 64-bit because the ActiveX is not registered on the system (see attached error.jpg).
    Isn't this control installed by CVI IDE itself?
    How can I get this example working on my Win 7 64-bit machine?
    Vix
    In claris non fit interpretatio
    Using LV 2013 SP1 on Win 7 64bit
    Using LV 8.2.1 on WinXP SP3
    Using CVI 2012 SP1 on Win 7 64bit, WinXP and WinXP Embedded
    Using CVI 6.0 on Win2k, WinXP and WinXP Embedded
    Solved!
    Go to Solution.
    Attachments:
    error.JPG ‏29 KB

    Hi Vix
    It looks like the Rich Textbox control component provided by one of the VB runtimes is no longer included by default with Windows 7.
    I have been able to manually register the ActiveX control using Regsvr32 as described in the following Microsoft KB.
    I was able to download the needed ActiveX control from here and from there you need to copy the .ocx ActiveX control to your C:\Windows\SysWOW64 directory. Open up a command prompt as administrator and run 'REGSVR32 RICHTX32.OCX'.
    SysWOW64 is the 'Windows On Windows' emulation directory which is used for running 32 bit controls in a 64 bit environment.
    I realise this isn't the best solution as it will make application deployment a little more complicated, another solution may be to use another RTF ActiveX control such as the one here: http://www.lebans.com/richtext.htm.
    Thanks
    Chris | Applications Engineer NIUK

Maybe you are looking for

  • F-03 missing open items (Not able to run RFSEPA02)

    Hi all, One of the GL account was change to open item managed. The situation is that we still have open items which do not appear in F-03. I checked SAP note 136754 and it asks me to run program RFSEPA02 but when I run that program it says " "Do not

  • Wrong Apple ID in App Store on new iTouch

    I got the new iTouch 4th gen. for Christmas. A few years ago I had an older version of the iTouch and about 40 or so apps for it bought from my first account. I recently made a new apple ID for use with this iTouch. I've had no problems with it so fa

  • Ipod nano not recognized by pc and will not turn on

    ipod nano not recognized by pc and will not turn on

  • MS CRM 2015 :DB locking issues while calling a web API inside an asynchronous Plugin.

    Hi, We have a SharePoint Integration where a Web API is deployed on SharePoint Server.We are calling this Web API in asynchronous plugin. Although the Plugin works fine. But  its causing DB issues .other custom applications like schedulers are breaki

  • Change Country of my Account

    I need to change the Country of my account and it does not allow me to do it. It says it is only valid for Australia and I no longer live there. How can I update it? I need to upload a new Credit Card because the Australian is no longer valid.