SID vs Service_Name

Came across these entries (example) in TNSNAMES.ORA on a client machine; and need some clarifications from the gurus here.
10g TNSNAMES.ORA Server 123.456.789.111
DEV.SERVER.WORLD.COM =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = TCP)(HOST = 123.456.789.111)(PORT = 1521))
    (CONNECT_DATA =
      (SID = DEVWORLD)
      (SERVER = DEDICATED)
PROD.SERVER.WORLD.COM =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = TCP)(HOST = 123.456.789.111)(PORT = 1521))
    (CONNECT_DATA =
      (SID = PRODWORLD)
      (SERVER = DEDICATED)
10g LISTENER.ORA (Server 123.456.789.111
SID_LIST_LISTENER =
  (SID_LIST =
    (SID_DESC =
      (SID_NAME = DEVWORLD)
      (ORACLE_HOME=C:\oracle\product\10.2.0\db_1)
    (SID_DESC =
      (SID_NAME = PRODWORLD)
      (ORACLE_HOME=C:\oracle\product\10.2.0\db_1)
     (SID_DESC =
      (SID_NAME = BLAHBLAH)
      (ORACLE_HOME=C:\oracle\product\10.2.0\db_1)
11g TNSNAMES.ORA (server 123.456.789.000)
PRODSRV =
  (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 123.456.789.000)(PORT = 1521))
    (CONNECT_DATA =
      (SERVER = DEDICATED)
      (SERVICE_NAME = PROD.SERVER.WORLD.COM)
11g LISTENER.ORA (Server 123.456.789.000)
SID_LIST_LISTENER =
  (SID_LIST =
    (SID_DESC =
      (SID_NAME = CLRExtProc)
      (ORACLE_HOME = C:\Oracle\product\11.2.0\dbhome_1)
      (PROGRAM = extproc)
      (ENVS = "EXTPROC_DLLS=ONLY:C:\Oracle\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    (SID_DESC =
      (SID_NAME = PROD)
      (ORACLE_HOME=C:\Oracle\product\11.2.0\dbhome_1\)
Questions
1) Server level
In my 10g example, it looks like the link from LISTENER and TNSNAMES is SID_NAME. However, on the 11g, I'm seriously not sure how does it link considering SID_NAME is not on the TNSNAMES.
a) How does one suppose to specify TNSNAMES to correspond with the LISTENER so connections can be established?
b) Also, can 2 same SID exists on the same server?
c) What is that CLRExtProc on the 11g Listener? I don't think I have that database.
Client TNSNAMES.ORA
PRODSRV =
  (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 123.456.789.000)(PORT = 1521))
    (CONNECT_DATA =
      (SERVER = DEDICATED)
      (SERVICE_NAME = PROD.SERVER.WORLD.COM)
DEVWORLD =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = TCP)(HOST = 123.456.789.111)(PORT = 1521))
    (CONNECT_DATA =
      (SID = DEVWORLD)
      (SERVER = DEDICATED)
PRODWORLD =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = TCP)(HOST = 123.456.789.111)(PORT = 1521))
    (CONNECT_DATA =
      (SID = PRODWORLD)
      (SERVER = DEDICATED)
2) Server - Client level 
a) how does one normally sets up client connections?
As you can see from my client machine, some of the entries are with SID and some don't.
I can connect using alias the following: SQLPLUS SYS@PRODSRV or @DEVWORLD  or @PRODWORLD
b) I cannot connect even if I issue SET ORACLE_SID=PRODWORLD and then try SQLPLUS SYS as SYSDBA. Is this method used when connecting within server level?
Thanks.

Questions
1) Server level
In my 10g example, it looks like the link from LISTENER and TNSNAMES is SID_NAME. However, on the 11g, I'm seriously not sure how does it link considering SID_NAME is not on the TNSNAMES.
This isn't how this works. TNSNAMES.ora is a set of entries fore resolving service calls to connect to the database. You can connect through a SID or a SERVICE_NAME. Listener.ORA is to specify Listener parameters and how/where it will listen to connections.
a) How does one suppose to specify TNSNAMES to correspond with the LISTENER so connections can be established?
Do a lsnrctl status <listener_name> to get all the information of how the listener is working. What port and what SID/SERIVCE_NAME. From there set your TNSNAMES accordingly.
b) Also, can 2 same SID exists on the same server?
No. And I don't know why you would attempt this.
c) What is that CLRExtProc on the 11g Listener? I don't think I have that database.
This is for .NET extenstions and is configured automatically, don't need to concern yourself with it.

