NET8I 서비스 이름(SERVICE NAME) 사용 방법

제품 : SQL*NET
작성날짜 : 2000-05-31
Oracle 8i 미만 버젼에서는 Oracle SID(System Identification) 정보만을 이용
하여 클라이언트에서 서버로의 접속이 이루어졌으나, Oracle 8i부터 새로이 소개된
Service Name을 이용하여 데이타베이스에 접속할 수 있게 되었다.
그러나 만일 Service Name을 적절히 기술되지 않으면 다음과 같은 오류를 만나게
되므로 그 사용 방법을 다루고자 한다.
"ORA-12514 :TNS - Could not resolve service name"
"ORA-12154 :TNS - Could not resolve service name"
Net8 Easy Configuration 또는 Net8 Assistant 도구에서 Net Service Name을
입력하여야 하며, SERVICE_NAME은 TNSNAMES.ORA 화일에 CONNECT_DATA 절에
기술하여 하며, 과거 버젼의 (SID=<SIDname>) 절을 대치시킨 것이다.
SERVICE_NAME을 TNSNAMES.ORA에 지정하는 방법은 다음 세 가지로 가능하다.
(1) 만일 LISTENER.ORA에 GLOBAL_DBNAME 파라메터가 지정되어 있다면, 그 이름
을 이용한다.
(참고로 GLOBAL_DBNAME은 init 파라메터 <DB_NAME>.<DB_DOMAIN>의 형태로
구성된다.)
listener.ora:
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(GLOBAL_DBNAME = RC815.o200.kr.oracle.com)
(ORACLE_HOME = /mnt3/rctest8i/app/oracle/product/8.1.5)
(SID_NAME = RC815)
tnsnames.ora:
ora815 =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = tcp)(HOST = o200)(PORT = 1588))
(CONNECT_DATA =
(SERVICE_NAME = RC815.o200.kr.oracle.com)
(2) 초기화 파라메터 <SERVICE_NAMES>.<DB_DOMAIN>의 형태를 이용한다.
(참고로 SERVICE_NAMES의 디폴트 값은 <DB_NAME>.<DB_DOMAIN>이므로
SERVICE_NAMES이 명시적으로 지정되어 있지 않으면 <DB_NAME>.<DB_DOMAIN>
형태의 지정이 가능하다.)
init<SID>.ora:
SERVICE_NAMES = MYDB
DB_DOMAIN = o200.kr.oracle.com
tnsnames.ora:
ora815 =
(CONNECT_DATA =
(SERVICE_NAME = MYDB.o200.kr.oracle.com)
만일 둘 이상의 service name의 지정이 필요한 경우에는 다음과 같이
init<SID>.ora화일에 SERVICE_NAMES에 이름을 연속하여 지정한 후 사용할 수 있다.
init<SID>.ora:
SERVICE_NAMES = MYDB1, MYDB2
DB_DOMAIN = o200.kr.oracle.com
tnsnames.ora:
ora815_A =
(CONNECT_DATA =
(SERVICE_NAME = MYDB1.o200.kr.oracle.com)
ora815_B =
(CONNECT_DATA =
(SERVICE_NAME = MYDB2.o200.kr.oracle.com)
(3) 마지막으로 init<SID>.ora에 DB_DOMAIN 파라메터가 없고, listener.ora에도
GLOBAL_DBNAME이 없는 경우에는 간단히 SID 값을 사용한다.
tnsnames.ora:
ora815 =
(CONNECT_DATA =
(SERVICE_NAME = ORA815)
)

또한 원격 oracle에 접속하는 경우라면 로컬에서는 LISTENER.ora에서 특별히 설정 해 줄건 없는 건가요?

Similar Messages

  • SERVICE NAME USAGE IN NET8I

    제품 : SQL*NET
    작성날짜 : 2004-12-28
    Service Name Usage in Net8i
    ============================
    오라클 8i 이전 버전에서의 클라이언트는 tnsnames.ora 의 connect discriptor에
    오라클 SID (system identifier) 만 지정함으로써 데이터베이스로의
    접속이 가능했다. 그러나, 오라클 8i 이후부터는 "service_name" 과
    "instance_name" 이라는 개념이 제공되며 이를 이용해서 데이터베이스로 접속한다.
    init.ora 파러미터
    init.ora 파러미터인 SERVICE_NAMES 는 데이터베이스 서비스를 지정하기
    위해서 사용된다. 이는 디폴트로 DB_NAME.DB_DOMAIN (global db name 으로
    이해하면 된다) 값을 가지며 데이터베이스는 하나 이상의 서비스이름을
    가질 수 있다.
    init.ora 패러미터인 INSTANCE_NAME 는 데이터베이스의 instance 이름을
    지정한다. 이는 instance 의 SID 와 같다고 생각하면 된다.
    예를들어 OPS (Oracle Parallel Server) 환경에서는 service_names 는
    어떤 데이터베이스로 접속할지를 지정하게되며 instance_name 은 그
    데이터베이스 중의 원하는 instance 를 지정할 수 있게 하여준다.
    TNSNAMES.ORA 예제
    a. service_name 을 포함한 connect descriptor
    ora815 =
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=TCP) (HOST=152.69.44.17) (PORT=1521) )
    (CONNECT_DATA =
    (SERVICE_NAME = ora815.kr.oracle.com)
    b. service_name 과 instance_name 을 포함한 connect descriptor
    ora815 =
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=TCP) (HOST=152.69.44.17) (PORT=1521) )
    (CONNECT_DATA =
    (INSTANCE_NAME = ora815)
    (SERVICE_NAME = ora815.kr.oracle.com)
    위의 예제 a) 에서는 service name 이 "ora815.kr.oracle.com" 인
    데이터베이스에 접속하고 있고, 예제 b) 에서는 service_name 이
    "ora815.kr.oracle.com" 인 데이터베이스 중에서도 ora815 instance 에
    접속하고 있다. 테스트환경에서는 OPS 가 아닌 관계로 같은 이름을
    중복 사용하였다.
    'SID' 와 'SERVICE_NAME' 의 호환성
    오라클 8i 이전 버전에서의 리스너는 listener.ora 화일의 내용에 따라
    주어진 SID 의 값들을 셋팅하였으나 오라클 8i 이후에는 PMON 이 동적으로
    데이터베이스를 리스너에 등록해 주므로 listener.ora 에 SID_LIST_LISTENER
    부분을 지정할 수도 있고 지정하지 않을 수도 있다.
    a. listener.ora 에 SID_LIST_LISTENER 가 지정되었을 경우:
    i. connect descriptor 에 SID 를 사용하면?
    ---> 잘 접속된다.
    ii. connect descriptor 에 SERVICE_NAME 을 사용하면?
    ---> 잘 접속된다. 단, 데이터베이스의 service 가 리스너에 등록되었을 경우.
    service 가 등록될때까지 클라이언트는 아래의 오류를 만나게 된다.
    ORA-12514: TNS:listener could not resolve SERVICE_NAME given in
    connect descriptor
    b. listener.ora 에 SID_LIST_LISTENER 가 지정되지 않았을 경우:
    i. connect descriptor 에 SID 를 사용하면?
    ---> 잘 접속된다.
    ii. connect descriptor 에 SERVICE_NAME 을 사용하면?
    ---> 잘 접속된다.
    마찮가지로 service 가 리스너에 등록될 때까지 클라이언트는 아래의
    오류 중 하나를 만나게 된다:
    ORA-12505: TNS:listener could not resolve SID given in connect descriptor
    ORA-12514: TNS:listener could not resolve SERVICE_NAME given in connect
    descriptor

    So if I specify
    <service-name>SomeService</service-name>do I then have to elsewhere define SomeService according to these parameters:
    http://wiki.tangosol.com/display/COH35UG/services
    where <service-type> is SomeService and <service-component> is one of
    * ReplicatedCache
    * ReplicatedCache.Optimistic
    * DistributedCache
    * SimpleCache
    * LocalCache
    * InvocationService
    I haven't been defining my own services so far. I have just been using the default names.
    My understanding from this page
    http://wiki.tangosol.com/display/COH35UG/Constraints+on+Re-entrant+Calls
    is that if I declare 10 caches with the same service-name and service-type then all 10 are sharing the same pool of resources and can not call each other from EntryProcessors, etc. due to re-entrancy. But if I define 10 different service names then I'm taking up 10x the resources(what resources? threads? memory?) but I can call one cache from another without re-entrancy issues. Is that all correct?
    Why do I want to avoid using default service names out of the box? Just because as I said above it locks me into sharing one resource pool for all caches using that service-name?
    Thanks,
    Andrew

  • Service Name

    Hi,
    I have installed Oracle 8.1.6 fo Win 98 on my computer. How can I configure listener.ora, sqlnet.ora and tnsnames.ora to use Service Name: Test.
    I need to use this any service name on localhost without connecting to the network.
    Thank's
    Ondrej
    null

    Dear Ondrej,
    The easiest way to configure the TNS network after successfully installing the Oracle8i software is to use one of the GUI-based tools - Net8 Configuration Assistant or Net8 Assistant (my choice).
    After you become familiar with the ".ora" files in the <ORACLE_HOME>/Network/Admin directory, you may even edit these files directly using any text editor.
    By the way: Do check your Release Notes and verify the operating systems that are compatible with the Oracle8i software you have.
    Ciao!
    null

  • ORA-12154 Could not to resolve service name

    I need some help. We have installed Oracle 8.1.6 for Windows NT on my PC one year ago. I also have Forms 5.0 on my PC that had connection service to Oracle database on Unix mashine. Now we don't have this database on Unix mashine so I desided to create a new small database on my PC in order to run some existing Forms. Using Oracle Net8 easy to config I created new service datamart/datamart@orc0 (It was possible only using IPC(local process) not TCP/IP). Now I can access my database using SQL*PLUS but I cannot to connect to this database using Forms. I have error message:
    ORA-12154 Could not to resolve service name. Any Ideas?
    Thanks in advance,
    Galia

    configure tnsnames.ora of home of developer.
    Atul

  • Net Service Names \ ODBC connection in 8i Pers

    Hi,
    I am new to Oracle and have 8i Personal
    installed. I am trying to get an ODBC connection established to the sample database that was installed but it is not working. I have not been able to get the right combination of net service \ listener \ ODBC parameters. I have tried to do Test Database in the Net8 Assistant even on the
    EXT_PROCCONNECTION_DAT service name that shipped but always get a ORA12560:Protocol Adaptor error. Should my protocol be IPC or TCP\IP - I am running local and the sample database is local, too. Does anyone know what parameters to use to get a connection or where I can find more about ODBC connections?
    Thanks,
    Mike Thrapp

    Problem solved by running ODBC administrator from orahome instead of control panel.

  • Netca Local Net Service Name Configuration

    Hello,
    I'm searching for a while now on how to configure a local net service name configuration silently with netca.rsp.
    I can't found any Template according to that kind of configuration.
    So I need to add a "Local Net Service Name configuration" into the Oracle Net Configuration Assistant.
    I just have to configure the service name, TCP, hostname, username and password but I don't know how to setup the response file.
    Here is the generic Template of netca.rsp
    ## Copyright(c) 1998, 2011 Oracle Corporation. All rights reserved. ##
    ## Specify values for the variables listed below to customize your  ##
    ## installation.                                                    ##
    ## Each variable is associated with a comment. The comment          ##
    ## identifies the variable type.                                    ##
    ## Please specify the values in the following format:               ##
    ##         Type         Example                                     ##
    ##         String       "Sample Value"                              ##
    ##         Boolean      True or False                               ##
    ##         Number       1000                                        ##
    ##         StringList   {"String value 1","String Value 2"}         ##
    ## This sample response file causes the Oracle Net Configuration    ##
    ## Assistant (NetCA) to complete an Oracle Net configuration during ##
    ## a custom install of the Oracle11g server which is similar to     ##
    ## what would be created by the NetCA during typical Oracle11g      ##
    ## install. It also documents all of the NetCA response file        ##
    ## variables so you can create your own response file to configure  ##
    ## Oracle Net during an install the way you wish.                   ##
    [GENERAL]
    RESPONSEFILE_VERSION="11.2"
    CREATE_TYPE="CUSTOM"
    # Name       : SHOW_GUI
    # Datatype   : Boolean
    # Description: This variable controls appearance/suppression of the NetCA GUI,
    # Pre-req    : N/A
    # Default    : TRUE
    # Note:
    # This must be set to false in order to run NetCA in silent mode.
    # This is a substitute of "/silent" flag in the NetCA command line.
    # The command line flag has precedence over the one in this response file.
    # This feature is present since 10.1.0.3.
    SHOW_GUI=false
    # Name       : LOG_FILE
    # Datatype   : String
    # Description: If present, NetCA will log output to this file in addition to the
    #        standard out.
    # Pre-req    : N/A
    # Default    : NONE
    # Note:
    #  This is a substitute of "/log" in the NetCA command line.
    # The command line argument has precedence over the one in this response file.
    # This feature is present since 10.1.0.3.
    LOG_FILE=""C:/netca.log""
    [oracle.net.ca]
    #INSTALLED_COMPONENTS;StringList;list of installed components
    # The possible values for installed components are:
    # "net8","server","client","aso", "cman", "javavm"
    #INSTALLED_COMPONENTS={"server","net8","javavm"}
    #INSTALL_TYPE;String;type of install
    # The possible values for install type are:
    # "typical","minimal" or "custom"
    INSTALL_TYPE=""typical""
    #LISTENER_NUMBER;Number;Number of Listeners
    # A typical install sets one listener
    LISTENER_NUMBER=1
    #LISTENER_NAMES;StringList;list of listener names
    # The values for listener are:
    # "LISTENER","LISTENER1","LISTENER2","LISTENER3", ...
    # A typical install sets only "LISTENER"
    LISTENER_NAMES={"LISTENER"}
    #LISTENER_PROTOCOLS;StringList;list of listener addresses (protocols and parameters separated by semicolons)
    # The possible values for listener protocols are:
    # "TCP;1521","TCPS;2484","NMP;ORAPIPE","IPC;IPCKEY","VI;1521"
    # A typical install sets only "TCP;1521"
    LISTENER_PROTOCOLS={"TCP;1521"}
    #LISTENER_START;String;name of the listener to start, in double quotes
    LISTENER_START=""ERPSERVER""
    #NAMING_METHODS;StringList;list of naming methods
    # The possible values for naming methods are:
    # LDAP, TNSNAMES, ONAMES, HOSTNAME, NOVELL, NIS, DCE
    # A typical install sets only: "TNSNAMES","ONAMES","HOSTNAMES"
    # or "LDAP","TNSNAMES","ONAMES","HOSTNAMES" for LDAP
    NAMING_METHODS={"TNSNAMES","ONAMES","HOSTNAME"}
    #NOVELL_NAMECONTEXT;String;Novell Directory Service name context, in double quotes
    # A typical install does not use this variable.
    #NOVELL_NAMECONTEXT = ""NAMCONTEXT""
    #SUN_METAMAP;String; SUN meta map, in double quotes
    # A typical install does not use this variable.
    #SUN_METAMAP = ""MAP""
    #DCE_CELLNAME;String;DCE cell name, in double quotes
    # A typical install does not use this variable.
    #DCE_CELLNAME = ""CELL""
    #NSN_NUMBER;Number;Number of NetService Names
    # A typical install sets one net service name
    NSN_NUMBER=1
    #NSN_NAMES;StringList;list of Net Service names
    # A typical install sets net service name to "EXTPROC_CONNECTION_DATA"
    NSN_NAMES={"EXTPROC_CONNECTION_DATA"}
    #NSN_SERVICE;StringList;Oracle11g database's service name
    # A typical install sets Oracle11g database's service name to "PLSExtProc"
    NSN_SERVICE={"PLSExtProc"}
    #NSN_PROTOCOLS;StringList;list of coma separated strings of Net Service Name protocol parameters
    # The possible values for net service name protocol parameters are:
    # "TCP;HOSTNAME;1521","TCPS;HOSTNAME;2484","NMP;COMPUTERNAME;ORAPIPE","VI;HOSTNAME;1521","IPC;IPCKEY" 
    # A typical install sets parameters to "IPC;EXTPROC"
    NSN_PROTOCOLS={"TCP;HOSTNAME;1521"}
    Does anyone have an idea or some information on how to configure the netca.rsp?
    Thanks in advance

    Just one more question how could i uninstall ORACLE client, it is not listed in the Add/remove programs.run Oracle Universal Installer (again).
    OUI contains uninstall capability

  • LDAP(iPlanet & OID) Net Service Names

    Hi There,
    Is it possible to use iPlanet's LDAP for net service names lookup instaed of Oracle Names?
    Is there a way to extract the schema in OID and import into iPlanet ldap. If this could be done then NET8 should be able to connect to the directory server. Why I say this is: according to Oracle documentation, Net8 supports directory naming:
    "Service addresses and net service names can be stored in a Lightweight Directory Access Protocol (LDAP)-compliant directory server."
    Has anyone done this?.
    With the release of Orcale 9i Oracle is due to ship a product called Oracle Names LDAP Proxy. Is there any information on this product.
    All comments and suggestions are very welcome and appreciated
    Regards
    Pat Lehane

    Hi Jay,
    Thanks for the reply.
    I installed NET 8.1.7 and am trying to connect to iPlanet LDAP through NET8 Configuration Assitant to create an Oracle schema in the in the iPlanet Directory Server but I get an error as follows:
    configexception: Could not create Oracle schema:oracle.net.config.ConfigException
    You must update the schema from a computer which directly supports your type of directory
    There are still only three options in the directory server type in NET8 config assitant.
    Is there another way of creating the schema in iPlanet or is there some steps to be done in iPlanet first.
    Regards
    Pat

  • Tns could resolve service name

    I have oracle 9i client installed in my machine
    I have installed oracle 9i DS - complete
    I have copied my tnsnames.ora from oracle_home of my client to DS - Home - Network-Admin folder.
    I able to test my connection in net manager but when I connect thru forms builder it says ora-12154 tns could not resolve service name
    I have also manually created the tnsnames.ora thru net8 manager but still I am getting the same problem
    Please can anyone help on this

    Shasi,
    Frank really is right. This is a network configuration problem, particularly the tnsnames.ora (and possibly but unlikely the sqlnet.ora).
    Try connecting from the sql plus in the Oracle Home where Forms & Reports are. You'll get the same error message. You can try to copy the same files over from the database if you're able to connect from that SQL Plus using username/password@connectstring successfully,
    This problem is one we see all the time and is always (maybe a Powerball lottery's odd change it's something else) network configuration files. Make sure they are in the right Oracle Home (Forms & Reports) and that the ones you have work somewhere else.

  • Enforce using service name

    Naturally, it's not needed to use listener service to establish the new connection to database server.
    I am trying to configure oracle database server in such a way that enforce each connection to use service name. Logging each connection in listener log is the main objective for the configuration.
    Let's consider the following alternavites to establish the connection for database server:
    #1. [oracle@server folder]$sqlplus user/pwd@IP:port/sid (connecting to remove database server)
    #2. [oracle@server folder]$sqlplus user/pwd@SID (connecting locally)
    #3. Connecting to database server via link server
    #4. [oracle@server folder]$sqlplus user/pwd@(.............connection description...........) connecting via jdbc think client.
    #5. [oracle@server folder]$sqlplus / as sysdba (connecting locally)
    #6. [oracle@server folder]$sqlplus user/pwd (connecting locally)
    #5 and #6 doesn't use listener for database connection but listener is needed for #1 to #4.
    Could you please suggest me to configure to enforce using listener so that all the connection will be logged to listener log?
    I want to apply this approach in standalone and RAC environment.
    Thanks in advance.
    Suresh

    Hi Suresh,
    You can force that via Logon Trigger at database level by putting the condition you like on UserENV using Sys_context.
    Just for example when you connected using listener/Net8, Userenv will be having protocol and ip address. even though its coming from same as db server.You can always validate in logon trigger who can or can't connect.
    Test1 : connect using NET8
    [oracle1@gridcluster03 ~]$ sqlplus sys@DB as sysdba
    SQL*Plus: Release 11.1.0.7.0 - Production on Fri Dec 18 15:49:57 2009
    Copyright (c) 1982, 2008, Oracle. All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, Real Application Clusters, OLAP, Data Mining
    and Real Application Testing options
    SELECT sys_context('USERENV', 'IP_ADDRESS') "IP_ADDRESS", sys_context('USERENV', 'NETWORK_PROTOCOL') "PROTOCOL" from dual ;
    IP_ADDRESS PROTOCOL
    10.10.12.3 tcp
    TEST2 : Connect Locally :
    [oracle1@gridcluster03 ~]$ sqlplus "/ as sysdba"
    SQL*Plus: Release 11.1.0.7.0 - Production on Fri Dec 18 15:43:48 2009
    Copyright (c) 1982, 2008, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, Real Application Clusters, OLAP, Data Mining
    and Real Application Testing options
    SQL> column "IP_ADDRESS" format a20
    column "PROTOCOL" format a20SQL>
    SQL> SELECT sys_context('USERENV', 'IP_ADDRESS') "IP_ADDRESS", sys_context('USERENV', 'NETWORK_PROTOCOL') "PROTOCOL" from dual ;
    IP_ADDRESS PROTOCOL
    When connecting locally no information passed to environment.
    =========================
    Hope this is useful and answer your question.
    Regards
    Krishan JAglan

  • Error in  Creation of Service Name for Bussiness Service

    Hi Friends
    I am creating customized Service Program for Bussiness Service which is used for uploading spotbilling data to ccb . The service program CM_Sbm_Upload consists of program com ids CIPBSEGP,CIPMMRDP,CIPTSATP . when i give this to bussiness service i am getting error
    Service metainfo missing for 'CM_SBM_UPLOAD'
    pls help me to resolve this issue.
    Thanks&Regards
    sivaram

    Hi,
    I've got the same error during my development of a page maintenance service.
    Please check if the cm.jar is correctly deployed in your splservice.ear and check also all other deployment directories.
    You can find them in the Output window of eclipse after execution of the "Deploy CM" script.
    When the cm.jar is deployed well, check if you annotations are correct.
    My annotations are looking like this:
    * Perform Batch Add.
    * @PageMaintenance (secured = false, service = CMIMDIMP,
    *      body = @DataElement (contents = { @DataField (name = CM_SIMULATION)
    *                  , @DataField (name = XML_REQUEST)}),
    *      actions = { "change"
    *            , "read"},
    *      modules = { "foundation"})
    */To connect a Page Maintenance Service, you must first create a service programm and the "service name" of the service program must match to
    the name of the service annotation that you have specified on your Page Maintenance Service, in my case "CMIMDIMP".
    There is no validation during the saving of the service programm, the validation happens when you save the Business Service.
    BTW. you can use jd-gui.exe to decompile the cm.jar file but you will not see the annotations !
    For viewing the ear file I'm using 7-zip.

  • Issue while creating connection pool in weblogic using SERVICE NAME

    Found two issues while creating connection pool in weblogic using SERVICE NAME
    1. While running apps from jdeveloper using xxx-jdbc.xml
    weblogic.common.ResourceException: Could not create pool connection. The DBMS driver exception was: Io exception: The Network Adapter could not establish the connection
         at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(ConnectionEnvFactory.java:253)
         at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1109)
         at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1033)
         at weblogic.common.resourcepool.ResourcePoolImpl.start(ResourcePoolImpl.java:214)
         at weblogic.jdbc.common.internal.ConnectionPool.doStart(ConnectionPool.java:1051)
    2. Configuriing the jndi in Weblogic server
    weblogic.common.ResourceException: Could not create pool connection. The DBMS driver exception was: Listener refused the connection with the following error:
    ORA-12505, TNS:listener does not currently know of SID given in connect descriptor
    The Connection descriptor used by the client was:
    localhost:1521:SERVICENAME
         at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(ConnectionEnvFactory.java:253)
         at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1109)
         at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1033)
    Problem
    database url is generated based on SID
    eg: jdbc:oracle:thin:@localhost:1521:SID
    Solution
    (generate seperate url for SERVICE NAME)
    jdbc:oracle:thin:@localhost:1521/SERVICENAME
    ------------------------

    It is so clear: host not found error for network connection and the other SID servcie name not found means your oracle instance name is not up. check with srvctl status for given servcie name or node, else check CRS_Stat -t if you are using RAC.

  • How do I get a new value for the service name field and update it in Connection Properties?

    I am running Windows Vista. I just upgraded to Firefox 4. When I try to log on to the internet, it tells me the proxy server is refusing connections. A diagnostic reported Error 815 and said the remote server is not responding because there is an invalid value for the "Service Name" field. It said to get a new value and update it in Connection Properties. How do I do this?

    When you create a new film script, the first page you see is a title page.
    The page after this title page is the one where you generally type in your scenes.
    It looks like you are facing some issue and not able to delete any text.
    Can you please send me this script so that I can have a better look at your issue?
    You can save this script to disk by using option 'File -> Save to disk'. This will create a '.stdoc' file on your system.
    Just mail this '.stdoc' file to me at 'roverma <at> adobe <dot> com'
    Thanks

  • EM doesn't allow creation of tnsnames.ora entry with service name orcl11gr2

    Dear all,
    I'm trying to create a net service name with EM Database Control, via Net Services Administration link. On the service name field, under the 'Edit Net Service Name' screen, I key in orcl11gr2, and it throws the the following error:
    Validation Error
    Examine and correct the following errors, then retry the operation:
    Service Name - Specify a valid service name.
    I wonder what is the extra validation that EM is checking. I assume it's checking the number of characters to be 8 characters or less.
    Also, because of this extra validation that is in EM, all tnsnames.ora entry that have service name = orcl11gr2, I will not be able to use EM to modify them, as I will get the same above error.
    But why does Oracle implements this extra validation, when the same validation is not implemented on other Oracle tools? For instance:
    1. dbca allows me to create a database with instance_name greater than 8 characters, and the outcome of initialization parameters will be as follow:
    db_name=orcl11gr -- truncated to 8 characters
    instance_name=orcl11gr2
    db_unique_name=orcl11gr2
    service_names=orcl11gr2
    2. Oracle Net Manager supports service name of orcl11gr2. The created Net Service Name, I have no problem connecting to the database.
    3. Listener support orcl11gr2 service name
    I'm using Oracle 11g R2 (11.2.0.1.0) for Microsoft Windows (x64), running on Windows 7.

    For your reference, here is the bug numbner: 10278345.
    -Mughees

  • How to get the service name of a webservice using UDDI API

    Hi,
    Iam working on setting up a dynamic partner link in a BPEL, by passing the endpoint of a web service queried from the UDDI (Oracle Service Registry 10.3 ) using the API. Iam able to do it successfully.
    Now, for example I have two operations in my wsdl, one to createCustomer and the other to bookTicket. I need to get the operation name using UDDI API so that i can pass it along with the endpoint to the partner link. ie. When i need to createCustomer, my UDDI API code will need to get the service name createCustomer and the endpoint and I would pass them to the partnerlink and the createCustomer operation of my webservice would be called.
    Can any one help me to get the service names of the wsdl using UDDI APIs.
    Thanks,
    Ananth

    Hi sia,
    1. Table is APQI
    2. field name for session name is GROUPID
    regards,
    amit m.

  • Problem with Net Service name

    while installing oracle data warehouse builder 10g
    i am getting prob such tat
    INS0009:Unable to connect to the database with user SYS
    java.sql.SQLException:Io exception : could not resolve the connect identifier
    OraHome_1\network\ADMIN\SAMPLE\TNSNAMES.ORA

    hi my problem is in repository assistant IN 2ND STEP
    After i enter the
    Repository User name sindhu
    Repository User Password tiger (As i kept the password of Oracle 10g)
    SYSDBA User name SYS
    SYSDBA Password tiger (As i kept the password of Oracle 10g)
    Host name Local Host
    Port number 1521 (default)
    Oracle Service name OracleServiceXE
    and i am not clicking the SQL* Plus
    and clicking on " Next "
    then my prob is
    INS0009:Unable to connect to the database with the user SYS
    java.sql.SQLException : Listener refused the connection with the following error
    ORA-12514, TNS: listener dosenot currently know of service requested in connect descriptor
    The Connection Descriptor used by the client was
    (DESCRIPTION=(ADDRESS=(HOST=LOCALHOST)(PROTOCOL=tcp)(PORT=1521))(CONNECT_DATA=
    (SERVICE_NAME=ORACLESERVICEXE)))
    hope some one will give me a gud solution
    Waiting for ur reply
    Sindhu

Maybe you are looking for

  • Settlement of AUC Cost to Asset Master Record

    Hi, Can any body tell me where the error has occured when i am settling AUC costs in Project to asset master record via the transaction AIBU. The exact error message is:- BALANCE IN TRANSACTION CURRENCY Message no. F5702 Diagnosis:- The balance has o

  • Essbase Excel Add in not working

    Hi All, I have installed hyperion 11.1.2.2 version in windows 2008 server(64 bit system) Server is up and running fine.! I have installed Excel addin, then i got one issue here. When i opened excel, Smartview is displayed on the top but Essbase is no

  • JMS grant queue privileges problem

    I have two test users set up in different schemas. They each have their own identical queue tables and queues in their own schemas. One of the users cannot seem to grant queue privileges to the main schema owner. The error is as follows: Eception: or

  • The direct link to speedgrade is desable on premiere pro cc v7.2.2

    Mi direct link to speedgrade is desable on premiere pro cc v7.2.2, and the return from speedgrade to premiere is also desable. How can I fixet. Thanks

  • Adobe user-registration prompt

    We are working to deploy CS4 at my company are are trying to have the user-level registration pop-up keep from coming up when the users login to the workstations, in the past Adobe has provided a registry entry to turn this off, but I can't work to f