10g Listener spawns 2nd Listener

Search Fu not good.
Have any of you experienced a listener spawning a 2nd. listener?
Solarius box - two listener processes - one owned by the other.
Customers started getting tns time out errors.
Thanks,

Hi
Here's a very simple script that solves the problem until the patch can be safely applied:
#!/bin/bash
export ORACLE_HOME=/oracle/product/10.2.0/Db_1/
export ORACLE_BASE=/oracle
export PATH=$PATH:$ORACLE_HOME/bin
export TNS_ADMIN=$ORACLE_HOME/network/admin
export ORACLE_SID=prod01
export EDITOR=vi
PATH=/home/oracle/bin:$PATH
ps -efo stime,pid,user,comm |sort | grep oracle | grep tnslsnr > /home/oracle/tmp_fil
AA=`cat /home/oracle/tmp_fil | wc -l`
NUM=`echo $AA`
# echo "$NUM"xx
if [ "$NUM" == "0" ]
then
lsnrctl start;
elif [ "$NUM" != "1" ]
then
PID=`tail -1 /home/oracle/tmp_fil | cut -b9-16`
kill -9 $PID
echo ' ' >> /home/oracle/chk_kill_lsnr.log
date >> /home/oracle/chk_kill_lsnr.log
echo "Killed duplicate listener process pid="$PID >> /home/oracle/chk_kill_lsnr.log
fi
rm /home/oracle/tmp_fil
Torsten H