Similar Messages

  • Can I use both SID and SERVICE_NAME in my DG configuration?

    Hello,
    Need little guidance for the following senario
    I've got a shared database where more then one application connects to. To configure failover from primary to standby, I need SERVICE_NAME'ing but my applications connect using SID naming conventions to this DB
    Can I use both SID and SERVICE_NAME in DG configuration + make the applications failover to STANDBY DB as well?
    Regards,
    Kam

    You will hardly achieve a proper connect to your new Primary using SIDs after switchover.
    Stay away from using SID - connects with your applications and use application services for that instead.
    Kind regards
    Uwe Hesse
    http://uhesse.wordpress.com

  • 10g patchset 1 "guessing" wrong repository SID/service_name

    Does anyone know what file is used by patchset 1 to "guess" host,sid and service_name of the metadata repository? The installer is "guessing" wrong and (of course) doesn't allow for manual configuration of the parameter.
    Note: tried modifying the ias.properties file (prop. InfrastructureDBCommonName) but that didn't help.
    Thanks in advance,
    /SFL

    It might be worth mentionning that this particular 10g AS server has both the midtier and infrastructure instance on the same server (different oracle_home of course).
    I've succesfully patched the midtier instance but infrastructure patch is another story. When trying to connect using SYS the installer complains about not being able to connect using the password provided.
    THE PASSWORD WAS TESTED VIA AN OEM CONNECTION FROM ANOTHER WORKSTATION and it connected fine.
    Also, the installer reports a different SID then what is used from the workstation to test the connection...
    How can I make the installer use that SID which I know works?

  • Differences between Oracle SID / Instance/ Listener / Service or Service_Na

    Hi guys, i am confuse about the following terms above and how they relate to one another when connecting to a database..
    This is what i know
    - SID is the identifier of an Oracle Instance.
    - An Oracle Instance is a group of programs and memory allocated for accessing the database.
    - A database is a group of data files, control files etc.
    - A database can be accessed by different instances at the same time.
    - A instance can only access 1 database at a time.
    From what i know, this are my questions below
    1) An instance can only access 1 database(9i) at a time, but does that mean an instance can also access another database of different version(10g) at another time ? If it is possible, what parameter file should i look into ?
    2) Can i run two or more instances in the same computer if each instance is assign to access different database of the same version or different version?
    3) let say i have 2 instance each accessing a database of its own, how many listener do i need ?
    4) when i look into tnsnames.ora, some of the connect_data contains SID, whereas some only contains service_name.
    Can I know what is Service_Name ?
    What is the difference between SID and service_name when use in accessing the database?
    Care to advice? Thanks gurus. Deeply appreciated.

    Hi guys, i am confuse about the following terms above
    and how they relate to one another when connecting to
    a database..
    This is what i know
    - SID is the identifier of an Oracle Instance.
    - An Oracle Instance is a group of programs and
    memory allocated for accessing the database.
    - A database is a group of data files, control files
    etc.
    - A database can be accessed by different instances
    at the same time.
    - A instance can only access 1 database at a time.
    From what i know, this are my questions below
    1) An instance can only access 1 database(9i) at a
    time, but does that mean an instance can also access
    another database of different version(10g) at another
    time ? If it is possible, what parameter file should
    i look into ?No it is not possible, the instance is associated to only one database. The oracle instance is created based on the rdbms installed version, and the rdbms version (including patchset) should match the database version, otherwise, the operation dba should perform is the upgrade process.
    2) Can i run two or more instances in the same
    computer if each instance is assign to access
    different database of the same version or different
    version?Yes, you can first have as much installed RDBMS as your computer can have, obviously each rdbms installed on different Oracle Homes (restriction started since 8.1.5), and you can start as many instances as the host is able to handle depending on the resources and kernel parameter the host is configured with.
    3) let say i have 2 instance each accessing a
    database of its own, how many listener do i need ?The minimum number of listeners is 1, this is enough to handle all connections, if you are planning to setup more than two listeneres, it is up to you, each listener must have its own port and you should beware of the self-instance registration issues at the default 1521 port.
    4) when i look into tnsnames.ora, some of the
    connect_data contains SID, whereas some only contains
    service_name.
    Can I know what is Service_Name ?
    What is the difference between SID and service_name
    when use in accessing the database?SID is the way Oracle used to configure tns connect alias up to version 8.0 it is just considered for backward compatibility, but its use should be deprecated. Using services is the way to configure tns connect alias starting from 8i. A service is a way to refer to an instance. Administering by means of services is a helpful topic when administering RAC environments. You can declare certain instances to belong to a service and other to another service name, this way you can better distribuite workloads during peak hours and off time, you can better schedule tasks and avoid bottlenecks by redirecting jobs to specific services and using features such as resource manager.
    ~ Madrid

  • TNS:listener was not given the SID in CONNECT_DATA

    Hi Experts,
    I would like share my current issues that might you have this.
    Currently we have 1 external application that need to connect to oracle DB.
    The input are 3 things, database type (oracle), servername, DB username and password.
    I have created another SID on my DB. so 1 oracle running 2 SID.
    My tnsname.ora would be:
    NKD.WORLD =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (COMMUNITY = SAP.WORLD)(PROTOCOL = TCP)(HOST = vdhsnkd)(PORT = 1527))
    (CONNECT_DATA =
    (SID = NKD)
    (GLOBAL_NAME = NKD.WORLD)
    NKD_ORG.WORLD =
    (DESCRIPTION =
    (ADDRESS = (COMMUNITY = SAP.WORLD)(PROTOCOL = TCP)(HOST = vdhsnkd)(PORT = 1527))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SID = NKDORG)
    (SERVICE_NAME = NKD_ORG)
    (GLOBAL_NAME = NKD_ORG.WORLD)
    LISTENER_NKDORG.WORLD =
    (ADDRESS = (COMMUNITY = SAP.WORLD)(PROTOCOL = TCP)(HOST = vdhsnkd)(PORT = 1527))
    and my listener.ora
    ADR_BASE_LISTENER_NKDORG = /oracle
    SID_LIST_LISTENER_NKD =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = NKD)
    (ORACLE_HOME = /oracle/NKD/112_64)
    CONNECT_TIMEOUT_LISTENER_NKD = 10
    LISTENER_NKDORG =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = vdhsnkd)(PORT = 1521))
    STARTUP_WAIT_TIME_LISTENER_NKD = 0
    ADMIN_RESTRICTIONS_LISTENER_NKD = on
    LISTENER_NKD =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = NKD.WORLD))
    (ADDRESS = (PROTOCOL = IPC)(KEY = NKD))
    (ADDRESS = (COMMUNITY = SAP.WORLD)(PROTOCOL = TCP)(HOST = vdhsnkd)(PORT = 1527))
    TNSping successfull, lsnrctl status have The listener supports no services.
    I can connect to DB via sqlplus.
    But everytime the apps try to connect always given me: TNS:listener was not given the SID in CONNECT_DATA

    Hello;
    I think the issue is here, using both a service_name and a SID.
    NKD_ORG.WORLD =
    (DESCRIPTION =
    (ADDRESS = (COMMUNITY = SAP.WORLD)(PROTOCOL = TCP)(HOST = vdhsnkd)(PORT = 1527))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SID = NKDORG)
    (SERVICE_NAME = NKD_ORG)
    (GLOBAL_NAME = NKD_ORG.WORLD)
    )SID missing from the CONNECT_DATA
    NKD_ORG.WORLD =
    (DESCRIPTION =
    (ADDRESS = (COMMUNITY = SAP.WORLD)(PROTOCOL = TCP)(HOST = vdhsnkd)(PORT = 1527))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SID = NKDORG)
    (SERVICE_NAME = NKD_ORG)
    (GLOBAL_NAME = NKD_ORG.WORLD)
    )should be
    (CONNECT_DATA =
            (SERVICE_NAME = NKD_ORG)
        ) You have (SERVER = DEDICATED) and (SID = NKDORG) between
    In any event this is almost always an issue with the tsnames.ora file.
    http://docs.oracle.com/cd/B19306_01/win.102/b14307/featConnecting.htm#sthref114
    About Naming and Connect descriptors :
    http://download.oracle.com/docs/cd/B19306_01/network.102/b14212/concepts.htm#i1041378
    http://download.oracle.com/docs/cd/B19306_01/network.102/b14212/naming.htm#sthref683
    Worth checking the parameter "local_listener" I'm thinking this should be set default.
    Also check lsnrctl status and/or restart/start the listener
    TROUBLESHOOTING GUIDE TNS-12518 TNS listener could not hand off client connection [ID 550859.1]
    Best Regards
    mseberg
    Edited by: mseberg on Apr 5, 2012 5:39 AM
    Edited by: mseberg on Apr 5, 2012 7:07 AM

  • Passwords dont work

    i get error ORA 12154
    i have use SCOTT/TIGER and MANAGER/SYSTEM
    they dont work.
    this is my tnsnames file in admin::
    # TNSNAMES.ORA Network Configuration File: C:\DevSuiteHome\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = beinke-dac02b93)(PORT = 1521))
    (CONNECT_DATA =
    (SID = ORCL)
    I do not have a data base insatlled.
    Second question:
    How do I load 2 downloaded CD's. I want to get the info on the second disk to load???
    Sid

    ORA-12154 indicates that you're having problems connecting, not that you're having problems with passwords.
    If you don't have a database on your local machine, what database are you trying to connect to? You'll need to contact the DBA of the remote database and ask for the connection information (SID or SERVICE_NAME, HOST, PORT, etc).
    I'm not sure what you're asking with regard to the downloaded CD's. Is this data you're trying to load into a database? Are these Oracle CD's?
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • From Time to Time error while executing RMAN Job

    Hi everybody,
    i have a strange problem. From time to time i recieve following error when executing a Job from Grid Control (Enterprise Manager).
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-04004: Fehler aus Recovery-Katalog-Datenbank: ORA-12170: TNS: Connect Timeout aufgetreten
    After that error the Job uses the Control File of the Database so the job runs. The strange thing for me is, that sometimes the jobs runs without problems and sometimes it gaves the error shown above.
    For clarifying. Grid Control runs on a Unix (Sun Solaris) Machine and the target Database runs on a Windows Server in a DMZ. I tried to find out what the problem is but neither on the windows server nor on the firewall side there are any problems.
    So can anybody help me finding out what the problem is?
    Any help would be appreciated.
    Greetings

    Hi sunny,
    i have tried the tnsping several times. There is no problem with this. The tnsping works without problems and in an appropriate time.
    When i issue the command on our unix machine it shows the following:
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = srvxyz)(PORT = 1521))) (CONNECT_DATA = (SID = db1) (SERVICE_NAME = db1)))
    OK (10 msec)
    And when issue it on the Windows Server the follwoing output is shown:
    TNS Ping Utility for 64-bit Windows: Version 10.2.0.4.0 - Production on 26-APR-2011 10:35:45
    Copyright (c) 1997, 2007, Oracle. All rights reserved.
    Parameterdateien benutzt:
    O:\ORACLE\product\10.2.0\network\admin\sqlnet.ora
    Adapter TNSNAMES zur Auflösung des Alias benutzt
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (COMMUNITY = tcp.world)(PROTOCOL = TCP)(Host = SRVXYZ)(Port = 1521))) (CONNECT_DATA = (SID = db1)))
    OK (0 ms)
    So any other ideas??

  • Unable to use "easy connect" method to XE database

    All,
    I have an XE database running on Oracle Enterprise Linux. If I create a tnsnames.ora entry I can connect to the server fine. However, if I try to connect via the easy connect method
    sqlplus user@host:port:sid it fails with
    Enter password:
    ERROR:
    ORA-12545: Connect failed because target host or object does not exist
    the hostname I am using is definitely correct and I've also tried with ip address and get same error message. If I change from SID to SERVICE_NAME
    sqlplus user@host:port/service
    I get the following error message
    ERROR:
    ORA-12514: TNS:listener does not currently know of service requested in connect
    descriptor
    I've used both XE and xe as service name. The service name in my tnsnames.ora entry that works uses lower case xe for service name.
    Any help out there would be appreciated.

    Maybe this is more significant for you ?
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.
    C:\Documents and Settings\User1>sqlplus test/test@xe
    SQL*Plus: Release 10.2.0.1.0 - Production on Sat Feb 3 14:05:49 2007
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    ERROR:
    ORA-12154: TNS:could not resolve the connect identifier specified
    Enter user-name: test/[email protected]/xe
    Connected to:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for Linux: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    SQL>

  • Net8 Connection Error

    I am using the Migration Assistant for MS Access (version 8.1.5)
    to migrate a database from Access 97 to Oracle 8i. At the
    Provide Oracle Connection Information Page of the Assistant, I
    get a Specifying Net8 Connection Error.
    So my question is what should I be putting in the Net8
    Connection box to make this work?
    Thanks for your help.
    Cynthia Savage
    null

    Cynthia,
    Here is an email giving example configuration files with
    some description of them (names changed from customer names):
    Mr. Blue
    Here are example configuration files for
    Database SID V716 (alias name V716)
    Machine ierm5
    .ie ie is the domain name
    protocol sqlnet v2 tcp protocol adapter
    ORACLE_HOME /home3/ora716
    listener tcp port number 2022
    (community name tcp_com)
    [I created these files with the 716 version of netman, oracle has
    newer tools
    available]
    files:
    ./tcp_com_ie [this directory is for the clients]
    ./tcp_com_ie/tnsnames.ora
    ./tcp_com_ie/sqlnet.ora
    ./ierm5_ie [this directory is for the server]
    ./ierm5_ie/listener.ora
    ./ierm5_ie/tnsnames.ora
    ./ierm5_ie/sqlnet.ora
    Because of the different SID ,alias , machine name and oracle
    home these files
    will not work on your machine, on this machine;
    I copy the client files to another machine, and set the TNS_ADMIN
    environment
    variable on both machines,
    make sure oracle, lsnrctl , tnslsnr and the client side
    executeable
    (eg sqlplus) are linked with sqlnet v2 tcp protocol adapter.
    <startup server database>
    start up server listener
    lsnrctl start
    when this is up and listening
    sqlplus scott/tiger@V716 on the client machine should connect.
    If you have any questions please contact me,
    Mr. Black
    P.S. The netman generated *.ora files follow
    tcp_com_ie (this is for clients)
    tcp_com_ie/tnsnames.ora :::::::::::::::::::::::
    # Filename......: tnsnames.ora
    # Name..........: LOCAL_REGION.world
    # Date..........: 26-JUN-95 08:52:57
    V716.ie =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (COMMUNITY = tcp_com.ie)
    (PROTOCOL = TCP)
    (Host = ierm5.ie)
    (Port = 2022)
    (CONNECT_DATA =
    (SID = V716)
    (GLOBAL_NAME = V716.ie)
    tcp_com_ie/sqlnet.ora :::::::::::::::::::::::::
    # Filename......: sqlnet.ora
    # Name..........: tcp_com.ie
    # Date..........: 26-JUN-95 08:52:57
    AUTOMATIC_IPC = ON
    TRACE_LEVEL_CLIENT = OFF
    SQLNET.EXPIRE_TIME = 0
    NAMES.DEFAULT_DOMAIN = ie
    NAME.DEFAULT_ZONE = ie
    SQLNET.CRYPTO_SEED = "77703457783395"
    ierm5_ie (this is for server)
    ierm5_ie/listener.ora :::::::::::::::::::::::::
    # Filename......: listener.ora
    # Name..........: ierm5.ie
    # Date..........: 26-JUN-95 08:52:57
    LISTENER =
    (ADDRESS_LIST =
    (ADDRESS=
    (PROTOCOL=IPC)
    (KEY= V716.ie)
    (ADDRESS=
    (PROTOCOL=IPC)
    (KEY= V716)
    (ADDRESS =
    (COMMUNITY = tcp_com.ie)
    (PROTOCOL = TCP)
    (Host = ierm5.ie)
    (Port = 2022)
    STARTUP_WAIT_TIME_LISTENER = 0
    CONNECT_TIMEOUT_LISTENER = 10
    TRACE_LEVEL_LISTENER = OFF
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = V716)
    (ORACLE_HOME = /home3/ora716)
    ierm5_ie/tnsnames.ora :::::::::::::::::::::::::::::::
    # Filename......: tnsnames.ora
    # Name..........: LOCAL_REGION.world
    # Date..........: 26-JUN-95 08:52:57
    V716.ie =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (COMMUNITY = tcp_com.ie)
    (PROTOCOL = TCP)
    (Host = ierm5.ie)
    (Port = 2022)
    (CONNECT_DATA =
    (SID = V716)
    (GLOBAL_NAME = V716.ie)
    ierm5_ie/sqlnet.ora :::::::::::::::::::::::::::::::
    # Filename......: sqlnet.ora
    # Name..........: ierm5.ie
    # Date..........: 26-JUN-95 08:52:57
    AUTOMATIC_IPC = ON
    TRACE_LEVEL_CLIENT = OFF
    SQLNET.EXPIRE_TIME = 0
    NAMES.DEFAULT_DOMAIN = ie
    NAME.DEFAULT_ZONE = ie
    SQLNET.CRYPTO_SEED = "77703457783395"
    Forwarded message:
    From Mr. Black Fri Jun 23 15:35:50 1995
    Subject: sqlnetv2 configuration
    To: Mr. Blue
    Date: Fri, 23 Jun 95 15:35:50 BST
    Cc: Mr. X
    X-Mailer: ELM [version 2.3 PL11]
    Mr. Blue,
    It is hard for me to make any inroads on the problem with the
    information
    in the mail, but the problem is likely to be a configuration
    one.
    There are also configuration utilities but they may not do quite
    what you want.
    Short list of things that could be wrong:
    Host names incorrect
    Listener port numbers confused
    database names incorrect.
    Database not up
    Listener not up
    sqlnet tcp v2 not installed
    executables (eg oracle sqlplus lsnrctl tnslsnr)
    not relinked with sqlnetv2 and sqlnet tcp v2
    (use adapters command ie adapters <executable name>)
    domain name in sqlnet.ora confused with internet domain name
    different tnsnames.ora and sqlnet.ora being used due
    to different ORACLE_HOME ...
    note SID and SERVICE_NAME seem to be the same thing.
    Regards,
    Mr. Black
    In your case what I can suggest is:
    (SERVICE_NAME = trial.ftidc2.dc.ftinet.com)use
    (SERVICE_NAME = trial)
    TRIAL.DC.FTI-NET.COM =
    (DESCRIPTION =use this only if DC.FTI-NET.COM is referenced in your sqlnet.ora
    file otherwise use what is used there:
    NAMES.DEFAULT_DOMAIN = USE_THIS
    NAME.DEFAULT_ZONE = USE_THIS
    then use
    TRIAL.USE_THIS =
    (DESCRIPTION =
    your connection should be
    sqlplus username/password@TRIAL
    or TRIAL in the connection box
    [you will probably get better error feedback from sqlplus]
    Hope that helps,
    Turloch,
    Oracle Migration Team
    Cynthia Savage (guest) wrote:
    : Dear OMWT:
    : Thanks for the prompt response I tried your suggestion and I
    : still get the same error. So here is a copy of my tnsnames
    : file. Hopefully, you will be able to figure out where I am
    : still going wrong.
    : TRIAL.DC.FTI-NET.COM =
    : (DESCRIPTION =
    : (ADDRESS_LIST =
    : (ADDRESS = (PROTOCOL = TCP)(HOST =
    fti-dc2.dc.fti-net.com)
    : (PORT = 1521))
    : (CONNECT_DATA =
    : (SERVICE_NAME = trial.ftidc2.dc.ftinet.com)
    : Cynthia Savage
    : Oracle Migration Workbench Team wrote:
    : : In your ORACLE_HOME\Network\Admin directory you should have a
    : : tnsnames.ora file which contains Net8 connect entries for the
    : : Oracle Instances you may have either on your local machine or
    : on
    : : another machine on the network
    : : For example, in my tnsnames.ora file I have a Net8 connect
    : string
    : : as follows:
    : : IEDMD631.IE.ORACLE.COM =
    : : (DESCRIPTION =
    : : (ADDRESS_LIST =
    : : (ADDRESS = (PROTOCOL = TCP)(HOST = iedmd631)(PORT =
    : 1521))
    : : (CONNECT_DATA =
    : : (SERVICE_NAME = iedmd631)
    : : Within the access wizard I type in IEDMD631 for the Net8
    : Connect
    : : string.
    : : In this example, IEDMD631 is my machine name.
    : : Regards,
    : : Marie
    : : ===
    : : Cynthia Savage (guest) wrote:
    : : : I am using the Migration Assistant for MS Access (version
    : : 8.1.5)
    : : : to migrate a database from Access 97 to Oracle 8i. At the
    : : : Provide Oracle Connection Information Page of the
    Assistant,
    : I
    : : : get a Specifying Net8 Connection Error.
    : : : So my question is what should I be putting in the Net8
    : : : Connection box to make this work?
    : : : Thanks for your help.
    : : : Cynthia Savage
    : : Oracle Technology Network
    : : http://technet.oracle.com
    Oracle Technology Network
    http://technet.oracle.com
    null

  • Oracle_sid

    I tried to understand subtle differences btw instance_name,sid,db_unique_name,service_name.....gone through "http://www.dba-oracle.com/t_oracle_sid_instance_name_service_name.htm"..I have few questions..
    1) Can "oracle_sid" & "select instance_name from v$instance" be different?
    2)Can db_unique_name and service_names be different for a particular instance?
    Regards,
    Saikat

    Saikat Banerjee wrote:
    I tried to understand subtle differences btw instance_name,sid,db_unique_name,service_name.....gone through "http://www.dba-oracle.com/t_oracle_sid_instance_name_service_name.htm"..I have few questions..
    1) Can "oracle_sid" & "select instance_name from v$instance" be different?Please check
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:318216852435
    2)Can db_unique_name and service_names be different for a particular instance?
    Refer to
    http://docs.oracle.com/cd/B12037_01/server.101/b10755/initparams054.htm
    Oracle SID & SERVICE_NAME

  • Upgrade from 9i to 10g, solaris 8 listener problems now...

    I recently upgraded some databases from 9i to 10g. In an attempt to punt
    on the 9i listener - I attempted to start the 10g version of the listener
    which is producing the following error:
    -----paste
    lsnrctl startLSNRCTL for Solaris: Version 10.1.0.2.0 - Production on 15-AUG-2004
    15:13:03
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    Starting /data/oracle/app/oracle/product/10g/bin/tnslsnr: please wait...
    TNSLSNR for Solaris: Version 10.1.0.2.0 - Production
    Log messages written to
    /data/oracle/app/oracle/product/10g/network/log/listener.log
    Listening on:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=host.place.com)(PORT=1521)))
    Connecting to (ADDRESS=(PROTOCOL=tcp)(PORT=1521))
    TNS-01114: LSNRCTL could not perform local OS authentication with the
    listener
    -----/paste
    Looking into the logs I see:
    -----paste
    TNSLSNR for Solaris: Version 10.1.0.2.0 - Production on 15-AUG-2004
    15:13:03
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    Log messages written to
    /data/oracle/app/oracle/product/10g/network/log/listener.log
    Trace information written to
    /data/oracle/app/oracle/product/10g/network/trace/listener.trc
    Trace level is currently 0
    Started with pid=524
    Listening on:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=host.place.com)(PORT=1521)))
    TIMESTAMP * CONNECT DATA [* PROTOCOL INFO] * EVENT [* SID] * RETURN CODE
    15-AUG-2004 15:13:03 *
    (CONNECT_DATA=(CID=(PROGRAM=)(HOST=host)(USER=oracle))(COMMAND=status)(ARGUM
    ENTS=64)(SERVICE=LISTENER)(VERSION=168821248))
    * status * 1189
    TNS-01189: The listener could not authenticate the user
    TNS-12537: TNS:connection closed
    TNS-12560: TNS:protocol adapter error
    TNS-00507: Connection closed
    -----/paste
    I've read on this list that it might be a shared_memory_pool problem, So I
    think I've maxed out the mount of shared memory. This is a Sun Fire V240
    with 8G RAM, so /etc/system has:
    *set shmsys:shminfo_shmmax=268435456
    *set shmsys:shminfo_shmmax=4294967295
    set shmsys:shminfo_shmmax=8254455808
    set shmsys:shminfo_shmmin=200
    *set shmsys:shminfo_shmmni=200
    set shmsys:shminfo_shmmni=1024
    set shmsys:shminfo_shmseg=1024
    set semsys:seminfo_semmap=250
    set semsys:seminfo_semmni=500
    set semsys:seminfo_semmsl=500
    set semsys:seminfo_semmns=2000
    set semsys:seminfo_semmnu=500
    set semsys:seminfo_semume=100
    set semsys:seminfo_semvmx=32767
    set semsys:seminfo_semopm=100
    set noexec_user_stack = 1
    I am totally at a loss as to what the issue might be save some new tags
    needed in listener.ora... Any pointers/help more than welcome...
    Ian

    well, oracle's path seems to see 10g's version of the listener:
    hosts% which lsnrctl
    /data/oracle/app/oracle/product/10g/bin/lsnrctl
    I'm running this on the same host. ie loopback.
    After the error, the listener seems to be in the process table - but nothing can talk to it:
    oracle 856 818 0 20:05:06 pts/2 0:00 egrep lsnr
    oracle 838 1 0 19:57:26 ? 0:00 /data/oracle/app/oracle/product/10g/bin/tnslsnr LISTENER -inherit
    my listener.ora has:
    # listener.ora Network Configuration File: /data/oracle/app/oracle/product/10g/network/admin/listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /data/oracle/app/oracle/product/10g)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = host.place.com)(PORT = 1521))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /data/oracle/app/oracle/product/10g)
    (PROGRAM = extproc)
    (SID_DESC =
    (GLOBAL_DBNAME = erdos)
    (ORACLE_HOME = /data/oracle/app/oracle/product/10g)
    (SID_NAME = simora1)
    (SID_DESC =
    (GLOBAL_DBNAME = datamine)
    (ORACLE_HOME = /data/oracle/app/oracle/product/10g)
    (SID_NAME = datamine)
    (SID_DESC =
    (GLOBAL_DBNAME = interpnt.place.com)
    (ORACLE_HOME = /data/oracle/app/oracle/product/10g)
    (SID_NAME = interpnt)
    tnsnames has:
    DATAMINE.PLACE.COM =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = erdos.place.com)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = datamine)
    EXTPROC_CONNECTION_DATA.PLACE.COM =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    INST1_HTTP.PLACE.COM =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = erdos.place.com)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = SHARED)
    (SERVICE_NAME = MODOSE)
    (PRESENTATION = http://HRService)
    INTERPNT.PLACE.COM =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = erdos.place.com)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = interpnt.place.com)
    ERDOS.PLACE.COM =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = erdos.place.com)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = erdos)
    SCALES03 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = scales-a.place.com)(PORT = 1521))
    (CONNECT_DATA =
    (SID=SCALES03)
    (SERVICE_NAME = SCALES03)

  • HOW CAN I INTEGRATED OLD DATABASE TO NEW DATABASE

    Hello...........
    I use orace10g database for windows
    İt was formatted to my machine .it was a database ( old database )
    I installed new operating system again
    I installed oracle10g for windows again and I created a new database
    I want to integrated old database to new database
    I have backup old database in C driver
    thank you very much
    omer faruk akyuzlu
    turkey

    You have to use oradim
    oradim -NEW -SID SID | -SRVC service_name | -ASMSID SID | -ASMSRVC service_name
              [-SYSPWD password] [-STARTMODE auto | manual] [-SRVCSTART system | demand]
              [-PFILE filename | -SPFILE] [-SHUTMODE normal | immediate | abort] [-TIMEOUT
              secs] [-RUNAS osusr/ospass]

  • MS Access .mdb connection using ODBC could not resolve the connect identifier ORA-12154

    Dear All,
    I'm trying to use MS Access .mdb file as source to my OWB application. I need to connect to the ms access .mdb file first using odbc. Here are the step I do:
    1. Define ODBC connectifity
         control panel -> admin tools -> data sources -> System DSN -> Add
         Choose Microsoft Access Driver (*.mdb) -> Finish
         Data source name: msaccess -> Database: Select -> .mdb file location (C:\MSAccess\att2000..mdb)
    2. Configure Listener
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = CLRExtProc)
          (ORACLE_HOME = C:\app\Administrator\product\11.2.0\dbhome_1)
          (PROGRAM = extproc)
          (ENVS = "EXTPROC_DLLS=ONLY:C:\app\Administrator\product\11.2.0\dbhome_1\bin\oraclr11.dll")
        (SID_DESC =
          (SID_NAME = msaccess
          (ORACLE_HOME = C:\app\Administrator\product\11.2.0\dbhome_1)
          (PROGRAM = hsodbc)
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
          (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
        (SID_DESC =
          (SID_NAME = msaccess
          (ORACLE_HOME = C:\app\Administrator\product\11.2.0\dbhome_1)
          (PROGRAM = hsodbc)
    ADR_BASE_LISTENER = C:\app\Administrator
    3. Configure Oracle HS
         File name initmsaccess.ora
    # HS init parameters
    HS_FDS_CONNECT_INFO = msaccess
    HS_FDS_TRACE_LEVEL = 1
    # Environment variables required for the non-Oracle system
    #set <envvar>=<value>
    4. Edit tnsnames.ora
    msaccess=
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
        (CONNECT_DATA =
          (SID=msaccess)
          (SERVICE_NAME=msaccess)
      (HS=OK)
    5. create database link
    create database link msaccess using 'msaccess';
    6. Run a query to test connection
    SQL> select * from departments@msaccess;
    ERROR at line 1:
    ORA-12154: TNS:could not resolve the connect identifier specified
    I check the tns using tnsping msaccess, it return
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = localhos
    t)(PORT = 1521)) (CONNECT_DATA = (SID=msaccess) (SERVICE_NAME=msaccess)) (HS=OK))
    OK (120 msec)
    Any body know how to solve this?
    Best Regards
    Akhmad H Gumas

    Klaus,
    just fix the point you mention.
    here are the execution result:
    C:\>C:\app\Administrator\product\11.2.0\dbhome_1\bin\lsnrctl status
    LSNRCTL for 32-bit Windows: Version 11.2.0.1.0 - Production on 05-AUG-2014 17:10
    :23
    Copyright (c) 1991, 2010, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for 32-bit Windows: Version 11.2.0.1.0 - Produ
    ction
    Start Date                05-AUG-2014 17:09:18
    Uptime                    0 days 0 hr. 1 min. 5 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   C:\app\Administrator\product\11.2.0\dbhome_1\network\a
    dmin\listener.ora
    Listener Log File         c:\app\administrator\diag\tnslsnr\eric-fd165f15bb\list
    ener\alert\log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521ipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1521)))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
      Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "msaccess" has 1 instance(s).
      Instance "msaccess", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    C:\>C:\app\Administrator\product\11.2.0\dbhome_1\bin\dg4odbc
    Oracle Corporation --- TUESDAY   AUG 05 2014 17:12:18.509
    Heterogeneous Agent Release 11.2.0.1.0 - Production  Built with
       Oracle Database Gateway for ODBC
    C:\>C:\app\Administrator\product\11.2.0\dbhome_1\bin\tnsping msaccess
    TNS Ping Utility for 32-bit Windows: Version 11.2.0.1.0 - Production on 05-AUG-2
    014 17:12:48
    Copyright (c) 1997, 2010, Oracle.  All rights reserved.
    Used parameter files:
    C:\app\Administrator\product\11.2.0\dbhome_1\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = localhos
    t)(PORT = 1521)) (CONNECT_DATA = (SID=msaccess)) (HS=OK))
    OK (20 msec)
    Looks like the problem is the missing closing bracket. Finally the query work after i fix it. Thanks a lot Klaus
    Best Regards
    Akhmad H Gumas

  • Problem with database links (naming) Windows/Linux

    Hi
    Windows xp SP3_
    SQL*Plus: Release 11.2.0.1.0 Production on Wed Nov 21 10:28:21 2012
    Connected to:
    Oracle Database 11g Release 11.2.0.1.0 - Production
    name is PORCL30
    Linux (Ubuntu 12.04 LTS)_
    SQL*Plus: Release 11.2.0.1.0 Production on Wed Nov 21 10:28:21 2012
    Connected to:
    Oracle Database 11g Release 11.2.0.1.0 - Production
    Name is GWORCL
    My domain is Initial-Surname.co.uk (I-Surname.co.uk)
    Tnsnames.ora
    PORCL30 =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP) (HOST = home1.I-Surname.co.uk) (PORT = 1521) )
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SID = PORCL30)
    (SERVICE_NAME = PORCL30.I-Surname.co.uk)
    GWORCL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP) (HOST = freds-server.I-Surname.co.uk) (PORT = 1521) )
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SID = GWORCL)
    (SERVICE_NAME = GWORCL.I-Surname.co.uk)
    From Windows to Linux
    DROP DATABASE LINK "GWLINK4";
    CREATE DATABASE LINK "GWLINK4"
    CONNECT TO "SYSTEM" IDENTIFIED BY VALUES '051BDCE........D55BB704DA'
    USING 'GWORCL';
    results in a working database link named 'GWLINK4.I-Surname.co.uk'
    Where as
    Linux to Windows
    DROP DATABASE LINK "PLINK4";
    CREATE DATABASE LINK "PLINK4"
    CONNECT TO "SYSTEM" IDENTIFIED BY VALUES '0550AA0F39......AE5EF62220FE5A323'
    USING 'PORCL30';
    name is PLINK4 as determined by
    select DB_LINK from user_db_links;
    So what is different between the two databases other than the operating systems they run on? What should I examine?
    I should add that the linux PC is Internet facing and has a Public IP address (USB mobile broadband Modem) to which I-Surname.co.uk resolves via (ZoneEdit.com and ddclient). The ethernet lan port 10.10.1.35 connects to a switch where 10.10.1.30 (home1) is also connected (10.10.1.10 is the AD server)
    Thanks for your time
    Edited by: Neill_R on Nov 21, 2012 1:09 PM

    The problem is that the databases do not work in the same way. As I have said one produces DBLINK.i-surname.co.uk and the other DBLINK. Both machines are members of the i-surname.co.uk domain.
    In Sqldeveloper one can not alter the DBLINK since it has a "-" character (.I-Surname.co.uk)
    Why the difference?
    connect system@TNSGWORCL
    CREATE DATABASE LINK PLINK
    CONNECT TO SYSTEM IDENTIFIED BY
    USING 'TNSPORCL30';
    Connect system@tnsporcl30
    CREATE DATABASE LINK GWLINK
    CONNECT TO SYSTEM IDENTIFIED BY
    USING 'TNSGWORCL';
    connect system@tnsgworcl
    Enter password:
    Connected.
    select 1||' - '||db_link from sys.user_db_links
    union
    select 2||' - '||db_link from sys.user_db_links@PLINK
    DB_LINK
    1 - PLINK
    2 - GWLINK.I-SURNAME.CO.UK
    SQL> connect system@tnsporcl30
    Enter password:
    Connected.
    select 1||' - '||db_link from sys.user_db_links
    union
    select 2||' - '||db_link from sys.user_db_links@GWLINK
    DB_LINK
    1 - GWLINK.I-SURNAME.CO.UK
    2 - PLINK
    Tnsnames.ora
    # tnsnames.ora Network Configuration File: /opt/oracle/11g/network/admin/tnsnames.ora
    # Generated by Oracle configuration tools.
    TNSGWORCL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = freds-server.i-surname.co.uk)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SID = GWORCL)
    (SERVICE_NAME = GWORCL.i-surname.co.uk)
    TNSPORCL30 =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = home1.i-surname.co.uk)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SID = PORCL30)
    (SERVICE_NAME = PORCL30.i-surname.co.uk)
    )

  • Multiple Homes ORA-01078 LRM-00109

    Hi,
    i have three ORACLE_HOMEs with two databases at the same server in two homes which are named "stg" and "infra". Yes, it comes from an Oracle Collaboration Suite installation :-)
    After a restart of the server i'm facing the ORA-01078 LRM-00109 errors if i'm trying to start the infra-tier database.
    Because the stg-home is the main home, i have added the infra TNS and Listener informations to the stg-home Listener and TNSNames files.
    I'm using ONE Listener of the stg-tier.
    It's trying to use the stg-config files with the infra tier and it fails with the errors above:
    SQL> startup;
    ORA-01078: failure in processing system parameters
    LRM-00109: could not open parameter file 'C:\OCS_ONEBOX\STG\DATABASE\INITIASDB.O
    RA'
    SQL> startup;
    ORA-01078: failure in processing system parameters
    LRM-00109: could not open parameter file 'C:\OCS_ONEBOX\STG\DATABASE\INITIASDB.ORA'
    Should i try to create a initiasdb.ora in the stg-tier which points to the correct spfile of the infra tier or daoes it overwrite other files after the startup? Or how could i switch the homes for startup?
    My tnsnames and Listener entries seems to be okay. The stg-tier database startsup without problems.
    Thank you,
    Maurice

    Oh, i'm using WinXP SP2 and Oracle 9i.
    The data of the STG-tier (Remember: infra does not work with the errors):
    Listener:
    # LISTENER.ORA Network Configuration File: C:\ocs_onebox\stg\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = cc10206)(PORT = 1521))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\ocs_onebox\stg)
    (PROGRAM = extproc)
    (SID_DESC =
    (GLOBAL_DBNAME = Storage.world)
    (ORACLE_HOME = C:\ocs_onebox\stg)
    (SID_NAME = Storage)
    (SID_DESC =
    (GLOBAL_DBNAME = iasdb.cc10206.cckt_ac.comconsult.de)
    (ORACLE_HOME = C:\ocs_onebox\infra)
    (SID_NAME = iasdb)
    TNSNAMES:
    # TNSNAMES.ORA Network Configuration File: C:\ocs_onebox\stg\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    EXTPROC_CONNECTION_DATA.CCKT-AC.COMCONSULT.DE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    INST1_HTTP.CCKT-AC.COMCONSULT.DE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = cc10206)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = SHARED)
    (SERVICE_NAME = MODOSE)
    (PRESENTATION = http://HRService)
    STORAGE.CCKT-AC.COMCONSULT.DE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = cc10206)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SID = STORAGE)
    (SERVICE_NAME = Storage.world)
    IASDB.CCKT-AC.COMCONSULT.DE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = cc10206)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = iasdb.cc10206.cckt_ac.comconsult.de)
    (SID = iasdb)
    )

Maybe you are looking for