Sql Net*8 Easy configuration on client not responding

We are evaluting Developer 6.0 Beta version.
Sql Net*8 is working well on the server side(Window Nt) no probs
but at the client side (Windows 95) when we click
start->oracle for windows95->Sql Net*8 easy ,no resond screan
appears. So we go for manual configuration of tnsnames.ora
and for that we copy tnsnames.ora from the server side which
is working fine but at client side when we try to loggin to
oracle 8 database using sql*plus we get the following error
ORA-12222:TNS no such protocol adapter.
we had loaded tcp/ip protocol of microsoft.
null

Ankur diwan (guest) wrote:
: We are evaluting Developer 6.0 Beta version.
: Sql Net*8 is working well on the server side(Window Nt) no
probs
How do you know it ?
: but at the client side (Windows 95) when we click
: start->oracle for windows95->Sql Net*8 easy ,no resond screan
: appears. So we go for manual configuration of tnsnames.ora
: and for that we copy tnsnames.ora from the server side which
: is working fine but at client side when we try to loggin to
: oracle 8 database using sql*plus we get the following error
: ORA-12222:TNS no such protocol adapter.
: we had loaded tcp/ip protocol of microsoft.
Can you ping from client to server ?
Is TNS listener on server started ?
null

Similar Messages

  • SQL net easy configuration

    I can't connect Developer 2000 at a client site with the Database on th Server:
    AFTER INSTALLING THE DEVELOPER 2000 R2.1 ON THE CLIENT MACHINE(WIN 98),
    I NEED TO CONNECT HIM TO THE ORACLE DATABASE(ORACLE 8 ENTERPRISE EDITION)
    ON THE SERVER(WINNT),
    I DEFINED THE FOLLOWING SERVICE (DB ALIAS) ON THE ORACLE SERVER(TNSNAMES.ORA):
    XXX.WORLD =
    (DESCRIPTION =
    (ADDRESS =
    (PROTOCOL = TCP)
    (HOST = 3.1.1.1)
    (PORT = 1521)
    (CONNECT_DATA = (SID = ORCL)
    WHAT I DID WAS THAT I WENT TO SQL NET EASY CONFIGURATION, AT CLIENT MACHINE
    AND SELECT TO ADD DATABASE ALIAS,
    THEN I ENTERED THE DB ALIAS NAME: KOKO (FOR EXAMPLE)
    THEN I ENTERED THE TCP\IP ADDRESS OF THE SERVER: 3.1.1.1,
    THEN I ENTERED THE DATA BASE INSTANCE : ORCL,
    THEN I CONFIRMED THE OPERATION AND EXIT THE SQL NET EASY CONFIGURATION.
    THEN I WENT TO THE TNSNAMES.ORA FILE, AND CHECK FOR THE DEFININTION, AND IT
    WAS OK. AND AS FOLLOWS:
    KOKO.WORLD =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (COMMUNITY = TCP.WORLD)
    (PROTOCOL = TCP)
    (HOST = 3.1.1.1)
    (PORT = 1521)
    (ADDRESS =
    (COMMUNITY = TCP.WORLD)
    (PROTOCOL = TCP)
    (HOST = 3.1.1.1)
    (PORT = 1526)
    (CONNECT_DATA = (SID = ORCL)
    THEN I TRYED TO CONNECT TO THE DATABASE USING SQLPLUS8 FROM THE USER MACHINE,
    BUT I GET THIS ERR MSG;
    ERROR:
    ORA-12154: TNS:COULD NOT RESOLVE SERVICE NAME
    I TRYED TO GO TO ORACLE REGISTRY FILE AND ADD A STRING LOCAL: XXX
    THIS XXX IS THE NAME OF THE DATABASE ALIAS ON THE SERVER.
    AFTER THAT I TRYED TO CONNECT TO THE DATABSE, AND I GOT THE SAME ERR MSG:
    ERROR MSG:
    ERROR:
    ORA-12154: TNS:COULD NOT RESOLVE SERVICE NAME
    IF YOU HAVE AN IDEA, I WILL APPRECIATE SHARING IT.
    null

    hi,
    If you are installing D2K on '98 please insure the following:
    1. does the cient machine have orawin95/98 folder?
    2. In orawin95/net80/admin you said you have TNSNAMES.ORA but do you also have SQLNET.ORA with a proper configuration pointing to TNSNAMES.ORA?
    Tushar

  • Installing Sql net-easy configuration assistant

    I had installation of Oracle 8.i Server and I have made an installation of all Oracle 8.i Client on my desktop, but it failed before installing the package for Sql net-easy configuration.
    I retry to deinstall and install all Oracle package, but I was unable to reach again the same step.
    How do I install the Sql net easy package, in order to get it available within the Oracles menu in the Window Start menu?
    Thanks
    Roberto

    hi,
    If you are installing D2K on '98 please insure the following:
    1. does the cient machine have orawin95/98 folder?
    2. In orawin95/net80/admin you said you have TNSNAMES.ORA but do you also have SQLNET.ORA with a proper configuration pointing to TNSNAMES.ORA?
    Tushar

  • SQL*NET Easy Config

    I can't find the orainst.exe file on Oracle's site to setup SQL & ODBC on a client machine. Does anyone know where to get this?

    I'm not sure I follow your question...
    SQL*Net Easy Config is a utility that allows you to do things like configure your tnsnames.ora file after you have installed the Oracle client.
    The ODBC Data Source Administrator allows you to configure ODBC connections to your database after the Oracle client has been installed.
    The Oracle Universal Installer allows you to install the Oracle client in the first place.
    Which, if any, of these utilities are you referring to?
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Getting SQL*Net more data from client waits when running a query through web based interface

    Hi, you all,
    We are having this weird behavior when running query through web based interface, we get a lot of "SQL*Net more data from client" waits, the OEM indicates that the current wait event is SQL*Net more data from client
    It's just a very simple query wich invokes a db link.
    When I execute the same query on any PL/SQL tool like toad or sql developer it works fine, but that query inside an application executed through a web based interface, it hangs for ever.
    Where can I start looking for the problem.
    We are working on a 3 Node RAC 11gr2, both databases are on the same RAC.
    Thanks.

    Hi ,
    we managed to reproduce the case in test environment, below are the steps:
    1)have 2 databases on different machines, will call the first one local, the other one remote.
    2)in the local database create:
    a - DBLink to remote database.
    b - read data from remote database(we simply used select count(*) from dummy_table )
    c - insert data into a table on the local database
    d - terminate the connection between the 2 databases (disconnect either machine from the network)
    e - commit on local database.
    what we noticed was the following:
    1)when the local database is disconnected from the network(the machine is not connected to any network at the moment): almost immediately throws an error, and issuing the following:
    select * from dba_2pc_pending;we found some data .
    2) when the remote database was disconnected(the local database is still connected to the network):
    after 7-8 seconds an error is thrown, and issuing the following:
    select * from dba_2pc_pending;did not return any data.
    since this is pretty similar to our case ,we concluded that it's a network issue.
    is this the correct behavior ?
    as a temporary solution till the network issue is fixed ,we did the following:
    1) changed the call of the remote procedure to calling a local procedure that calls the remote procedure.
    2) added pragma autonomous_transaction to the local procedure.
    3) at the end of the local procedure rollback the autonomous transaction.
    it seems that since the global transaction does not use the DBLink database does not issue a 2PC commit.
    this works in my cases since the DBLink is only issed to read data.

  • Net easy configuration assitant error

    I have oracle database having sid =pahwaerp in
    a system( wind 2003,tcp =192.54.18.15).
    Now i have installed 9ids in another machine.(win 2000 adv server)
    when i configure net easy configuration
    local net service name configuration
    i give there
    service name =pahwaerp
    tcp ip =192.54.18.15
    on testing coneection it gives error
    Connecting...Ora-12638 Credential retrieval failed.
    The test did not succeed.
    The same when i do net easy configuration from other machine having d2k re 2.1 there it works fine.
    Pls help me out.

    At DOS prompt do ping or tnsping to 192.54.18.15 or be sure if you have installed TCP/IP in that machine.
    Regards

  • Net easy Configuration error

    I have oracle database having sid =pahwaerp in
    a system( wind 2003,tcp =192.54.18.15).
    Now i have installed 9ids in another machine.(win 2000 adv server)
    when i configure net easy configuration
    local net service name configuration
    i give there
    service name =pahwaerp
    tcp ip =192.54.18.15
    on testing coneection it gives error
    Connecting...Ora-12638 Credential retrieval failed.
    The test did not succeed.
    The same when i do net easy configuration from other machine having d2k re 2.1 there it works fine.
    Pls help me out.

    At DOS prompt do ping or tnsping to 192.54.18.15 or be sure if you have installed TCP/IP in that machine.
    Regards

  • SQL*Net break/reset to client wait event

    Hi,
    Can you please explain me about "SQL*Net break/reset to client" wait event. One of my session was waiting for this event and when I looked which is causing the problem there are many duplicates in the input which were geting rejecting due ot the primary key. I didn't exactly get how the duplicate reject causing this wait event.
    I appreciate your help !!
    Thanks
    Anand
    Edited by: user509266 on Sep 4, 2009 10:58 AM

    Better place to ask is over in the Database forums.

  • How to drill down the cause of "SQL*Net message from/to client"

    Pretty frustrated with my tune up using suggestions from many papers for Oracle 10g R2 on AIX 5.3 L system. My users told me that the system (including Baan 5c) still responds slowly in some processes, some even worsen.
    Using both queries such as
    SELECT sid, schemaname, status FROM gv$session ORDER BY 2;
    SELECT inst_id, seq#, event, p1, p2, p3, wait_time FROM v$session_wait_history WHERE sid=<sid from above>
    INST_ID SEQ# EVENT P1 P2 P3 WAIT_TIME
    1 1 SQL*Net message from client 1413697536 1 0 6419
    1 2 SQL*Net message to client 1413697536 1 0 0
    and others similar, I found very large numbers (almost 97%) of the sessions have events as “SQL*Net message to client” and “SQL*Net message from client” on their wait_time even the sids are in inactive status. After checking the meaning of those messages in Oracle Performance and Tuning document, the document states that mainly they are probably network problems. So How can I drill down to what status of network from my client (the users) to server by Oracle or AIX? In Baan, it has its own parameter sets in its db_resource file controlling the connectivity. In average, there are 4000 “opened cursor current”, but most of them inactives.
    So my colleague asked me rollback all th changes I did on OS level such as minperm%=5
    maxperm%=90
    maxclient%=90,
    lgpg_regions lgpg_size,
    sys0 maxuproc=512,
    aio0 maxservers='260'
    and many ioo parameters to system defaults.
    I even removed the mulitplex copy of the redo log.
    I tried to proof them that there maybe the problem of the Baan/Oracle connectivity, ie due to message above,

    http://docs.oracle.com ... read them for configuration information.
    http://tahiti.oracle.com ... read them for recommendations.
    http://otn.oracle.com ... find the best practices docs.
    http://metalink.oracle.com ... look for similar issues to yours.
    People that change things, on production boxes, without first determining that metrics indicate they are a good idea, and then determining their impact on a test box, should be sold to zoos as leopard food.
    PS: Slowly likely has absolutely nothing to do with anything you touched. First you tune the application. Then you tune the database. Then you tune the operating system. Get out of the way and make the DBAs do their job.

  • Skype for Business client not responding after audio/video/screen sharing

    Hi Everyone,
    I have a strange situation in my organisation. We have more than 200 clients and we are using Lync 2013. When Skype for Business (SFB) came out I tested it and found one problem - every time when I trying to make a audio or video call or what ever kind of
    file sharing or screen sharing then SFB client will hang and have error "SFB not responding". I can click restart the client and close button. So it´s not possible to call or share anything with that. Specially bad is that is eferyone else is calling
    to me it cause the same problem - client will die. So it´s very easy to kill my client :) At the beginning I thought that it´s my computer problem but then it turned out that allmost all clients have the same problem. Computers are different kind of Lenovo
    laptops. 
    What can cause the problem? I have installed and reinstalled the client. I have updated all the drivers. I have removed Personal Skype to make sure that it won´t cause the problem but problem is still there. Server itself is updated with latest CU and Skype
    for Business UI is enabled as default UI. 
    Br,
    Taavi

    Hi,
    Please try to uninstall the default Sound Card, VGA Device/Video Card, Graphic Card, and use the default system driver to test the issue. Because sometimes update driver to the latest version doesn't work but only use the default system.
    Please also make sure OS system update to the latest version.
    Best Regards,
    Eason Huang
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Eason Huang
    TechNet Community Support

  • SQL Net Easy Configuratin closes in windows vista

    When I try to open Net Easy Configuratin in Windows vista programm closes. Please let me help to solve the problem.

    other programmes like SQL 3.3 installed from same CD working fine in VISTANot certified doesn't necessarily mean it won't work, but if you have problems.......
    and surely D2k is not certified, see Oracle Certification Matrices

  • LogMeIn Client not responding / freezes

    In the past two weeks we've noticed that when we connect to some computers that the LogMeIn client stops responding.  We can enter the credentials to initiate remote control, the LogMeIn Client screen goes black and then just sits there.  We're not able to login to the computer. This is happening on a couple computers when connecting to remote systems. The client version is 1.3.772.  The computers we're connecting to are Server 2008, Windows 7, Server 2012. The problem isn't consistent.  There are some computers where the connection is successful, but most are not. Anyone else having this issue?  Any resolution? Thanks for your help.

    I too am experiencing the same exact issue. My LMI Client is Running on 64bit Windows 8.  This just started happening a week or so ago. When I connect to certain computers, it says my connection is successful but it will just display a black screen/Window. Then the client its self will freeze up along with the Window that displays the computer that I'm "connected" to. It only happens on specific connections, but with those connections it happens every time. Half the time, the only way to get it to go away is to use Windows task manager and kill the LMI task.. Other connections will work fine. Even if I attempt to use LMI via the browser with the same thing will happen(*If I choose to download the applett), unless I start a limited session. I've tried completely uninstalling/reinstalling multiple times, I also thought it could be something weird with my PC so I've ran some cleanup task, SFC, CHKDSK, etc. However, nothing has worked. Its crucial that I figure out whats going on, as my job requires my to connect to multiple computers a day!  Does anyone have any idea what is going on here??-Any Help would be Extremely appeciated!!Thanks in advance

  • SCCM2012 Clients not responding to Application deployments

    Hi
    I have around 4000 Windows 7 Enterprise PCs with SCCM2012 SP1 CU2 clients on our network, all seem to be working fine apart from around 50 or so that have developed a strange issue.
    They no longer seem to be accepting or responding to Application deployments. Package deployments however, are working fine on those PC's.
    Policies seem to be applying but anything to do with Applications is ignored.
    The App discovery and App Enforce logs have not updated on these clients for around a month now and no matter what we throw at them seems to fix them, We've tried Hard policy resets, client reinstalls, WMI repository rebuilds, etc. and now we're leaning
    towards possible OS rebuilds but do not really want to go to that extreme.
    Would updating our environment to R2/Latest CU benefit this particular issue? Our company policy is to only update a major application if the associated update or fix is required to cure any issues incurred so the R2/CU2 would have to be proven to fix this
    issue!
    Any ideas anyone?

    Thanks for the reply.
    What's your recommended method for WMI Repair?
    I have been up until 2012, using the WMI repair tool found in the SCCM2007 version of Roger Zander's Client Center but this does not seem to make any difference with this particular issue.
    What would be nice is a single VBS that uninstalls the client, repairs WMI and then re-installs the client but I'm no code person.
    On the dependency chain thing, this hits the nail on the head with our issue as we were doing a trial rollout of IE, Office 2013 and our custom document management system all in one deployment and the dependency list was around 15. Makes sense if this is
    the root cause.

  • EASY VPN hardware client not working.

    Hello,
    I'm experiencing an issue. I have the following topology:
    192.168.12.0 /24 --- inside192.168.12.1(ASA5502)192.168.1.71 dhcp ---192.168.1.254 ISP GATEWAY ===201.144.194.226 PEER --Inside 192.168.0.0
    I have VPNCLIENT configured correctly but can't seem to pass traffic or get the tunnel up. I'm attaching debug crypto isakmp 10, debug crypto ipsec 10, logging debug messages. Also find the config attached.
    I'm trying to reach from 192.168.12.10 to a server 192.168.1.200 on remote.
    Running version 8.2(5)
    Any idea of what i have configured wrong?
    Thanks
    Tony

    Couple of quick comments:
    1. I do not see 192.168.0.0 part of that inside_outbound_nat0_acl ACL.
    2. I see a crypto map instance 40 with "incomplete" crypto map, which is actually missing a match address.
    crypto map outside_map 40 ipsec-isakmp
    crypto map outside_map 40 set peer 216.27.161.109
    crypto map outside_map 40 set transform-set ESP-DES-MD5
    ! Incomplete
    Not sure if this is the current configuration from the pix. If there is a crypto map instance with a incomplete match address, all traffic will be encrypted.
    Regards,
    Arul

  • MDM Clients not responding

    Hi All,
    I am not able to access any of my MDM clients.
    In console, when I mount the MDM server, the cursor gets stuck in the busy mode and nothing happens after that.
    other clients Import Manager, Data Manager and Syndicator, when I click on them, the clients doesn't open but I see the processes running in the task manager.
    MDM server is up and running.
    What might be the problem?
    Please give me your inputs.
    Regards,
    Sravan

    Hi John,
    I am using a system with a 32 bit Windows 7 Professional OS to connect to the clients.
    The MDM version is MDM 7.1 SP 07.
    This is not the first time I am connecting through this system. I was not facing this issue before.
    Just wondering what would have went wrong now.
    Regards,
    Sravan

Maybe you are looking for