Similar Messages

  • 9.2 and 10g on same machine, listener problem

    Hi,
    i had a 10g db on a solaris server. then i installed a 9.2 database on this server. I know that i should use the 10g listener for 9.2 database.
    But i cant manage to configure it correctly.
    The 10g listener name is LISTENER and 9.2 listener name is TPRS.
    what i did ? i opened netmgr and created a new listener named TPRS. added the database to it.(on the menu database services)
    when i try to start TPRS i get the following error message
    bash-2.05$ lsnrctl start TPRS
    LSNRCTL for Solaris: Version 10.1.0.4.2 - Production on 08-JUN-2009 16:05:22
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    Starting /oracleAS/app/oracle/product/10.1.2.0.2/infra/bin/tnslsnr: please wait...
    TNSLSNR for Solaris: Version 10.1.0.4.2 - Production
    System parameter file is /oracleAS/app/oracle/product/10.1.2.0.2/infra/network/admin/listener.ora
    Log messages written to /oracleAS/app/oracle/product/10.1.2.0.2/infra/network/log/tprs.log
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=sun3.tuprasnet.local)(PORT=1522)))
    TNS-01201: Listener cannot find executable /oracleAS/TPRS/app/oracle/product/9.2.0.1.0/bin/oracle for SID TPRS
    Listener failed to start. See the error message(s) above...
    The directory "/oracleAS/TPRS/app/oracle/product/9.2.0.1.0/bin/" exists , and oracle executable is under it. also /oracleAS/TPRS/app/oracle/product/9.2.0.1.0 is the oracle home for 9.2 database.
    The listener.ora file of 10g is like that:
    SID_LIST_TPRS =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = TPRS)
    (ORACLE_HOME = /oracleAS/TPRS/app/oracle/product/9.2.0.1.0)
    (SID_NAME = TPRS)
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /oracleAS/app/oracle/product/10.1.2.0.2/infra)
    (PROGRAM = extproc)
    (SID_DESC =
    (GLOBAL_DBNAME = iasdb.tuprasnet.local)
    (ORACLE_HOME = /oracleAS/app/oracle/product/10.1.2.0.2/infra)
    (SID_NAME = IASDB)
    TPRS =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = sun3.tuprasnet.local)(PORT = 1522))
    LISTENER =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = sun3.tuprasnet.local)(PORT = 1521))
    what am i missing?
    Thanks in advance,
    mehmet

    We (Gerwin and I) had a small discussion about the problem at hand.
    The discussion is overlooking the obvious
    TNSLSNR for Solaris: Version 10.1.0.4.2 - Production
    System parameter file is /oracleAS/app/oracle/product/10.1.2.0.2/infra/network/admin/listener.ora
    Log messages written to /oracleAS/app/oracle/product/10.1.2.0.2/infra/network/log/tprs.log
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=sun3.tuprasnet.local)(PORT=1522)))
    TNS-01201: Listener cannot find executable /oracleAS/TPRS/app/oracle/product/9.2.0.1.0/bin/oracle for SID TPRSSo the Solaris user that starts the listener HAS NO ACCESS rights to the directory path and/or the executables (lsnrctl / tnslsnr).
    [oracle@srv01-18-102 bin]$ ps -ef|grep tns
    oracle   11967     1  0 Jun07 ?        00:00:53 /u01/app/oracle/product/11.1.0/dbhome_1/bin/tnslsnr LISTENER -inherit
    oracle   28694 17439  0 17:49 pts/0    00:00:00 grep tnsYou can choose for a "more than one listener" solution or "only one listener". Whatever you do the unix user that starts the oracle, listener executables have to be the same OR sicky bits have to exist on the executables (so the user is allowed to start the executables and access the memory realms as if it was the actual owner).
    The moment you don't use the defaults - aka "LISTENER" or a non default port (1521), you will have to define this via the database parameter
    LOCAL_LISTENER
    SQL> conn / as sysdba
    SQL> show parameter local_listener
    NAME                                 TYPE        VALUE
    local_listener                       string
    SQL> ALTER system SET LOCAL_LISTENER=
            "(ADDRESS=(PROTOCOL=TCP)(HOST=sun3.tuprasnet.local)(PORT=1522))"
            scope=BOTH;
    System altered.
    SQL> show parameter local_listener
    NAME                                 TYPE        VALUE
    local_listener                       string      (ADDRESS=(PROTOCOL=TCP)(HOST=sun3.tuprasnet.local)(PORT=1522))Now the database "knows" that it has to register itself against "sun3.tuprasnet.local" and will be serviced via port 1522.
    After been set on database level, the "LOCAL_LISTENER" value can be resolved via the string itself or (*most common way of doing it is using a tnsalias*) is resolved via the tnsnames.ora file (the string given in LOCAL_LISTENER is an tns ALIAS).
    If you use ONE listener, then databases can register themselves against SQL*Net compatible listeners. So you don't have to use a 9i listener for a 9i database. A 10g database is also allowed.
    If I use a ONE listener solution, then I normally pick the listener from the highest database version and let all database versions use this listener.
    The post given here (http://www.liberidu.com/blog/?p=116): "Registering non-default XMLDB HTTP/WebDAV and FTP ports on a non-default Oracle Listener port" describes a use case which is even more "extreem" regarding shared server functionality, based on TWO listeners and NON-DEFAULT PORT addressing, based on an Oracle 9 and Oracle 10 environment on the same machine.
    HTH
    M.
    Edited by: Marco Gralike on Jun 8, 2009 6:01 PM

  • Start of 10g databases and the listener when the Unix is rebooted ....

    Hello,
    I have to manage 10g databases in Sun Solaris 10.
    I would like to know how to make automatic the start of 10g databases and the listener when the Unix system is rebooted.
    Thank you

    In my blog, I have Automatically Startup and Shutdown Oracle on Linux
    http://kamranagayev.wordpress.com/2008/12/22/automatically-startup-and-shutdown-database-in-linux-os/
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com

  • Difference between Scan Listener and Node listener

    Hi,
    I read the concept of SCAN in 11g R2 Grid Infrastructure. In that i come accross the below statements
    " 3 SCAN IP's and 3 SCAN Listeners will be up in the Cluster even if onlu ONE NODE IS UP with Clusterware active. This is BECAUSE SCAN listeners are not like NODE LISTENERS; they simply reroute connections so they do not need an instance to be available beneath them to make a database connections".
    Could some one please explan me the difference between Scan Listener and Node listener?
    Thanks in advance.
    Regards,
    Stephen

    The SCAN listener is the new feature in 11g. RAC in 9i and 10g had only node listeners. In earlier releases, the clients had to know each of the node listeners and define load balancing / failover between the node listener.
    Each node in the RAC cluster has a TNS Listener listening on the VIP.
    The SCAN is a single cluster-wide listener (although actually running as three separate processes, one on each node).. The client now needs to know only the SCAN listener. It does not need information of the node listeners to be maintained in the client-side tnsnames.ora file. SCAN allows for automatic load balancing as the client is directed to the nodes that are "up and able to take new connections" only. Also, as new nodes are added to the cluster, SCAN keeps track of them, the client tnsnames.ora does not need to be updated for new nodes.
    Hemant K Chitale

  • Remove warning: Set Listener ? element Listener T usage

    Hello,
    I have a class using listeners for diffent classes. I don't know how to remove the unchecked warning.
    The class stores Listener for differen classes. When called with an object of a registered class the method doIt from the registered XListener should be called with the object.
    Here comes the code:
    public class XSupport {
        private Set<Listener<?>> listeners = new HashSet<Listener<?>>();
        public <T> void addXListener(Class<T> clazz, XListener<T> xListener) {
            listeners.add(new Listener<T>(clazz, xListener));
        @SuppressWarnings("unchecked")
        public <T> void doIt(T data) {
            Class<?> dataClass  = data.getClass();
            for (Listener listener : listeners)
                if (dataClass.equals(listener.getClazz()))
                    listener.getXListener().doIt(data);
        private class Listener<T> {
            private Class<T> clazz;
            private XListener<T> xListener;
            public Listener(Class<T> clazz, XListener<T> xListener) {
                this.clazz = clazz;
                this.xListener = xListener;
            public Class<T> getClazz() {
                return clazz;
            public XListener<T> getXListener() {
                return xListener;
    }Rem.: Listener also has equals and hashCode which I did not copy here
    The XListener interface is definied like this:
    public interface XListener<T> {
        public void doIt(T data);
    }I suppose the for loop with raw Listener is the problem, but I can't use Listener<?> neither Listener<T> there.

    Kurt76 wrote:
    I have a class using listeners for diffent classes. I don't know how to remove the unchecked warning.Your code "anonymizes" the generic type of incoming listeners by adding them to a wildcarded Set. What you would need here is to "re-set" the type information by time of usage, which you cannot do reflectively.
    I'd suggest a small redesign as follows:
    public class XSupport {
        private Set<Listener<?>> listeners = new HashSet<Listener<?>>();
        public <T> void addXListener(Class<T> clazz, XListener<T> xListener) {
            listeners.add(new Listener<T>(clazz, xListener));
        public void doIt(Object data) {
            for (Listener<?> listener : listeners) {
                listener.visit(data);
        private class Listener<T> {
            private Class<T> clazz;
            private XListener<T> xListener;
            public Listener(Class<T> clazz, XListener<T> xListener) {
                this.clazz = clazz;
                this.xListener = xListener;
            public void visit(Object data) {
                if (clazz.isInstance(data)) {
                 xListener.doIt(clazz.cast(data));
    }Edit: Just as I missed that one: was the use of "equals" deliberate? If so, you have to change the visit() method implementation to check on "clazz.equals(data.getClass())". An equal on classes will only match if both are the same class (uses object identity). That is, you only can use concrete classes for adding listeners, no interfaces or abstract classes, nor make use of class hierarchies.
    Edited by: stefan.schulz on Oct 13, 2007 11:15 AM

  • I can not see my screen, but I can listen to notifications, listen to music with headphones, and my button locked not responds

    I can not see my screen, but I can listen to notifications, listen to music with headphones, and my button locked not responds

    I believe the keys on an imac are F11 and F12, for dark / bright respectively.
    Try that, I think it'll work.
    If not, then try out all the "F" keys, one of them will work.
    Ben

  • ORA-12505 on Oracle Database 10g Express Edition: TNS:listener

    In Developer3, trying to connect to Oracle Database 10g Express Edition give me:
    Listener refused the connection with the following error:
    ORA-12505 TNS:listener does not currently know of SID given in connect descriptor
    Vendor code 12505
    Edited by: 873444 on Jul 22, 2011 3:23 AM

    SID given in connect descriptorSo what is the SID you're asking for ... the client in use may not know the XE tnsalias, especially if the client is not running in the same ORACLE_HOME as the database.
    The client needs to know how to get to the database- a `tnsping xe` reveals the path to the current ORACLE_HOME/network/admin/sqlnet.ora file for your environment but that may not be the same ORACLE_HOME used by "developer 3".

  • OEM 10g - ORA-12505: TNS:listener does not currently know of SID...

    Hello,
    In OEM (version 10.1.0.5 on Red Hat linux 4), on the page Database Instance: dbexemple.domain.be
    It says:
    - Database Instance > up
    - Listener > up
    - Agent connection to database > Status: Failed
    Details: Failed to connect to database instance: ORA-12505: TNS:listener does not currently know of SID given in connect descriptor (DBD ERROR: OCIServerAttach).
    And my OEM database is always in Blackout state.
    I can connect on the database and if I select from global_name it gives me the good name.
    If I do lsnrctl status
    Service "dbexemple.domain.be" has 1 instance(s).
    Instance "emrep", status READY, has 1 handler(s) for this service...
    If I do lsnrctl services
    Service "dbexemple.domain.be" has 1 instance(s).
    Instance "dbexemple", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:44 refused:0 state:ready
    LOCAL SERVER
    So all looks normal. But my DB is still in blackout state.
    I did stop and start the agent > no change
    I did shutdown and start the database > no change
    I did stop the agent delete the $oracle_home/sysmen/emd/... files and start the agent and emctl upload... > no change
    In the targets.xml file from the agent I have:
    <Target TYPE="oracle_database" NAME="dbexemple.domain.be">
    <Property NAME="OracleHome" VALUE="/oracle/product/db10g"/>
    <Property NAME="UserName" VALUE="###" ENCRYPTED="TRUE"/>
    <Property NAME="MachineName" VALUE="machine.domain.be"/>
    <Property NAME="Port" VALUE="1521"/>
    <Property NAME="SID" VALUE="dbexemple"/>
    <Property NAME="ServiceName" VALUE="dbexemple.domain.be"/>
    <Property NAME="password" VALUE="###" ENCRYPTED="TRUE"/>
    </Target>
    Seems good also
    My tnsnames.ora
    DBEXEMPLE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = machine.domain.be)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = dbexemple.domain.be)
    tnsping dbexemple is also good:
    Used LDAP adapter to resolve the alias
    Attempting to contact (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=machine)(PORT=1521)))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=dbexemple.domain.be)))
    OK (10 msec)
    The DB is not in the listener.ora but anyway at the startup of the database the database register in the listener (can take some seconds).
    In OEM if I look at blackout, it says no blackout exists
    So after all these verifications my OEM database is still in blackout status and remain in blackout.
    I would like to find the reason why it stays like this and the agent finally stop giving me an error.
    thank you for your help,
    Loïc

    The fact is that I did not set any blackout for the emrep database. (no blackout are set at the moment in fact)
    So, we did change the HDD of the computer were was OEM to another HDD.
    The update to 10.1.0.5 was made before all this (2 weeks) and no problem appears after that.
    There's no blackout in OEM Blackouts:
    No Blackouts found.
    and no blackout with emctl:
    [oracle@computeroem bin]$ ./emctl status blackout
    Oracle Enterprise Manager 10g Release 10.2.0.1.0.
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    No Blackout registered.
    [oracle@computeroem bin]$ ./emctl status blackout emrep
    Oracle Enterprise Manager 10g Release 10.2.0.1.0.
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    No Blackout registered.
    At the link:
    http://computeroem.domain.be:4889/em/console/health/healthSystemError
    I get these:
    Loader
    https://computeroem.domain.be:3872/emd/main/
    14-Jan-2007 10:32:32 PM
    Error
    Thread: SeverityLoad https://computeroem.domain.be:3872/emd/main/ java.sql.SQLException: ORA-20615: Severity received during blackout for : Target up received during blackout for : (target_guid = E9A00D9D6447DF4BE1CF43F7A94BF402) (policy_guid=3BF84446B273FE1F5743FD6293C7E192) (key_value= ) (collection_ts = 2007-01-14 22:32:27) (violation_level =CLEAR) ORA-06512: at "SYSMAN.EM_VIOLATION_CHECKS", line 959 ORA-04088: error during execution of trigger 'SYSMAN.EM_VIOLATION_CHECKS' Error occured at line : 277, File name:Severity
    Loader
    https://computeroem.domain.be:3872/emd/main/
    14-Jan-2007 10:32:32 PM
    Error
    Thread: SeverityLoad https://computeroem.domain.be:3872/emd/main/ Loaded B0000000003.xml with errors; moving to errors directory, File name:/oracle2/product/oms10g/sysman/recv/B0000000003.xml
    Blackouts
    n/a
    14-Jan-2007 6:19:26 PM
    Error
    Duplicate start blackout record for 39EDA0C7E44C422698958F9463393C52 for target E9A00D9D6447DF4BE1CF43F7A94BF402
    Loader
    https://computeroem.domain.be:3872/emd/main/
    12-Jan-2007 3:07:22 PM
    Error
    Thread: SeverityLoad https://computeroem.domain.be:3872/emd/main/ java.sql.SQLException: ORA-20615: Severity received during blackout for : Target up received during blackout for : (target_guid = E9A00D9D6447DF4BE1CF43F7A94BF402) (policy_guid=3BF84446B273FE1F5743FD6293C7E192) (key_value= ) (collection_ts = 2007-01-12 15:07:05) (violation_level =CLEAR) ORA-06512: at "SYSMAN.EM_VIOLATION_CHECKS", line 959 ORA-04088: error during execution of trigger 'SYSMAN.EM_VIOLATION_CHECKS' Error occured at line : 14, File name:Severity
    Loader
    https://computeroem.domain.be:3872/emd/main/
    12-Jan-2007 3:07:22 PM
    Error
    Thread: SeverityLoad https://computeroem.domain.be:3872/emd/main/ Loaded B0000000002.xml with errors; moving to errors directory, File name:/oracle2/product/oms10g/sysman/recv/B0000000002.xml
    Loader
    https://computeroem.domain.be:3872/emd/main/
    12-Jan-2007 3:04:44 PM
    Error
    Thread: SeverityLoad https://computeroem.domain.be:3872/emd/main/ java.sql.SQLException: ORA-20615: Severity received during blackout for : Target down received during blackout for : (target_guid = E9A00D9D6447DF4BE1CF43F7A94BF402) (policy_guid=3BF84446B273FE1F5743FD6293C7E192) (key_value= ) (collection_ts= 2007-01-12 14:56:52) (violation_level =CRITICAL) ORA-06512: at "SYSMAN.EM_VIOLATION_CHECKS", line 818 ORA-04088: error during execution of trigger 'SYSMAN.EM_VIOLATION_CHECKS' Error occured at line : 14, File name:Severity
    Loader
    https://computeroem.domain.be:3872/emd/main/
    12-Jan-2007 3:04:44 PM
    Error
    Thread: SeverityLoad https://computeroem.domain.be:3872/emd/main/ Loaded B0000000001.xml with errors; moving to errors directory, File name:/oracle2/product/oms10g/sysman/recv/B0000000001.xml
    Blackouts
    n/a
    12-Jan-2007 10:10:23 AM
    Error
    end_blackout: unexpected current state 10
    Blackouts
    n/a
    12-Jan-2007
    10:05:28 AM
    Error
    Duplicate start blackout record for FD1380AAEB69BAE53339F58EA0C83ADC for target E9A00D9D6447DF4BE1CF43F7A94BF402
    Loader
    https://computeroem.domain.be:3872/emd/main/
    12-Jan-2007 9:57:16 AM
    Error
    Thread: SeverityLoad https://computeroem.domain.be:3872/emd/main/ Loaded B0000000001.xml with errors; moving to errors directory, File name:/oracle2/product/oms10g/sysman/recv/B0000000001.xml
    Loader https://computeroem.domain.be:3872/emd/main/
    12-Jan-2007 9:57:15 AM
    Error
    Thread: SeverityLoad https://computeroem.domain.be:3872/emd/main/ java.sql.SQLException: ORA-20615: Severity received during blackout for : Target up received during blackout for : (target_guid = E9A00D9D6447DF4BE1CF43F7A94BF402) (policy_guid=3BF84446B273FE1F5743FD6293C7E192) (key_value= ) (collection_ts = 2007-01-12 09:56:53) (violation_level =CLEAR) ORA-06512: at "SYSMAN.EM_VIOLATION_CHECKS", line 959 ORA-04088: error during execution of trigger 'SYSMAN.EM_VIOLATION_CHECKS' Error occured at line : 270, File name:Severity
    Loader
    https://computeroem.domain.be:3872/emd/main/
    8-Jan-2007 9:07:17 AM
    Error
    Thread: SeverityLoad https://computeroem.domain.be:3872/emd/main/ java.sql.SQLException: ORA-20615: Severity received during blackout for : Target up received during blackout for : (target_guid = E9A00D9D6447DF4BE1CF43F7A94BF402) (policy_guid=3BF84446B273FE1F5743FD6293C7E192) (key_value= ) (collection_ts = 2007-01-08 09:07:02) (violation_level =CLEAR) ORA-06512: at "SYSMAN.EM_VIOLATION_CHECKS", line 959 ORA-04088: error during execution of trigger 'SYSMAN.EM_VIOLATION_CHECKS' Error occured at line : 25, File name:Severity
    Loader
    https://computeroem.domain.be:3872/emd/main/
    8-Jan-2007 9:07:17 AM
    Error
    Thread: SeverityLoad https://computeroem.domain.be:3872/emd/main/ Loaded B0000000003.xml with errors; moving to errors directory, File name:/oracle2/product/oms10g/sysman/recv/B0000000003.xml
    Loader
    https://computeroem.domain.be:3872/emd/main/
    8-Jan-2007 9:04:10 AM
    Error
    Thread: SeverityLoad https://computeroem.domain.be:3872/emd/main/ Loaded B0000000002.xml with errors; moving to errors directory, File name:/oracle2/product/oms10g/sysman/recv/B0000000002.xml
    Loader
    https://computeroem.domain.be:3872/emd/main/
    8-Jan-2007 9:04:09 AM
    Error
    Thread: SeverityLoad https://computeroem.domain.be:3872/emd/main/ java.sql.SQLException: ORA-20615: Severity received during blackout for : Target up received during blackout for : (target_guid = E9A00D9D6447DF4BE1CF43F7A94BF402) (policy_guid=3BF84446B273FE1F5743FD6293C7E192) (key_value= ) (collection_ts = 2007-01-08 09:01:54) (violation_level =CLEAR) ORA-06512: at "SYSMAN.EM_VIOLATION_CHECKS", line 959 ORA-04088: error during execution of trigger 'SYSMAN.EM_VIOLATION_CHECKS' Error occured at line : 151, File name:Severity
    Blackouts
    n/a
    8-Jan-2007 8:57:47 AM
    Error
    Duplicate start blackout record for 39EDA0C7E44C422698958F9463393C52 for target E9A00D9D6447DF4BE1CF43F7A94BF402
    Loader
    https://computeroem.domain.be:3872/emd/main/
    8-Jan-2007 8:56:00 AM
    Error
    Thread: SeverityLoad https://computeroem.domain.be:3872/emd/main/ Loaded B0000000001.xml with errors; moving to errors directory, File name:/oracle2/product/oms10g/sysman/recv/B0000000001.xml
    Loader
    https://computeroem.domain.be:3872/emd/main/
    8-Jan-2007 8:56:00 AM
    Error
    Thread: SeverityLoad https://computeroem.domain.be:3872/emd/main/ java.sql.SQLException: ORA-20615: Severity received during blackout for : Target down received during blackout for : (target_guid = E9A00D9D6447DF4BE1CF43F7A94BF402) (policy_guid=3BF84446B273FE1F5743FD6293C7E192) (key_value= ) (collection_ts= 2007-01-06 01:25:35) (violation_level =CRITICAL) ORA-06512: at "SYSMAN.EM_VIOLATION_CHECKS", line 818 ORA-04088: error during execution of trigger 'SYSMAN.EM_VIOLATION_CHECKS' Error occured at line : 14, File name:Severity
    For the note, mostly I cannot do anything because I have no blackout name for the script. Still reading the note to see if some sql can help.
    Message was edited by:
    Loic

  • Oracle 10G : ORA-12500: TNS:listener failed to start a dedicated server pro

    When connecting to Oracle I am getting this error. I have restarted the database, restarted the listener, but the problem does not go away. I have increased the processes to 400.
    Error :
    ORA-12500: TNS:listener failed to start a dedicated server process
    listener.log :
    27-APR-2004 11:15:38 * (CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=BUILD.OCS.COM)(CID=(PROGRAM=C:\oracle\product\10.1.0\db_1\bin\sqlplus.exe)(HOST=MA-BUILDENV1)(USER=nkancharla))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.180.112)(PORT=2265)) * establish * BUILD.OCS.COM * 12500
    TNS-12500: TNS:listener failed to start a dedicated server process
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    Listener.trc :
    [27-APR-2004 11:14:38:382] snttcallback: op = 5, bytes = 170, err = 0
    [27-APR-2004 11:14:38:382] ntt2err: soc 324 error - operation=5, ntresnt[0]=524, ntresnt[1]=997, ntresnt[2]=0
    [27-APR-2004 11:14:38:382] nsdo: 160 bytes from NS buffer
    [27-APR-2004 11:14:38:382] nsglgrDoRegister: inst loads: ld1:12 mld1:100 ld2:12 mld2:445
    [27-APR-2004 11:14:38:382] nsdo: 68 bytes to NS buffer
    [27-APR-2004 11:15:38:951] nsopen: opening transport...
    [27-APR-2004 11:15:38:951] nttcnp: Validnode Table IN use; err 0x0
    [27-APR-2004 11:15:38:951] nttcnp: getting sockname
    [27-APR-2004 11:15:38:951] nttcnr: waiting to accept a connection.
    [27-APR-2004 11:15:38:951] nttcnr: getting sockname
    [27-APR-2004 11:15:38:951] nttcnr: connected on ipaddr 192.168.180.112
    [27-APR-2004 11:15:38:951] nttvlser: valid node check on incoming node 192.168.180.112
    [27-APR-2004 11:15:38:951] nttvlser: Accepted Entry: 192.168.180.112
    [27-APR-2004 11:15:38:951] nttcon: set TCP_NODELAY on 288
    [27-APR-2004 11:15:38:951] nsopen: transport is open
    [27-APR-2004 11:15:38:951] nsnainit: inf->nsinfflg[0]: 0xd inf->nsinfflg[1]: 0xd
    [27-APR-2004 11:15:38:951] nsopen: global context check-in (to slot 7) complete
    [27-APR-2004 11:15:38:951] nsanswer: deferring connect attempt; at stage 5
    [27-APR-2004 11:15:38:951] nscon: doing connect handshake...
    [27-APR-2004 11:15:38:951] nscon: got NSPTCN packet
    [27-APR-2004 11:15:38:951] nsevdrcvreq: recving connect data
    [27-APR-2004 11:15:38:951] nsdo: 248 bytes from NS buffer
    [27-APR-2004 11:15:38:951] nsevdansw: exit
    [27-APR-2004 11:15:38:951] nsglbgetRSPidx: returning ecode=0
    [27-APR-2004 11:15:38:951] nsc2addr: (ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oraclebuild)(ARGS='(LOCAL=NO)'))
    [27-APR-2004 11:15:38:951] nsbeqaddr: connecting...
    [27-APR-2004 11:15:38:951] snlpcss: Unable to spawn Oracle oracle (LOCAL=NO) build, error 258.
    [27-APR-2004 11:15:38:951] nserror: nsres: id=7, op=72, ns=12560, ns2=0; nt[0]=530, nt[1]=0, nt[2]=0; ora[0]=0, ora[1]=0, ora[2]=0
    [27-APR-2004 11:15:38:951] nscon: sending NSPTRF packet
    [27-APR-2004 11:15:38:951] nstimarmed: no timer allocated
    [27-APR-2004 11:15:38:951] nsclose: closing transport
    [27-APR-2004 11:15:38:951] nsclose: global context check-out (from slot 7) complete
    [27-APR-2004 11:15:38:951] nsgldissolve: Deallocating cxd 0xd89e18.

    Listener.ora:
    lsncrtl status:
    LSNRCTL for 32-bit Windows: Version 10.1.0.2.0 - Production on 27-APR-2004 11:27:56
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 10.1.0.2.0 - Production
    Start Date 27-APR-2004 11:27:23
    Uptime 0 days 0 hr. 0 min. 33 sec
    Trace Level admin
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File C:\oracle\product\10.1.0\db_1\network\admin\listener.ora
    Listener Log File C:\oracle\product\10.1.0\db_1\network\log\listener.log
    Listener Trace File C:\oracle\product\10.1.0\db_1\network\trace\listener.trc
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROCipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=ma-buildenv1.ocs.open-channels.com)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=ma-buildenv1.ocs.open-channels.com)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=ma-buildenv1.ocs.open-channels.com)(PORT=2100))(Presentation=FTP)(Session=RAW))
    Services Summary...
    Service "BUILD" has 1 instance(s).
    Instance "BUILD", status UNKNOWN, has 1 handler(s) for this service...
    Service "BUILD.OCS.COM" has 1 instance(s).
    Instance "build", status READY, has 2 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    sqlnet.log:
    Fatal NI connect error 12500, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=ma-buildenv1.ocs.open-channels.com)(PORT=1521))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=BUILD.OCS.COM)(CID=(PROGRAM=C:\oracle\product\10.1.0\db_1\bin\sqlplus.exe)(HOST=MA-BUILDENV1)(USER=nkancharla))))
    VERSION INFORMATION:
         TNS for 32-bit Windows: Version 10.1.0.2.0 - Production
         Windows NT TCP/IP NT Protocol Adapter for 32-bit Windows: Version 10.1.0.2.0 - Production
    Time: 27-APR-2004 11:28:42
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12564
    TNS-12564: TNS:connection refused
    ns secondary err code: 0
    nt main err code: 0
    nt secondary err code: 0
    nt OS err code: 0
    listener.log:
    27-APR-2004 11:28:42 * (CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=BUILD.OCS.COM)(CID=(PROGRAM=C:\oracle\product\10.1.0\db_1\bin\sqlplus.exe)(HOST=MA-BUILDENV1)(USER=nkancharla))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.180.112)(PORT=2527)) * establish * BUILD.OCS.COM * 12500
    TNS-12500: TNS:listener failed to start a dedicated server process
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    listener.trc with ADMIN on:
    [27-APR-2004 11:28:42:011] nsevwait: 1 newly-posted event(s)
    [27-APR-2004 11:28:42:011] nsevfnt: cxd: 0xd3eed0 stage 0: NT events set:
         CONNECTION REQUEST
    [27-APR-2004 11:28:42:011] nsevfnt: cxd: 0xd3eed0 stage 0: NS events set:
         INCOMING CALL
    [27-APR-2004 11:28:42:011] nsevwait: event is 0x1, on 2
    [27-APR-2004 11:28:42:011] nsevwait: 1 posted event(s)
    [27-APR-2004 11:28:42:011] nsglhe: entry
    [27-APR-2004 11:28:42:011] nsmal: 536 bytes at 0xd7c1f0
    [27-APR-2004 11:28:42:011] nsmal: 1632 bytes at 0xd7e638
    [27-APR-2004 11:28:42:011] nsopen: opening transport...
    [27-APR-2004 11:28:42:011] nttcon: entry
    [27-APR-2004 11:28:42:011] nttcon: toc = 3
    [27-APR-2004 11:28:42:011] nttcnp: entry
    [27-APR-2004 11:28:42:011] ntvlin: entry
    [27-APR-2004 11:28:42:011] ntvlin: exit
    [27-APR-2004 11:28:42:011] nttcnp: Validnode Table IN use; err 0x0
    [27-APR-2004 11:28:42:011] nttcnp: getting sockname
    [27-APR-2004 11:28:42:011] nttcnp: exit
    [27-APR-2004 11:28:42:011] nttcnr: entry
    [27-APR-2004 11:28:42:011] nttcnr: waiting to accept a connection.
    [27-APR-2004 11:28:42:011] nttcnr: getting sockname
    [27-APR-2004 11:28:42:011] nttcnr: connected on ipaddr 192.168.180.112
    [27-APR-2004 11:28:42:011] nttvlser: entry
    [27-APR-2004 11:28:42:011] nttvlser: valid node check on incoming node 192.168.180.112
    [27-APR-2004 11:28:42:011] nttvlser: Accepted Entry: 192.168.180.112
    [27-APR-2004 11:28:42:011] nttcnr: exit
    [27-APR-2004 11:28:42:011] nttcon: set TCP_NODELAY on 248
    [27-APR-2004 11:28:42:011] nttcon: exit
    [27-APR-2004 11:28:42:011] nsopen: transport is open
    [27-APR-2004 11:28:42:011] nsnainit: answer
    [27-APR-2004 11:28:42:011] nsnasvnainfo: NA disabled for this connection
    [27-APR-2004 11:28:42:011] nainit: entry
    [27-APR-2004 11:28:42:011] nagblini: entry
    [27-APR-2004 11:28:42:011] nau_gin: entry
    [27-APR-2004 11:28:42:011] nau_gparams: entry
    [27-APR-2004 11:28:42:011] nam_gbp: Reading parameter "sqlnet.authentication_required" from parameter file
    [27-APR-2004 11:28:42:011] nam_gbp: Parameter not found
    [27-APR-2004 11:28:42:011] nau_gparams: Using default value "FALSE"
    [27-APR-2004 11:28:42:011] nau_gslf: entry
    [27-APR-2004 11:28:42:011] nam_gic: entry
    [27-APR-2004 11:28:42:011] nam_gic: Counting # of items in "sqlnet.authentication_services" parameter
    [27-APR-2004 11:28:42:011] nam_gic: Parameter not found
    [27-APR-2004 11:28:42:011] nam_gic: Found 0 items
    [27-APR-2004 11:28:42:011] nam_gic: exit
    [27-APR-2004 11:28:42:011] nau_gslf: Using default value "all available adapters"
    [27-APR-2004 11:28:42:011] nauss_set_state: entry
    [27-APR-2004 11:28:42:011] nauss_set_state: exit
    [27-APR-2004 11:28:42:011] nau_gslf: exit
    [27-APR-2004 11:28:42:011] nau_gparams: exit
    [27-APR-2004 11:28:42:011] nau_gin: exit
    [27-APR-2004 11:28:42:011] nagblini: exit
    [27-APR-2004 11:28:42:011] na_saveprot: entry
    [27-APR-2004 11:28:42:011] na_saveprot: exit
    [27-APR-2004 11:28:42:011] nacomin: entry
    [27-APR-2004 11:28:42:011] nas_init: entry
    [27-APR-2004 11:28:42:011] nas_init: exit
    [27-APR-2004 11:28:42:011] nau_ini: entry
    [27-APR-2004 11:28:42:011] naugcp_get_connect_parameters: entry
    [27-APR-2004 11:28:42:011] nauss_set_state: entry
    [27-APR-2004 11:28:42:011] nauss_set_state: exit
    [27-APR-2004 11:28:42:011] naugcp_get_connect_parameters: exit
    [27-APR-2004 11:28:42:011] nau_gettab: entry
    [27-APR-2004 11:28:42:011] nau_gettab: exit
    [27-APR-2004 11:28:42:011] nau_sini: entry
    [27-APR-2004 11:28:42:011] nau_sini: exit
    [27-APR-2004 11:28:42:011] nau_ini: exit
    [27-APR-2004 11:28:42:011] naeeinit: entry
    [27-APR-2004 11:28:42:011] nam_gbp: Reading parameter "SQLNET.FIPS_140" from parameter file
    [27-APR-2004 11:28:42:011] nam_gbp: Parameter not found
    [27-APR-2004 11:28:42:011] nam_gnsp: Reading parameter "SQLNET.ENCRYPTION_SERVER" from parameter file
    [27-APR-2004 11:28:42:011] nam_gnsp: Parameter not found
    [27-APR-2004 11:28:42:011] naequad: Using default value "ACCEPTED"
    [27-APR-2004 11:28:42:011] nam_gic: entry
    [27-APR-2004 11:28:42:011] nam_gic: Counting # of items in "SQLNET.ENCRYPTION_TYPES_SERVER" parameter
    [27-APR-2004 11:28:42:011] nam_gic: Parameter not found
    [27-APR-2004 11:28:42:011] nam_gic: exit
    [27-APR-2004 11:28:42:011] naesno: Using default value "all available algorithms"
    [27-APR-2004 11:28:42:011] naeshow: entry
    [27-APR-2004 11:28:42:011] naeshow: exit
    [27-APR-2004 11:28:42:011] naeeinit: exit
    [27-APR-2004 11:28:42:011] naecinit: entry
    [27-APR-2004 11:28:42:011] nam_gnsp: Reading parameter "SQLNET.CRYPTO_CHECKSUM_SERVER" from parameter file
    [27-APR-2004 11:28:42:011] nam_gnsp: Parameter not found
    [27-APR-2004 11:28:42:011] naequad: Using default value "ACCEPTED"
    [27-APR-2004 11:28:42:011] nam_gic: entry
    [27-APR-2004 11:28:42:011] nam_gic: Counting # of items in "SQLNET.CRYPTO_CHECKSUM_TYPES_SERVER" parameter
    [27-APR-2004 11:28:42:011] nam_gic: Parameter not found
    [27-APR-2004 11:28:42:011] nam_gic: exit
    [27-APR-2004 11:28:42:011] naesno: Using default value "all available algorithms"
    [27-APR-2004 11:28:42:011] naeshow: entry
    [27-APR-2004 11:28:42:011] naeshow: exit
    [27-APR-2004 11:28:42:011] naecinit: exit
    [27-APR-2004 11:28:42:011] nadisc: entry
    [27-APR-2004 11:28:42:011] nacomtm: entry
    [27-APR-2004 11:28:42:011] nacompd: entry
    [27-APR-2004 11:28:42:011] nacompd: exit
    [27-APR-2004 11:28:42:011] nacompd: entry
    [27-APR-2004 11:28:42:011] nacompd: exit
    [27-APR-2004 11:28:42:011] nacomtm: exit
    [27-APR-2004 11:28:42:011] nas_dis: entry
    [27-APR-2004 11:28:42:011] nas_dis: exit
    [27-APR-2004 11:28:42:011] nau_dis: entry
    [27-APR-2004 11:28:42:011] nau_dis: exit
    [27-APR-2004 11:28:42:011] naeetrm: entry
    [27-APR-2004 11:28:42:011] naeetrm: exit
    [27-APR-2004 11:28:42:011] naectrm: entry
    [27-APR-2004 11:28:42:011] naectrm: exit
    [27-APR-2004 11:28:42:011] nagbltrm: entry
    [27-APR-2004 11:28:42:011] nau_gtm: entry
    [27-APR-2004 11:28:42:011] nau_gtm: exit
    [27-APR-2004 11:28:42:011] nagbltrm: exit
    [27-APR-2004 11:28:42:011] nadisc: exit
    [27-APR-2004 11:28:42:011] nainit: exit
    [27-APR-2004 11:28:42:011] nsnainit: NS Connection version: 313
    [27-APR-2004 11:28:42:011] nsnainit: inf->nsinfflg[0]: 0xd inf->nsinfflg[1]: 0xd
    [27-APR-2004 11:28:42:011] nsnainit: "or" info flags: 0xd     Translations follow:
         native service(s) is (are) wanted
         NA disabled remotely for this connection
         NA services unavailable on both processes - negotiation not needed
    [27-APR-2004 11:28:42:011] nsnainit: "or" info flags: 0xd     Translations follow:
         native service(s) is (are) wanted
         NA disabled remotely for this connection
         NA services unavailable on both processes - negotiation not needed
    "and" info flags: 0xd     Translations follow:
         native service(s) is (are) wanted
         NA disabled remotely for this connection
         NA services unavailable on both processes - negotiation not needed
    [27-APR-2004 11:28:42:011] nsopen: global context check-in (to slot 7) complete
    [27-APR-2004 11:28:42:011] nsopen: lcl[0]=0x34ffefff, lcl[1]=0x12003, gbl[0]=0x7abf, gbl[1]=0x2001, tdu=32767, sdu=8192
    [27-APR-2004 11:28:42:011] nsdo: cid=7, opcode=65, bl=0, what=0, uflgs=0x0, cflgs=0x2
    [27-APR-2004 11:28:42:011] nsdo: rank=64, nsctxrnk=0
    [27-APR-2004 11:28:42:011] nsdo: nsctx: state=7, flg=0x4000, mvd=0
    [27-APR-2004 11:28:42:011] nsdo: nsctxrnk=0
    [27-APR-2004 11:28:42:011] nsanswer: deferring connect attempt; at stage 5
    [27-APR-2004 11:28:42:011] nsevreg: begin registration process for 7
    [27-APR-2004 11:28:42:011] nsevreg: sgt=0, evn=4, evt[2]=0x0
    [27-APR-2004 11:28:42:011] nsevreg: begin notification process for 7
    [27-APR-2004 11:28:42:011] nsrah: setting transport read mode (2)
    [27-APR-2004 11:28:42:011] nttctl: entry
    [27-APR-2004 11:28:42:011] nttctl: Clearing non-blocking mode
    [27-APR-2004 11:28:42:011] nttctl: entry
    [27-APR-2004 11:28:42:011] nttctl: Setting connection into async mode
    [27-APR-2004 11:28:42:011] nsevreg: rdm=2, sgt=0, evt[0]=0x20, [1]=0x20, [2]=0x0, nrg=0
    [27-APR-2004 11:28:42:011] nsevreg: registering for 0x20
    [27-APR-2004 11:28:42:011] nttmrd: entry
    [27-APR-2004 11:28:42:011] nttrd: entry
    [27-APR-2004 11:28:42:011] snttcallback: entry
    [27-APR-2004 11:28:42:011] snttcallback: exit
    [27-APR-2004 11:28:42:011] nttrd: socket 248 had bytes read=316
    [27-APR-2004 11:28:42:011] nttrd: exit
    [27-APR-2004 11:28:42:011] nsglhe: exit
    [27-APR-2004 11:28:42:011] nsevwait: 7 registered connection(s)
    [27-APR-2004 11:28:42:011] nsevwait: 1 pre-posted event(s)
    [27-APR-2004 11:28:42:011] nsevwait: waiting for transport event (0 thru 7)...
    [27-APR-2004 11:28:42:011] nsevwait: 0 newly-posted event(s)
    [27-APR-2004 11:28:42:011] nsevwait: 1 pre-posted event(s)
    [27-APR-2004 11:28:42:011] nsevdansw: at STAGE 5
    [27-APR-2004 11:28:42:011] nsdo: cid=7, opcode=68, bl=2040, what=8, uflgs=0x0, cflgs=0x3
    [27-APR-2004 11:28:42:011] nsdo: rank=64, nsctxrnk=0
    [27-APR-2004 11:28:42:011] nsdo: nsctx: state=14, flg=0x4004, mvd=0
    [27-APR-2004 11:28:42:011] nsdo: gtn=10, gtc=10, ptn=10, ptc=8155
    [27-APR-2004 11:28:42:011] nscon: doing connect handshake...
    [27-APR-2004 11:28:42:011] nscon: recving a packet
    [27-APR-2004 11:28:42:011] nsprecv: 316 bytes from leftover
    [27-APR-2004 11:28:42:011] nsprecv: tlen=316, plen=58, type=1
    [27-APR-2004 11:28:42:011] nsprecv: 258 bytes to leftover
    [27-APR-2004 11:28:42:011] nscon: got NSPTCN packet
    [27-APR-2004 11:28:42:011] nsconneg: vsn=313, lov=300, opt=0x0, sdu=2048, tdu=32767, ntc=0x860e
    [27-APR-2004 11:28:42:011] nsconneg: vsn=313, gbl=0x1, sdu=2048, tdu=32767
    [27-APR-2004 11:28:42:011] nscon: got 248 bytes connect data
    [27-APR-2004 11:28:42:011] nscon: got 248 bytes connect data
    [27-APR-2004 11:28:42:011] nsdo: nsctxrnk=0
    [27-APR-2004 11:28:42:011] nsevdrcvreq: recving connect data
    [27-APR-2004 11:28:42:011] nsdo: cid=7, opcode=68, bl=248, what=1, uflgs=0x4001, cflgs=0x0
    [27-APR-2004 11:28:42:011] nsdo: nsctx: state=2, flg=0x4004, mvd=0
    [27-APR-2004 11:28:42:011] nsdo: gtn=58, gtc=58, ptn=10, ptc=2011
    [27-APR-2004 11:28:42:011] nsrdr: recving a packet
    [27-APR-2004 11:28:42:011] nsprecv: 258 bytes from leftover
    [27-APR-2004 11:28:42:011] nsprecv: tlen=258, plen=258, type=6
    [27-APR-2004 11:28:42:011] nsrdr: got NSPTDA packet
    [27-APR-2004 11:28:42:011] nsrdr: NSPTDA flags: 0x0
    [27-APR-2004 11:28:42:011] nsdo: what=1, bl=248
    [27-APR-2004 11:28:42:011] nsdo: 248 bytes from NS buffer
    [27-APR-2004 11:28:42:011] nsevdrcvreq: got 248 bytes connect data
    [27-APR-2004 11:28:42:011] nsevdansw: exit
    [27-APR-2004 11:28:42:011] nsevwait: event is 0x20, on 7
    [27-APR-2004 11:28:42:011] nsevwait: 1 posted event(s)
    [27-APR-2004 11:28:42:011] nsglhe: entry
    [27-APR-2004 11:28:42:011] nsglfc: Assume establishing a connection...
    [27-APR-2004 11:28:42:011] nsglfc: command = establish
    [27-APR-2004 11:28:42:011] nsglauthorized: entry
    [27-APR-2004 11:28:42:011] nsglecmd: entry
    [27-APR-2004 11:28:42:011] nttaddr2bnd: entry
    [27-APR-2004 11:28:42:011] nttaddr2bnd: exit
    [27-APR-2004 11:28:42:011] nsglbgetRSPidx: entry
    [27-APR-2004 11:28:42:011] nsglbgetRSPidx: returning ecode=0
    [27-APR-2004 11:28:42:011] nsglbgetRSPidx: exit
    [27-APR-2004 11:28:42:011] nsglb: entry
    [27-APR-2004 11:28:42:011] nsglb: exit
    [27-APR-2004 11:28:42:011] nsc2addr: (ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oraclebuild)(ARGS='(LOCAL=NO)'))
    [27-APR-2004 11:28:42:011] nlpcaini: entry
    [27-APR-2004 11:28:42:011] nlpcaini: prg = oracle
    [27-APR-2004 11:28:42:011] nlpcaini: arg[0] = oraclebuild
    [27-APR-2004 11:28:42:011] nlpcaini: arg[1] = (LOCAL=NO)
    [27-APR-2004 11:28:42:011] nlpcaini: exit
    [27-APR-2004 11:28:42:011] nsbeqaddr: connecting...
    [27-APR-2004 11:28:42:011] ntpcon: entry
    [27-APR-2004 11:28:42:011] ntpcon: toc = 1
    [27-APR-2004 11:28:42:011] sntpcall: entry
    [27-APR-2004 11:28:42:011] snlpcss: entry
    [27-APR-2004 11:28:42:011] snlpcss: Unable to spawn Oracle oracle (LOCAL=NO) build, error 258.
    [27-APR-2004 11:28:42:011] sntpcall: exit
    [27-APR-2004 11:28:42:011] ntpcon: exit
    [27-APR-2004 11:28:42:011] nserror: nsres: id=7, op=72, ns=12560, ns2=0; nt[0]=530, nt[1]=0, nt[2]=0; ora[0]=0, ora[1]=0, ora[2]=0
    [27-APR-2004 11:28:42:011] nsglrespond: entry
    [27-APR-2004 11:28:42:011] nsdo: cid=7, opcode=67, bl=161, what=10, uflgs=0x0, cflgs=0x3
    [27-APR-2004 11:28:42:011] nsdo: rank=64, nsctxrnk=0
    [27-APR-2004 11:28:42:011] nsdo: nsctx: state=2, flg=0x4004, mvd=0
    [27-APR-2004 11:28:42:011] nsdo: gtn=258, gtc=258, ptn=10, ptc=2011
    [27-APR-2004 11:28:42:011] nscon: sending NSPTRF packet
    [27-APR-2004 11:28:42:011] nspsend: plen=173, type=4
    [27-APR-2004 11:28:42:011] nttmwr: entry
    [27-APR-2004 11:28:42:011] nttwr: entry
    [27-APR-2004 11:28:42:011] snttcallback: entry
    [27-APR-2004 11:28:42:011] snttcallback: exit
    [27-APR-2004 11:28:42:011] nttwr: socket 248 had bytes written=173
    [27-APR-2004 11:28:42:011] nttwr: exit
    [27-APR-2004 11:28:42:011] nspsend: 173 bytes to transport
    [27-APR-2004 11:28:42:011] nsdo: nsctxrnk=0
    [27-APR-2004 11:28:42:011] nstimarmed: no timer allocated
    [27-APR-2004 11:28:42:011] nttctl: entry
    [27-APR-2004 11:28:42:011] nttctl: entry
    [27-APR-2004 11:28:42:011] nsdo: cid=7, opcode=66, bl=0, what=0, uflgs=0x0, cflgs=0x2
    [27-APR-2004 11:28:42:011] nsdo: rank=64, nsctxrnk=0
    [27-APR-2004 11:28:42:011] nsdo: nsctx: state=2, flg=0x4000, mvd=0
    [27-APR-2004 11:28:42:011] nsevunreg: cid=7, sgt=0, rdm=2
    [27-APR-2004 11:28:42:011] nsrah: re-setting transport read mode
    [27-APR-2004 11:28:42:011] nttctl: entry
    [27-APR-2004 11:28:42:011] nttctl: Clearing async mode
    [27-APR-2004 11:28:42:011] nsevunreg: 6 registered connection(s)
    [27-APR-2004 11:28:42:011] nsdo: nsctxrnk=0
    [27-APR-2004 11:28:42:011] nsclose: closing transport
    [27-APR-2004 11:28:42:011] nttdisc: entry
    [27-APR-2004 11:28:42:011] nttdisc: Closed socket 248
    [27-APR-2004 11:28:42:011] nttdisc: exit
    [27-APR-2004 11:28:42:011] nsclose: global context check-out (from slot 7) complete
    [27-APR-2004 11:28:42:011] nsmfr: 1632 bytes at 0xd7e638
    [27-APR-2004 11:28:42:011] nsmfr: 536 bytes at 0xd7c1f0
    [27-APR-2004 11:28:42:011] nsgldissolve: entry
    [27-APR-2004 11:28:42:011] nsgldissolve: Deallocating cxd 0xd7c608.
    [27-APR-2004 11:28:42:011] nsgldissolve: exit
    [27-APR-2004 11:28:42:011] nsglrespond: exit
    [27-APR-2004 11:28:42:011] nsglecmd: exit
    [27-APR-2004 11:28:42:011] nsglhe: exit
    [27-APR-2004 11:28:42:011] nsevwait: 6 registered connection(s)
    [27-APR-2004 11:28:42:011] nsevwait: 0 pre-posted event(s)
    [27-APR-2004 11:28:42:011] nsevwait: waiting for transport event (0 thru 6)...
    [27-APR-2004 11:28:45:136] snttcallback: entry
    [27-APR-2004 11:28:45:136] snttcallback: op = 5, bytes = 170, err = 0
    [27-APR-2004 11:28:45:136] snttcallback: exit
    [27-APR-2004 11:28:45:136] nsevwait: 0 newly-posted event(s)
    [27-APR-2004 11:28:45:136] nsevfnt: cxd: 0xd597c8 stage 0: NT events set:
         READ
    [27-APR-2004 11:28:45:136] nsevfnt: cxd: 0xd597c8 stage 0: NS events set:
         INCOMING SEND
    [27-APR-2004 11:28:45:136] nsevwait: event is 0x2, on 4
    [27-APR-2004 11:28:45:136] nsevwait: 1 posted event(s)
    [27-APR-2004 11:28:45:136] nsglhe: entry
    [27-APR-2004 11:28:45:136] nsglrohe: entry
    [27-APR-2004 11:28:45:136] nsdo: cid=4, opcode=68, bl=8196, what=0, uflgs=0x0, cflgs=0x3
    [27-APR-2004 11:28:45:136] nsdo: rank=64, nsctxrnk=0
    [27-APR-2004 11:28:45:136] nsdo: nsctx: state=8, flg=0x400c, mvd=0
    [27-APR-2004 11:28:45:136] nsdo: gtn=258, gtc=258, ptn=10, ptc=8155
    [27-APR-2004 11:28:45:136] nsrdr: recving a packet
    [27-APR-2004 11:28:45:136] nsprecv: 170 bytes from leftover
    [27-APR-2004 11:28:45:136] nsprecv: tlen=170, plen=170, type=6
    [27-APR-2004 11:28:45:136] nttmrd: entry
    [27-APR-2004 11:28:45:136] nttrd: entry
    [27-APR-2004 11:28:45:136] ntt2err: entry
    [27-APR-2004 11:28:45:136] ntt2err: soc 296 error - operation=5, ntresnt[0]=524, ntresnt[1]=997, ntresnt[2]=0
    [27-APR-2004 11:28:45:136] ntt2err: exit
    [27-APR-2004 11:28:45:136] nttrd: exit
    [27-APR-2004 11:28:45:136] nsrdr: got NSPTDA packet
    [27-APR-2004 11:28:45:136] nsrdr: NSPTDA flags: 0x0
    [27-APR-2004 11:28:45:136] nsdo: what=1, bl=8196
    [27-APR-2004 11:28:45:136] nsdo: 160 bytes from NS buffer
    [27-APR-2004 11:28:45:136] nsdo: nsctxrnk=0
    [27-APR-2004 11:28:45:136] nsglgrDoRegister: inst loads: ld1:51 mld1:100 ld2:12 mld2:445
    [27-APR-2004 11:28:45:136] nsglgrDoRegister: exit
    [27-APR-2004 11:28:45:136] nsdo: cid=4, opcode=67, bl=68, what=1, uflgs=0x2, cflgs=0x3
    [27-APR-2004 11:28:45:136] nsdo: rank=64, nsctxrnk=0
    [27-APR-2004 11:28:45:136] nsdo: nsctx: state=8, flg=0x400c, mvd=0
    [27-APR-2004 11:28:45:136] nsdo: gtn=170, gtc=170, ptn=10, ptc=8155
    [27-APR-2004 11:28:45:136] nsdo: 68 bytes to NS buffer
    [27-APR-2004 11:28:45:136] nsdofls: DATA flags: 0x0
    [27-APR-2004 11:28:45:136] nsdofls: sending NSPTDA packet
    [27-APR-2004 11:28:45:136] nspsend: plen=78, type=6
    [27-APR-2004 11:28:45:136] nttmwr: entry
    [27-APR-2004 11:28:45:136] nttwr: entry
    [27-APR-2004 11:28:45:136] snttcallback: entry
    [27-APR-2004 11:28:45:136] snttcallback: exit
    [27-APR-2004 11:28:45:136] nttwr: socket 296 had bytes written=78
    [27-APR-2004 11:28:45:136] nttwr: exit
    [27-APR-2004 11:28:45:136] nspsend: 78 bytes to transport
    [27-APR-2004 11:28:45:136] nsdoacts: flushing transport
    [27-APR-2004 11:28:45:136] nttctl: entry
    [27-APR-2004 11:28:45:136] nsdo: nsctxrnk=0
    [27-APR-2004 11:28:45:136] nsglroHandleError: exit
    [27-APR-2004 11:28:45:136] nsglrohe: exit
    [27-APR-2004 11:28:45:136] nsglhe: exit
    [27-APR-2004 11:28:45:136] nsevwait: 6 registered connection(s)
    [27-APR-2004 11:28:45:136] nsevwait: 0 pre-posted event(s)
    [27-APR-2004 11:28:45:136] nsevwait: waiting for transport event (0 thru 6)...

  • ORA-12505 on Oracle Database 10g Express Edition: TNS:listene

    Hi all,
    I am aware that there has been several posts about this subject but i still cant seem to be able to resolve my problem.
    I am new to this but I did read through all information I could find and nothing helps.
    I am trying to connect to oracle database from sqldeveloper and i am getting that error.
    I am just following the tutorials on the net and they simply say to connect using SID: orcl but that does not seem to work for me.
    Can someone please explain to me how to find out how to change the paths (i suspect the problem lies there) so i can connect?
    Natalia

    Oracle XE SID is ... XE and not orcl.
    Did you also check:
    $ oerr ora 12505
    12505, 00000, "TNS:listener does not currently know of SID given in connect descriptor"
    // *Cause:  The listener received a request to establish a connection to a
    // database or other service. The connect descriptor received by the listener
    // specified a SID for an instance (usually a database instance) that either
    // has not yet dynamically registered with the listener or has not been
    // statically configured for the listener. This may be a temporary condition
    // such as after the listener has started, but before the database instance
    // has registered with the listener.
    // *Action:
    //  - Wait a moment and try to connect a second time.
    //  - Check which instances are currently known by the listener by executing:
    //    lsnrctl services <listener name>
    //  - Check that the SID parameter in the connect descriptor specifies
    //    an instance known by the listener.
    //  - Check for an event in the listener.log file.

  • Adding 2nd Listener

    I currently use Skype with a USB headset w/ microphone.  I need a 2nd person to be able to hear the conversations.  Is there any way to add the ability for them to hear?  I've tried adding a 2nd headset with jack plugs.  Skype will only recognize one headset or the other - not both at the same time.  I also have speakers plugged into the computer, but am not hearing anything out of them.  What do you suggest?  Do I need to reconfigure the "Speakers" setting on Skype to have sound only coming out of computer speakers?
    Thank you!

    Are you using FileDialog or JFileChooser?

  • How the listener working without listener.ora file?

    Hi alls,
    System env.
    Oracle : 8.1.6
    OS: Win2K
    There's no file listener.ora on the machine. But there's a TNSlistener service running. Is the listener can start with tnsnames.ora?
    Any idea?
    Witch.

    I'm surely that nobody delete that file.
    On the last Friday, I logon to the server and tried to use svrmgrl but I got an error like this
    "SVRMGR> connect sys@tcard;
    Password:
    ORA-12154: TNS:could not resolve service name".
    So I checked the listener by running this command
    "lsnrctl services"
    and I got this
    "Connecting to (ADDRESS=(PROTOCOL=ipc)(KEY=PNPKEY))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    32-bit Windows Error: 2: No such file or directory
    Connecting to (ADDRESS=(PROTOCOL=tcp)(PORT=1521))
    TNS-12545: Connect failed because target host or object does not exist
    TNS-12560: TNS:protocol adapter error
    TNS-00515: Connect failed because target host or object does not exist
    32-bit Windows Error: 49: Unknown error
    I tried to check the file "tnsnames.ora" but didn't find it.
    Any idea?
    Thanks,
    Witchuda.

  • How to Call action Listener from Mouse Listener event

    One class (class 1)implements mouse listener and responds to a mouse events.
    As part of that response it needs to call a variable set method in another class (class 2)and also have that setMethod call it's own ActionPerformed.
    Seems the problem is I don't have aaction event to pass
    I only have a mouse event. As follows:
    class 1
    public void mousePressed(MouseEvent e) {
    int y1=Math.abs(e.getY()-y);
    this.sourceReference.setVar(y1);
    repaint();
    class 2
    int var;
    public void setVar(int y)
    var=y;
    this.ActionPerformed(?? ); //This is what I want to do
    Same question slightly different.
    From class 1 I scould first call the setVar method
    and then issue a call to class 2's ActionPerformed.
    But again I don't seem to have the proper action event e to pass it.
    Thanks

    Do you need any information from an ActionEvent that you'd be calling from the MouseEvent (ie the action command, or somethig) or can you just have the actionPerformed method just call a different method that doesn't need an ActionEvent?
    public void actionPerformed(ActionEvent e) {
    this.doActionStuff();
    public void doActionStuff() {
    // does what you want the action event to do
    Then from the mousePressed method you can just call the doActionStuff method.
    I'm not sure if this helps or not, hope it does.
    Scott

  • Need help with possible dual listener configuration and listener traffic

    Hello:
    We seperate our network traffic to the database servers using VLAN's. We have application traffic on 192.168.1.x and replication/admin traffic on 10.112.28.x. We are looking to configure 2 listeners for the database, one to listen and respond on 192.168.1.x and one to listen and respond on 10.112.28.x. Right now, we have one listener that is configured for both networks, however, for servers that are connected to both networks, the client sends on 192.168.1 but receives a TNS redirect to 10.112.28. For clients only on the 192.168.1, the TNS redirect to 10.112.28 times out because the client cannot resolve the address. I can make available a Visio diagram of our current configuration. We also utilize server-side load balancing.
    Here is our dilemma, confirmed by analyzing packet traffic to and from the database on a Fluke:
    1) For servers in our environment that reside on BOTH network segments (multihomed), application "traffic" generated on 192.168.1.x arrives at the listener. Through server-side load balancing, a TNS redirect string is returned to the client, which, based on the following listener configuration, redirects the connection to the 10.112.28.x segment:
    LISTENER_RMLNDB01 =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.112.28.8)(PORT = 1521)(IP = FIRST))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.8)(PORT = 1529)(IP = FIRST))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    2) For servers that reside on only one network (ex. 192.168.1.x), when the redirect is returned to that server, it experiences a timeout and connection failure because it cannot physically reach 10.112.28.x
    Is there any way, through tnsnames, splitting listener.ora, VLAN's, the database itself, anything, for us to have requests for 192.168.1 be returned on 192.168.1 and not redirected. Would client side load balancing be a better option? Any way to manipulate the service registrations?
    Thanks for all future responses!
    Paul

    Hello:
    We seperate our network traffic to the database servers using VLAN's. We have application traffic on 192.168.1.x and replication/admin traffic on 10.112.28.x. We are looking to configure 2 listeners for the database, one to listen and respond on 192.168.1.x and one to listen and respond on 10.112.28.x. Right now, we have one listener that is configured for both networks, however, for servers that are connected to both networks, the client sends on 192.168.1 but receives a TNS redirect to 10.112.28. For clients only on the 192.168.1, the TNS redirect to 10.112.28 times out because the client cannot resolve the address. I can make available a Visio diagram of our current configuration. We also utilize server-side load balancing.
    Here is our dilemma, confirmed by analyzing packet traffic to and from the database on a Fluke:
    1) For servers in our environment that reside on BOTH network segments (multihomed), application "traffic" generated on 192.168.1.x arrives at the listener. Through server-side load balancing, a TNS redirect string is returned to the client, which, based on the following listener configuration, redirects the connection to the 10.112.28.x segment:
    LISTENER_RMLNDB01 =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.112.28.8)(PORT = 1521)(IP = FIRST))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.8)(PORT = 1529)(IP = FIRST))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    2) For servers that reside on only one network (ex. 192.168.1.x), when the redirect is returned to that server, it experiences a timeout and connection failure because it cannot physically reach 10.112.28.x
    Is there any way, through tnsnames, splitting listener.ora, VLAN's, the database itself, anything, for us to have requests for 192.168.1 be returned on 192.168.1 and not redirected. Would client side load balancing be a better option? Any way to manipulate the service registrations?
    Thanks for all future responses!
    Paul

  • When I listen try to listen to music on my ipad it starts skipping though the whole playlist, how can I stop this?

    Help Please

    Then RESET:
    • Press & hold both Home and Sleep/Wake until the red power-off slider appears
    • Continue holding both down until that display goes away, replaced by the whilte Apple logo on a blank screen
    • Let the normal boot process continue and, once up again, try your app.
    (And I guess I don't have to say that all I'm doing here in paraphrasing what's in your User's Guide, do I?)

Maybe you are looking for

  • Error 1611

    I have been trying to get the new update since early today. I spent over 2 hours on the phone with Apple Care and they told me there is nothing more then can do. When I try to restore when downloading the new 2.0 it just comes up with Error: The ipod

  • Panasonic TX-32LXD80F as display for Mac mini???

    Hallo, I wanted to connect my mac and my TV via VGA cable, at first I see the boot screen and the blue screen but after that the displays black like nothings connected... Does anybody know, what to do to use this TV with my mac??

  • Link between Payment Terms and Credit Management .

    Hi Friends                     Where and how does Payment Terms interact with Credit Management ? Is it with Horizon date or open items check ? Regards Mahesh

  • Foreign trade Determination

    Hi ,         When i am creating an invoice,the foreign trade data tab,is incomplete.In my case the shipping point contry and the ship to party country are both same,then why is it determining foreign trade ???? How do i avoid it?? This is order relat

  • BPM field in tags read incorrectly

    I'm using iTunes 6, and I have all my MP3's tagged with their BPM (used an analyzer on my PC). However, iTunes is not reading a lot of them correctly, and the BPM's show up as rediculous values varying from around 328 to 64428. Some files are fine. I