Error in Remote Connect Oracle with MTS Mode

I've configed my database to run MTS.
My db is 8.1.5 with x86 Unix SunOS 5.7
If I connect db through local area network, I can connect it with MTS mode.
But if I try to connect db from a remote site, I can't connect and the following error shown :
ERROR:
ORA-12545: Connect failed because target host or object does not exist
By adding a clause (SERVER = DEDICATED) in my remote client's tnsnames.ora
I can connect it.
Rgds,
Edward
The following is my configuration.
init.ora :
mts_dispatchers = "(PROTOCOL=TCP)(DISP=3)"
mts_dispatchers = "(PROTOCOL=TCP)(PRE=oracle.aurora.server.SGiopServer)"
mts_servers = 1
mts_max_servers = 40
mts_max_dispatchers = 4
listener.ora :
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = QQQQdb)(PORT = 1521))
(DESCRIPTION =
(PROTOCOL_STACK =
(PRESENTATION = GIOP)
(SESSION = RAW)
(ADDRESS = (PROTOCOL = TCP)(HOST = QQQQdb)(PORT = 2481))
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = /u01/app/oracle/product/8.1.5)
(PROGRAM = extproc)
(SID_DESC =
(GLOBAL_DBNAME = QQQQdb.net)
(ORACLE_HOME = /u01/app/oracle/product/8.1.5)
(SID_NAME = QQQQdb)
tnsnames.ora :
QQQQDB =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = QQQQdb)(PORT = 1521))
(CONNECT_DATA =
(SERVICE_NAME = QQQQdb.net)
EXTPROC_CONNECTION_DATA =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
(CONNECT_DATA =
(SID = PLSExtProc)
(PRESENTATION = RO)
null

I have run into the same problem using oracle 8.1.6.1 with redhat 6.2..
I have found out that only when I specify host ip in the mts_dispatchers the mts will work correctly..(specifying host domain name is no use)
Here is a sample of the configuration, hope that helps..
mts_dispatchers = "(address=(protocol=tcp)(host=192.168.0.1))(dispatchers=4)"

Similar Messages

  • Error "The remote connection was disconnected because there are no Remote Desktop License Servers available to provide a license. Please contact the server administrator"

    Hi,
    I have been using Windows server 2012 at my company and generally take a remote access to this server. However, since last few days, I have been receiving the Error "The remote connection was disconnected because there are no Remote Desktop License
    Servers available to provide a license. Please contact the server administrator". 
    My entire work has come to a halt because of this error as all my applications are running this server and their remote access is needed for my regular requirements. 
    I had tried one of the solutions proposed at one of these forums especially using gpedit.msc but to no avail. 
    Regards,
    Aditya

    Hi Aditya,
    Thank you for posting in Windows Server Forum.
    Agree with the words of armin, please verify that you have properly installed correctly. Verify RDS Licensing service running on License Server. Verify that the client, the RDS server, and the license server can communicate by ensuring that Domain Name System
    (DNS) is configured correctly on each computer. You can run the ping command from each computer to each computer using the IP address, FQDN, and the NetBIOS name. If any of the ping commands fail, verify the DNS configuration on the network.
    In addition, you can also try “GracePeriod” registry setting on this path (HKLM\System\CurrentControlSet\Control\Terminal Server\RCM) from
    this article.
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • Connect Oracle with AS400

    Iam new in this , what I need, for connect Oracle with AS400...? someone Can Help me please.....
    Thanks!!!

    http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/integrat.htm#sthref3364

  • How connect Oracle with AS400?

    Hi!
    I don´t know how i can connect oracle with AS400 , what I need for make the connection?

    Hi,
    You have 3 options:
    - Oracle Transparant Gateway for DRDA
    This product is available for Windows, Linux, AIX, HP-UX PA-RISC and Solaris SPARC
    It uses the IBM DRDA protocol (over TCP/IP) to establish a connection with DB2400
    - Oracle Transparant Gateway for DB2/400
    This product needs to be installed on the AS/400
    - Generic Connectivity (aka HSODBC)
    This is a default Oracle Database feature that is available for Windows, Linux x86,
         AIX, HP-UX PA RISC and Solaris Sparc.
         In addition it requires a suitable ODBC-Driver (32-bit) that is able to connect to
         DB2/400
    The gateways require additional license from Oracle, while HSODBC requires additional license for a third party ODBC vendor. Furthermore do gateways support the two phase commit protocol and calling DB2/400 stored procedures.
    Regards,
    Ed
    DRDA over TCP/IP
    Message was edited by:
    ebangma

  • An error occured when connecting java with Ms Access

    Hello Everybody
    I am a new developer in java and want to connect java with Microsoft Access
    i am using JCreator LE
    My code is to insert 3 records for 3 members and then save them in DB and retrieve the information
    Here is the code
    import java.sql.*;
    public class Project3 {
        public static void main(String[] args) {
             try {
                  System.out.println("Beginning Connection");
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                String accessFileName = "Information";
                String connURL = "jdbc:odbc:;DRIVER=Microsoft Access Driver (*.mdb);DBQ="+accessFileName+".mdb;PWD=";
                Connection con = DriverManager.getConnection( connURL ,"","");
                Statement stmt = con.createStatement();
                System.out.println("Connection done successfully");
                stmt.execute("Create table Member(Name String,ID Integer)");
                stmt.execute("insert into Member values ('Joe','1234')");
                stmt.execute(" select * from Member");
                ResultSet rs=stmt.getResultSet();
                if (rs != null)
                     while (rs.next()){
                          System.out.println("Name: "+rs.getString("Name")+ "ID: " + rs.getString("ID"));
                stmt.close();
                con.close();
                catch (Exception e) {
                System.out.println("An error Occurred in Connecting with the DB " );
    }and the error is
    Beginning Connection
    Connection done successfully
    An error Occurred in Connecting with the DB
    it didn't insert information in the DB

    Well, thank u i have traced the error and fx it
    but
    how to modify the code and keep the user entering 3 values and search for the entered values??
    Here is the correct code
    import java.sql.*;
    public class Project3 {
        public static void main(String[] args) {
             try {
                  System.out.println("Beginning Connection");
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                String accessFileName = "jdbc:odbc:Project";
                String connURL = "jdbc:odbc:;DRIVER=Microsoft Access Driver (*.mdb);DBQ="+accessFileName+".mdb;PWD=";
                Connection con = DriverManager.getConnection( accessFileName);
                Statement stmt = con.createStatement();
                System.out.println("Connection done successfully");
                stmt.execute("Create table Member(Name String,ID Integer)");
                stmt.execute("insert into Member values ('Joe','1234')");
                stmt.execute(" select * from Member");
                ResultSet rs=stmt.getResultSet();
                if (rs != null)
                     while (rs.next()){
                          System.out.println("Name: "+rs.getString("Name")+ "ID: " + rs.getString("ID"));
                stmt.close();
                con.close();
                catch (Exception err) {err.printStackTrace();}
    }

  • How to connect oracle with ms access database

    Dear
    We are on release r12, right now we have requirement to connect oracle database with ms access to get some information. We have found gateway(Heterogeneous services) using ODBC, but at the database side where is installed oracle r12 there is no installed ms access software becuse of linux operating system, so how could it will connect ms access because without installing ms-access we are unable to find ms ODBC gateway in ODBC driver under the control panel.
    Can any body guide me how could achieve this
    Edited by: oracle0282 on Sep 21, 2011 12:47 AM

    If I understand you correctly you want to access Oracle on Linux from MS-Access (possible on Windows only). You need neither a gateway nor Heterogeneous Services, but an Oracle client including ODBC driver (Instant client with ODBC driver is enough) on the Windows machine.
    Configure the ODBC driver with the connect informations to the Oracle server.
    Werner

  • Connecting oracle with php

    hi all,
    i am using Xammp 1.7.4, PHP version 5.3.5, apache 2.2, and oracle 11g. actually i know how to connect MySql using php, but now i am trying to connect oracle using php. Can any 1 tell me the clear cut steps to do the same ?

    You need to add the right oci8 DLL or .so to php.ini and make sure it has access to Oracle client libraries. These Oracle libraries are from an Oracle Home or Oracle Instant Client.
    Without knowing your platform and whether the Oracle DB is on the same machine as Xampp the best place to start is to look at
    http://www.oracle.com/technetwork/articles/technote-php-instant-084410.html

  • How to connect  oracle with c++

    i wanted to know that how should i connect oracle to c++.
    kindly list me the commands which i need to write to access database fro oracle.
    thanks ...

    If you're attempting to use the ODBC API directly, have you downloaded the ODBC SDK from Microsoft? That will include some sample code, which is a great starting point. So far as I'm aware, you shouldn't need to configure anything in Borland C++ that you don't have to configure in any other C++ compiler to use ODBC.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • How to connect Oracle with Jsp?

    Hi,
    I am student and I am trying to use Jsp to connect oracle. Do you have any sample to show how to do it?
    Thanks a lot.
    Amy

    In JSP, you connect to the Oracle in a same way as you would do it in any Java application, using JDBC. Please refer to Java Tutorial -> JDBC on sun site and you will get easy and straight forward concepts.

  • Error through Remote Connection

    Hi Experts,
              we have done crystal report add-on for our client in SAP b1 2007B. It is working fine in the client system. The same is not working when we are taking the REMOTE CONNECTION OF THE CLIENT SYSTEM. We are not able to identify the issue. Any help....
    Thanks in Advance
    Rajesh.

    Hi Gordon,
         We are taking the remote connection through "MSTSC - Remote Desktop".
    Thanks in Advance
    Rajesh.

  • Can I open remote connection manager with no menu bar

    I am running a LabVIEW executable that does not have the standard menu bar, is there a way to programmatically open the remote connection manager.  I know that I can access properties that provide this data, but if possible I wanted to make use of the code that LabView has already created

    It's a VI called connection manager in \Project\remotepanel.llb.

  • Remote front panel with viewing mode in monitor jams if two browser connects

    I made a exe with the vi attached, with the web publishing viewing mode set to monitor every 1s.
    I copy all the executables and generated files to a target computer. The target computer is 4 CPU 2Ghz, 1Gb RAM, Windows 2000.
    If I open a client web browser connection to the remote panel, everything is fine, I can see updates every 1s or so.
    But if I open two client web browser connections, the display in the two web browser grinds to a halt, and the exe in the server computer slows down from 1s update to 6s update.
    If shut off one client web browser, the other client browser and the exe in server go back to normal speed.    
    So what is the problem? How do I solve this problem? Is this problem solvable?  
    Attachments:
    monitor4.vi ‏85 KB

    Bump. 

  • Remote connect  / Oracle driver

    Using Oracle 10g and Perl 5.8.0 on linux, I'm connecting remotely using a Oracle driver compile in Perl. When I run my script I receive the following error:
    "install_driver(Oracle) failed: Can't load '/usr/local.....site_perl/5.8.0/i386-linux-thread-multi/auto/DBD/Oracle/Oracle.so' for module DBD::Oracle: libclntsh.so.10.1; cannot open shared object file: No such file or directory at /usr/lib/perl5/5.8.0/i386-linux-thread-multi/DynaLoader.pm line 229."
    Both the Oracle.so and the DynaLoader.pm are on the machine I'm running the connect script from.
    Any help is appreciated!

    Place some debugging code and see if URL is null. Also, although it is nice practice, you don't need to catch every type of exception. Try (no pun intended):
    catch (Exception e) {
    System.err.println(e.getClass().getName() + ":" + e.getMessage());
    - Saish
    "My karma ran over your dogma." - Anon

  • Connection Oracle with ASP

    Hi all.
    I have problems with connection ASP and Oracle. I use Windows Server 2008 Enterprise R2 64 bit.
    All this string connections not working:
    cn.Open "Provider=MSDASQL;DRIVER={Microsoft ODBC for ORACLE};UID=ROOT;PWD=XXXXXX;Server=ORCL"
    cn.Open "Provider=MSDAORA.1;Password=XXXXXX;User ID=ROOT;Data Source=ORCL;Persist Security Info=True;"
    cn.Open "Provider=msdaora; Data Source=ORCL; User Id=ROOT; Password=XXXXXX;"
    cn.Open "Driver={Microsoft ODBC for Oracle};Server=ORCL;Uid=ROOT;Pwd=XXXXXX;" Can you help me?
    Many thanks
    MR

    Thanks x your help.
    Now I have this error:
    ORA-12154: TNS:could not resolve the connect identifier specified
    Connection string:
    cn.Open "Provider=OraOLEDB.Oracle;Data Source==C800FSI1;UserId=DIP;Password=XXXXXX;"Listener.ora
    # listener.ora Network Configuration File: C:\app\Administrator\product\11.2.0\dbhome_2\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = CLRExtProc)
          (ORACLE_HOME = C:\app\Administrator\product\11.2.0\dbhome_2)
          (PROGRAM = extproc)
          (ENVS = "EXTPROC_DLLS=ONLY:C:\app\Administrator\product\11.2.0\dbhome_2\bin\oraclr11.dll")
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
          (ADDRESS = (PROTOCOL = TCP)(HOST = C800FSI1)(PORT = 1521))
    ADR_BASE_LISTENER = C:\app\Administratorsqlnet.ora
    # sqlnet.ora Network Configuration File: C:\app\Administrator\product\11.2.0\dbhome_2\network\admin\sqlnet.ora
    # Generated by Oracle configuration tools.
    # This file is actually generated by netca. But if customers choose to
    # install "Software Only", this file wont exist and without the native
    # authentication, they will not be able to connect to the database on NT.
    NAMES.DEFAULT_DOMAIN = C800FSI1
    SQLNET.AUTHENTICATION_SERVICES = (none)
    SQLNET.AUTHENTICATION = (none)
    NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)TnsNames.ora
    # tnsnames.ora Network Configuration File: C:\app\Administrator\product\11.2.0\dbhome_2\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    C800FSI1_2 =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = C800FSI1)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = C800FSI1_2)
    ORACLR_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
        (CONNECT_DATA =
          (SID = CLRExtProc)
          (PRESENTATION = RO)
    C800FSI1 =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = C800FSI1)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = C800FSI1)
    ORCL =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = C800FSI1)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = orcl)
      )Can you help me?
    Edited by: user6317803 on 26-gen-2011 13.01

  • Can I connect Oracle with SQL-Server

    Hi,
    Is it possible to do Oracle hetrogeneous connectivity with Sql Server??
    Regards,
    Darshan

    Hi,
    I wanted to know whether Transparent Gateway for SQL Server is installed or not?
    In my $ORACLE_HOME I found following folders
    tg4ifmx, tg4ingr, tg4sybs, tg4tera.
    =========================
    If I want to install Gateway for SQL Server, From where do I install it???
    JAI HIND
    Darshan

Maybe you are looking for

  • ICal monthly view 12 hour v 24 hour display

    How do I get time displayed as (for example) 7.20am showing on Monthly view in iCal on Lion.  It shows in the event but not on Monthly view.

  • Character conversion error

    Hi all, We are getting the following error when trying to parse an xml string resource - Character conversion error: "Illegal ASCII character, 0xc2" (line number may be too low)-. We have not been able to get around this. We have tried creating the I

  • Which Approach?---Scan into JPEGs and then save as PDF or scan into PDF?

    I am now learning to use my Canon Pixma MX870. I installed the full suite of Canon printing, scanning, faxing and whatever else software they provide for this all-in-one. There are several different ways you can approach things with this machine whic

  • NitroAV FireWire 800/1394b Express Card (34)

    After some foot dragging by FireWire direct, today I finally received the NitroAV FireWire 800/1394b Express Card ordered almost a month ago. First Impressions: Unimpressive at best. According to the FireWire direct rep, it is supposed to work using

  • My Creative Zen Nano Plus bro

    my Creative Zen Nano Plus mp3 player stopped working after i dropped the mechanical part. When I checked it, I didn't see any chip marks or anything, but still it won't work. Can anyone help me? I'll post up pictures if u need me too, and I'll show h