Oracle 10g Agent goes down itself

I have been observing the Oracle 10g agent goes down by itself and in grid control it reports as Agent unreachable. where do I see the log why Agent is going down on target everytime.

I guess the location is D:\oracle\agent10g\sysman\log
However, I do not see any information why th agent went down ..
log looks like below
2009-12-29 15:35:40,552 Thread-5812 [IBM WebSphere Application Server] InstanceProperty (version) is marked OPTIONAL but is being used
(00506)
2009-12-29 15:35:47,599 Thread-5812 EMAgent started successfully
(00702)
2010-01-06 11:00:36,085 Thread-4360 Starting Agent 10.2.0.4.0 from D:\oracle\agent10g
(00701)
2010-01-06 11:00:37,929 Thread-4360 [E-Mail IMAP Server] InstanceProperty (imap_host) is marked OPTIONAL but is being used
(00506)
2010-01-06 11:00:38,804 Thread-4360 Invalid expression (CacheFlushSuccess __delta) > 0 ? (CacheFlushSuccess __delta ) : 0
(00101)
2010-01-06 11:00:39,132 Thread-4360 [Database Instance] InstanceProperty (DBVersion) is marked OPTIONAL but is being used
(00506)
2010-01-06 11:00:39,445 Thread-4360 [Identity Manager Repository] InstanceProperty (Port) is marked OPTIONAL but is being used
(00506)
2010-01-06 11:00:39,445 Thread-4360 [Identity Manager Repository] InstanceProperty (SID) is marked OPTIONAL but is being used
(00506)
2010-01-06 11:00:39,445 Thread-4360 [Identity Manager Repository] InstanceProperty (url) is marked OPTIONAL but is being used
(00506)
2010-01-06 11:00:39,445 Thread-4360 [Identity Manager Repository] InstanceProperty (jdbcdriver) is marked OPTIONAL but is being used
(00506)
2010-01-06 11:00:39,585 Thread-4360 [Oracle BPEL Process Manager] InstanceProperty (oc4jTargetName) is marked OPTIONAL but is being used
(00506)
2010-01-06 11:00:40,616 Thread-4360 [E-Mail POP Server] InstanceProperty (pop_host) is marked OPTIONAL but is being used
(00506)
2010-01-06 11:00:40,726 Thread-4360 [Cluster Database] InstanceProperty (DBVersion) is marked OPTIONAL but is being used
(00506)
2010-01-06 11:00:40,851 Thread-4360 [Siebel Gateway Server] InstanceProperty (SIEBEL_GATEWAY) is marked OPTIONAL but is being used
(00506)
2010-01-06 11:00:40,851 Thread-4360 [Siebel Gateway Server] InstanceProperty (SIEBEL_PORT) is marked OPTIONAL but is being used
(00506)
2010-01-06 11:00:40,866 Thread-4360 [Siebel Server] InstanceProperty (filesystem:filesystem) is marked OPTIONAL but is being used
(00506)
2010-01-06 11:00:40,866 Thread-4360 [Siebel Server] InstanceProperty (filesystem:installdir) is marked OPTIONAL but is being used
(00506)
2010-01-06 11:00:40,866 Thread-4360 [Siebel Server] InstanceProperty (filesystem:logdir) is marked OPTIONAL but is being used
(00506)
2010-01-06 11:00:40,898 Thread-4360 [Load Balancer Switch] InstanceProperty (snmpTimeout) is marked OPTIONAL but is being used
(00506)
2010-01-06 11:00:40,960 Thread-4360 [E-Mail SMTP Inbound Server] InstanceProperty (smtp_host) is marked OPTIONAL but is being used
(00506)
2010-01-06 11:00:41,007 Thread-4360 [E-Mail SMTP Outbound Server] InstanceProperty (smtp_host) is marked OPTIONAL but is being used
(00506)
2010-01-06 11:00:41,085 Thread-4360 Undefined column name interval in expression ( active.requests > 0) ? active.requests/(interval*60) : 0
(00104)
2010-01-06 11:00:41,132 Thread-4360 [BEA WebLogic Managed Server] InstanceProperty (version) is marked OPTIONAL but is being used
(00506)
2010-01-06 11:00:41,226 Thread-4360 [IBM WebSphere Application Server] InstanceProperty (version) is marked OPTIONAL but is being used
(00506)
2010-01-06 11:00:48,054 Thread-4360 EMAgent started successfully (00702)

Similar Messages

  • How do I configure my system so that Oracle 10g properly shuts down and sta

    How do I configure my system so that Oracle 10g properly shuts down and starts up when I reboot my Solaris system?

    http://download.oracle.com/docs/cd/B19306_01/server.102/b15658/strt_stp.htm#sthref255

  • If Oracle DB Connection goes down,it should reconnect the DB again

    Hi All,
    I have a serious problem while running java process all the day. Sometimes I get following errors:
    1. (***ERROR) java.sql.SQLException: OALL8 is in an inconsistent state.
    2. (***ERROR) java.sql.SQLException: Io exception: Broken pipe
    (***ERROR) java.sql.SQLException: Io exception: Broken pipe
    (***ERROR) java.sql.SQLException: Closed Connection
    3. (***ERROR) java.sql.SQLException: No more data to read from socket.
    The above exceptions are not coming everyday.But sometimes it gives exceptions and because of that my java process will not run until it restarts the program.
    I do know, because of oracle server down some of exceptions are coming. But what I wanted to do is if once the oracle server is up , my java application has to reconnect to the DB.
    My idea is when java throws SQLException because of oracle server down, in the exception block it has to reconnect to the DB again by checking for right SQLERROR.
    I am using JRE 1.4.2_10, JDBC Thin driver and Oracle 10g.
    About Oracle DataSource am using JDBC 3.0 concepts which includes
    OracleConnectionCacheManager and
    Oracle DataSource
    Can anybody help me on this to resolve the above exceptions.
    Thanks in advance.

    Actually, we are implementing Fast Connection Failover in our
    application. Wwhenever one server instance goes down, java has to
    map to another instance by taking all the required connections and
    when server backs up then oracle has to do load balancing with all
    the server instances.So you do already solve connection problem, right?
    In the Java application, it sends array of hundred records to oracle all
    the time. Is it because of sending huge arrays it is giving exception
    java.sql.SQLException: OALL8 is in an inconsistent state.
    Please help me out in solving the exceptions am getting.i think the exception raise not because you sending a huge arrays,
    but because the connection broken in the middle of sending array.
    you can get another connection when that exception occurs.
    i'm not sure... i hope this can help you about handling that exception :
    boolean success = false;
    // will repeatly get available any connection until your transfer successfull
    // or datasource does not has connection available anymore.
    while (!success && isConnectionAvailable()) {
       Connection c = null;
       // Statement s = null;
       // ResultSet r = null;
       try {
          c = ds.getConnection();
          c.setAutoCommit(false);
          // send your array here
          // only commit when all data sent
          c.commit();
          c.setAutoCommit(true);
          success = true;
       } catch (SQLException sqlEx) {
          if (sqlEx.getErrorCode() == SERVER_DOWN) {
             // not sure this is needed...
             // when connection broken your partial sent data will not saved in db
             // because we set off auto-commit.
             // & actually calling rollback when connection is broken only raise
             // another sql exception ;P
             if (c.isValid(0)) c.rollback();
             // log exception information
       } finally {
          // close result set
          // close statement
          DbUtils.closeQuietly(c);
    }

  • Oracle 10g Agent is not working in Windows VISTA

    Hi
    I have installed Oracle 10g Grid Control in VISTA. But the Agent is not getting started.
    the trc in the Agent10 G log directory is
    2008-04-19 17:29:45 Thread-532 WARN http: snmehl_connect: connect failed to (HP-PC:3872): No connection could be made because the target machine actively refused it.
    (error = 10061)
    2008-04-19 17:29:45 Thread-532 ERROR main: nmectla_agentctl: Error connecting to https://HP-PC:3872/emd/main/. Returning status code 1
    2008-04-19 18:18:22 Thread-5288 WARN http: snmehl_connect: connect failed to (HP-PC:3872): No connection could be made because the target machine actively refused it.
    (error = 10061)
    2008-04-19 18:18:22 Thread-5288 ERROR main: nmectla_agentctl: Error connecting to https://HP-PC:3872/emd/main/. Returning status code 1
    2008-04-19 18:18:23 Thread-7652 ERROR main: nmectl.c: nmectl_validateTZRegion, agentTZoffset =330,and testTZoffset for GMT:0 do not match
    2008-04-19 18:18:24 Thread-7652 ERROR main: nmectl.c: nmectl_validateTZRegion, agentTZoffset =330,and testTZoffset for GMT:0 do not match
    2008-04-19 18:18:26 Thread-7272 WARN http: snmehl_connect: connect failed to (HP-PC:3872): No connection could be made because the target machine actively refused it.
    (error = 10061)
    2008-04-19 18:18:26 Thread-7272 ERROR main: nmectla_agentctl: Error connecting to https://HP-PC:3872/emd/main/. Returning status code 1
    2008-04-19 18:20:52 Thread-4872 WARN http: snmehl_connect: connect failed to (HP-PC:3872): No connection could be made because the target machine actively refused it.
    (error = 10061)
    2008-04-19 18:20:52 Thread-4872 ERROR main: nmectla_agentctl: Error connecting to https://HP-PC:3872/emd/main/. Returning status code 1
    2008-04-19 18:20:53 Thread-4344 ERROR main: nmectl.c: nmectl_validateTZRegion, agentTZoffset =330,and testTZoffset for GMT:0 do not match
    2008-04-19 18:20:54 Thread-4344 ERROR main: nmectl.c: nmectl_validateTZRegion, agentTZoffset =330,and testTZoffset for GMT:0 do not match
    2008-04-19 18:20:55 Thread-5604 WARN http: snmehl_connect: connect failed to (HP-PC:3872): No connection could be made because the target machine actively refused it.
    (error = 10061)
    2008-04-19 18:20:55 Thread-5604 ERROR main: nmectla_agentctl: Error connecting to https://HP-PC:3872/emd/main/. Returning status code 1

    This pretty much says it all:
    No connection could be made because the target machine actively refused it.What version of Vista?
    What version of the agent? ... 10g is not a version number it is a marketing label
    Did you check to see if the agent is compatible with your operating system?
    My recommendation would be to get a real operating system: Either Oracle Linux or XP.

  • Oracle 10g agent installation problem -- please advice. Thanks.

    I am trying to push an agent from a 32-bit CentOS 4.5 machine (where I successfully installed EM Grid Control with Database & that's working fine) to a 2-node Oracle 10g Clusterware/RAC, each machine has 64-bit CentOS 4.5. The questions I have are:
    1. Is this mixture of 32-bit/64-bit possible?
    2. When I am performing agent install, everything seemed to work (with manual root.sh execution provision) but at the end it's giving a message
    "Failure Preinstall Script Not Executed, Install Is Failed. Run root.sh Is Not Executed, PostInstall Script Is Not Executed. Collection Logs Is Success."
    And I don't see any agent* directory anywhere in any of the intended RAC Cluster nodes -- also, no error message log!
    Clusterware/RAC versin: 10.2.0.3
    EM Grid Control: 10.2.0.1
    I have no clue what are the meaning of these!
    Can somebody please tell me how to fix it (no upgrade suggestion please)?
    Thanks in advance.

    Hi,
    I noticed that you'd like to install OEM Agent for 32bit on 64-bit machine.
    Please look at the link below.
    http://www.oracle.com/technology/software/products/oem/htdocs/agentsoft.html#101x
    Because OEM Agent on different platform are released separately.
    eg.
    For x86linux is Linux_Grid_Control_agent_download_10_2_0_2_0.zip
    For Linux x86-64 is Linux_x86_64_Grid_Control_agent_download_10_2_0_2_0.zip
    So could you please install OEM agent version for linx x86-64 ?
    but I can not find OEM agent 10.2.0.1 version on link above. Do you have this version for 64-bit ?
    Regards
    Jason

  • Oracle 10g - Not Shutting Down in Vista Home Premium.

    Hello Guys.
    I installed Oracle 10gR2 successfully on Vista Home Premium.. I can even make a table which logging as a Sysdba .. but when i want to Shutdown the database, it doesn't shutdown .
    I re-installed Oracle 10gR2 thrice and create/delete database more than 10 times .. Still No luck ..
    Here is the alert_log
    Dump file e:\oracle\admin\test\bdump\alert_test.log
    Fri Jul 04 21:50:58 2008
    ORACLE V10.2.0.3.0 - Production vsnsta=0
    vsnsql=14 vsnxtr=3
    Windows NT Version V6.0
    CPU : 2 - type 586, 2 Physical Cores
    Process Affinity : 0x00000000
    Memory (Avail/Total): Ph:882M/2045M, Ph+PgF:2950M/4313M, VA:1927M/2047M
    Fri Jul 04 21:50:59 2008
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Shared memory segment for instance monitoring created
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =18
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.3.0.
    System parameters with non-default values:
    processes = 150
    sga_target = 612368384
    control_files = E:\ORACLE\ORADATA\TEST\CONTROL01.CTL, E:\ORACLE\ORADATA\TEST\CONTROL02.CTL, E:\ORACLE\ORADATA\TEST\CONTROL03.CTL
    db_block_size = 8192
    compatible = 10.2.0.3.0
    db_file_multiblock_read_count= 16
    db_recovery_file_dest = E:\oracle\flash_recovery_area
    db_recovery_file_dest_size= 2147483648
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    remote_login_passwordfile= EXCLUSIVE
    db_domain =
    dispatchers = (PROTOCOL=TCP) (SERVICE=testXDB)
    job_queue_processes = 10
    audit_file_dest = E:\ORACLE\ADMIN\TEST\ADUMP
    background_dump_dest = E:\ORACLE\ADMIN\TEST\BDUMP
    user_dump_dest = E:\ORACLE\ADMIN\TEST\UDUMP
    core_dump_dest = E:\ORACLE\ADMIN\TEST\CDUMP
    db_name = test
    open_cursors = 300
    pga_aggregate_target = 203423744
    PMON started with pid=2, OS id=5216
    PSP0 started with pid=3, OS id=1776
    MMAN started with pid=4, OS id=6120
    DBW0 started with pid=5, OS id=1236
    LGWR started with pid=6, OS id=4388
    CKPT started with pid=7, OS id=4444
    SMON started with pid=8, OS id=1232
    RECO started with pid=9, OS id=5728
    CJQ0 started with pid=10, OS id=5104
    MMON started with pid=11, OS id=1960
    Fri Jul 04 21:51:02 2008
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    MMNL started with pid=12, OS id=1340
    Fri Jul 04 21:51:02 2008
    starting up 1 shared server(s) ...
    Fri Jul 04 21:51:07 2008
    The input backup piece E:\ORACLE\ORA102\ASSISTANTS\DBCA\TEMPLATES\SEED_DATABASE.DFB is in compressed format.
    Fri Jul 04 21:51:39 2008
    Full restore complete of datafile 4 to datafile copy E:\ORACLE\ORADATA\TEST\USERS01.DBF. Elapsed time: 0:00:02
    checkpoint is 521802
    Full restore complete of datafile 2 to datafile copy E:\ORACLE\ORADATA\TEST\UNDOTBS01.DBF. Elapsed time: 0:00:02
    checkpoint is 521802
    Fri Jul 04 21:52:06 2008
    Full restore complete of datafile 3 to datafile copy E:\ORACLE\ORADATA\TEST\SYSAUX01.DBF. Elapsed time: 0:00:30
    checkpoint is 521802
    last deallocation scn is 521589
    Fri Jul 04 21:52:21 2008
    Full restore complete of datafile 1 to datafile copy E:\ORACLE\ORADATA\TEST\SYSTEM01.DBF. Elapsed time: 0:00:55
    checkpoint is 521802
    last deallocation scn is 515202
    Fri Jul 04 21:52:22 2008
    Create controlfile reuse set database "test"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    'E:\oracle\oradata\test\SYSTEM01.DBF',
    'E:\oracle\oradata\test\UNDOTBS01.DBF',
    'E:\oracle\oradata\test\SYSAUX01.DBF',
    'E:\oracle\oradata\test\USERS01.DBF'
    LOGFILE GROUP 1 ('E:\oracle\oradata\test\redo01.log') SIZE 51200K,
    GROUP 2 ('E:\oracle\oradata\test\redo02.log') SIZE 51200K,
    GROUP 3 ('E:\oracle\oradata\test\redo03.log') SIZE 51200K RESETLOGS
    WARNING: Default Temporary Tablespace not specified in CREATE DATABASE command
    Default Temporary Tablespace will be necessary for a locally managed database in future release
    Setting recovery target incarnation to 1
    Fri Jul 04 21:52:25 2008
    Successful mount of redo thread 1, with mount id 1957322646
    Fri Jul 04 21:52:25 2008
    Completed: Create controlfile reuse set database "test"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    'E:\oracle\oradata\test\SYSTEM01.DBF',
    'E:\oracle\oradata\test\UNDOTBS01.DBF',
    'E:\oracle\oradata\test\SYSAUX01.DBF',
    'E:\oracle\oradata\test\USERS01.DBF'
    LOGFILE GROUP 1 ('E:\oracle\oradata\test\redo01.log') SIZE 51200K,
    GROUP 2 ('E:\oracle\oradata\test\redo02.log') SIZE 51200K,
    GROUP 3 ('E:\oracle\oradata\test\redo03.log') SIZE 51200K RESETLOGS
    Shutting down instance: further logons disabled
    Fri Jul 04 21:52:26 2008
    Stopping background process MMNL
    Fri Jul 04 21:52:27 2008
    Stopping background process CJQ0
    Fri Jul 04 21:52:27 2008
    Stopping background process MMON
    Fri Jul 04 21:52:28 2008
    Shutting down instance (immediate)
    License high water mark = 1
    Fri Jul 04 21:52:28 2008
    Stopping Job queue slave processes
    Fri Jul 04 21:52:28 2008
    Job queue slave processes stopped
    Waiting for dispatcher 'D000' to shutdown
    All dispatchers and shared servers shutdown
    Fri Jul 04 21:52:30 2008
    ALTER DATABASE CLOSE NORMAL
    ORA-1109 signalled during: ALTER DATABASE CLOSE NORMAL...
    Fri Jul 04 21:52:30 2008
    ALTER DATABASE DISMOUNT
    Completed: ALTER DATABASE DISMOUNT
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Fri Jul 04 21:52:33 2008
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =18
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.3.0.
    System parameters with non-default values:
    processes = 150
    sga_target = 612368384
    control_files = E:\ORACLE\ORADATA\TEST\CONTROL01.CTL, E:\ORACLE\ORADATA\TEST\CONTROL02.CTL, E:\ORACLE\ORADATA\TEST\CONTROL03.CTL
    db_block_size = 8192
    compatible = 10.2.0.3.0
    db_file_multiblock_read_count= 16
    db_recovery_file_dest = E:\oracle\flash_recovery_area
    db_recovery_file_dest_size= 2147483648
    norecovery_through_resetlogs= TRUE
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    remote_login_passwordfile= EXCLUSIVE
    db_domain =
    dispatchers = (PROTOCOL=TCP) (SERVICE=testXDB)
    audit_file_dest = E:\ORACLE\ADMIN\TEST\ADUMP
    background_dump_dest = E:\ORACLE\ADMIN\TEST\BDUMP
    user_dump_dest = E:\ORACLE\ADMIN\TEST\UDUMP
    core_dump_dest = E:\ORACLE\ADMIN\TEST\CDUMP
    db_name = test
    open_cursors = 300
    pga_aggregate_target = 203423744
    PMON started with pid=2, OS id=2196
    PSP0 started with pid=3, OS id=2628
    MMAN started with pid=4, OS id=4080
    DBW0 started with pid=5, OS id=4544
    LGWR started with pid=6, OS id=5296
    CKPT started with pid=7, OS id=4660
    SMON started with pid=8, OS id=5180
    RECO started with pid=9, OS id=5600
    MMON started with pid=10, OS id=4620
    MMNL started with pid=11, OS id=3788
    Fri Jul 04 21:52:33 2008
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    starting up 1 shared server(s) ...
    Fri Jul 04 21:52:34 2008
    Create controlfile reuse set database "test"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    'E:\oracle\oradata\test\SYSTEM01.DBF',
    'E:\oracle\oradata\test\UNDOTBS01.DBF',
    'E:\oracle\oradata\test\SYSAUX01.DBF',
    'E:\oracle\oradata\test\USERS01.DBF'
    LOGFILE GROUP 1 ('E:\oracle\oradata\test\redo01.log') SIZE 51200K,
    GROUP 2 ('E:\oracle\oradata\test\redo02.log') SIZE 51200K,
    GROUP 3 ('E:\oracle\oradata\test\redo03.log') SIZE 51200K RESETLOGS
    Fri Jul 04 21:52:34 2008
    WARNING: Default Temporary Tablespace not specified in CREATE DATABASE command
    Default Temporary Tablespace will be necessary for a locally managed database in future release
    Setting recovery target incarnation to 1
    Fri Jul 04 21:52:38 2008
    Successful mount of redo thread 1, with mount id 1957335970
    Fri Jul 04 21:52:38 2008
    Completed: Create controlfile reuse set database "test"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    'E:\oracle\oradata\test\SYSTEM01.DBF',
    'E:\oracle\oradata\test\UNDOTBS01.DBF',
    'E:\oracle\oradata\test\SYSAUX01.DBF',
    'E:\oracle\oradata\test\USERS01.DBF'
    LOGFILE GROUP 1 ('E:\oracle\oradata\test\redo01.log') SIZE 51200K,
    GROUP 2 ('E:\oracle\oradata\test\redo02.log') SIZE 51200K,
    GROUP 3 ('E:\oracle\oradata\test\redo03.log') SIZE 51200K RESETLOGS
    Fri Jul 04 21:52:38 2008
    Stopping background process MMNL
    Fri Jul 04 21:52:39 2008
    Stopping background process MMON
    Starting background process MMON
    Starting background process MMNL
    MMON started with pid=10, OS id=5824
    MMNL started with pid=11, OS id=5472
    Fri Jul 04 21:52:40 2008
    ALTER SYSTEM enable restricted session;
    Fri Jul 04 21:52:40 2008
    alter database "test" open resetlogs
    Fri Jul 04 21:52:40 2008
    RESETLOGS after incomplete recovery UNTIL CHANGE 521802
    Fri Jul 04 21:52:40 2008
    Errors in file e:\oracle\admin\test\udump\test_ora_3664.trc:
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1: 'E:\ORACLE\ORADATA\TEST\REDO01.LOG'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    Fri Jul 04 21:52:45 2008
    Errors in file e:\oracle\admin\test\udump\test_ora_3664.trc:
    ORA-00313: open failed for members of log group 2 of thread 1
    ORA-00312: online log 2 thread 1: 'E:\ORACLE\ORADATA\TEST\REDO02.LOG'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    Fri Jul 04 21:52:49 2008
    Errors in file e:\oracle\admin\test\udump\test_ora_3664.trc:
    ORA-00313: open failed for members of log group 3 of thread 1
    ORA-00312: online log 3 thread 1: 'E:\ORACLE\ORADATA\TEST\REDO03.LOG'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    Fri Jul 04 21:52:54 2008
    Setting recovery target incarnation to 2
    Fri Jul 04 21:52:54 2008
    Assigning activation ID 1957335970 (0x74aa93a2)
    Thread 1 opened at log sequence 1
    Current log# 3 seq# 1 mem# 0: E:\ORACLE\ORADATA\TEST\REDO03.LOG
    Successful open of redo thread 1
    Fri Jul 04 21:52:55 2008
    MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
    Fri Jul 04 21:52:55 2008
    SMON: enabling cache recovery
    Fri Jul 04 21:52:56 2008
    Successfully onlined Undo Tablespace 1.
    Dictionary check beginning
    Tablespace 'TEMP' #3 found in data dictionary,
    but not in the controlfile. Adding to controlfile.
    Dictionary check complete
    Fri Jul 04 21:52:56 2008
    SMON: enabling tx recovery
    Fri Jul 04 21:52:56 2008
    WARNING: The following temporary tablespaces contain no files.
    This condition can occur when a backup controlfile has
    been restored. It may be necessary to add files to these
    tablespaces. That can be done using the SQL statement:
    ALTER TABLESPACE <tablespace_name> ADD TEMPFILE
    Alternatively, if these temporary tablespaces are no longer
    needed, then they can be dropped.
    Empty temporary tablespace: TEMP
    Database Characterset is US7ASCII
    Threshold validation cannot be done before catproc is loaded.
    Threshold validation cannot be done before catproc is loaded.
    WARNING: Files may exists in db_recovery_file_dest
    that are not known to the database. Use the RMAN command
    CATALOG RECOVERY AREA to re-catalog any such files.
    One of the following events caused this:
    1. A backup controlfile was restored.
    2. A standby controlfile was restored.
    3. The controlfile was re-created.
    4. db_recovery_file_dest had previously been enabled and
    then disabled.
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    QMNC started with pid=15, OS id=1136
    Fri Jul 04 21:53:00 2008
    LOGSTDBY: Validating controlfile with logical metadata
    Fri Jul 04 21:53:00 2008
    LOGSTDBY: Validation complete
    Global Name changed to TEST
    Completed: alter database "test" open resetlogs
    Fri Jul 04 21:53:03 2008
    alter database rename global_name to "test"
    Completed: alter database rename global_name to "test"
    Fri Jul 04 21:53:03 2008
    ALTER TABLESPACE TEMP ADD TEMPFILE 'E:\oracle\oradata\test\TEMP01.DBF' SIZE 20480K REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED
    Completed: ALTER TABLESPACE TEMP ADD TEMPFILE 'E:\oracle\oradata\test\TEMP01.DBF' SIZE 20480K REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED
    Fri Jul 04 21:53:05 2008
    ALTER DATABASE DEFAULT TABLESPACE "USERS"
    Completed: ALTER DATABASE DEFAULT TABLESPACE "USERS"
    Fri Jul 04 21:53:05 2008
    alter database character set INTERNAL_CONVERT WE8MSWIN1252
    Fri Jul 04 21:53:14 2008
    Updating character set in controlfile to WE8MSWIN1252
    Synchronizing connection with database character set information
    Refreshing type attributes with new character set information
    Completed: alter database character set INTERNAL_CONVERT WE8MSWIN1252
    Fri Jul 04 21:53:19 2008
    ALTER SYSTEM disable restricted session;
    Fri Jul 04 21:53:20 2008
    db_recovery_file_dest_size of 2048 MB is 0.00% used. This is a
    user-specified limit on the amount of space that will be used by this
    database for recovery-related files, and does not reflect the amount of
    space available in the underlying filesystem or ASM diskgroup.
    Fri Jul 04 21:53:22 2008
    Starting background process CJQ0
    CJQ0 started with pid=18, OS id=2848
    Fri Jul 04 21:53:31 2008
    Starting background process EMN0
    EMN0 started with pid=21, OS id=4088
    Fri Jul 04 21:53:31 2008
    Shutting down instance: further logons disabled
    Fri Jul 04 21:53:36 2008
    Stopping background process QMNC
    Fri Jul 04 21:53:36 2008
    Stopping background process CJQ0
    Fri Jul 04 21:53:38 2008
    Stopping background process MMNL
    Fri Jul 04 21:53:39 2008
    Stopping background process MMON
    Fri Jul 04 21:53:40 2008
    Shutting down instance (immediate)
    License high water mark = 4
    All dispatchers and shared servers shutdown
    Fri Jul 04 21:53:47 2008
    ALTER DATABASE CLOSE NORMAL
    Fri Jul 04 21:53:47 2008
    SMON: disabling tx recovery
    SMON: disabling cache recovery
    Fri Jul 04 21:53:48 2008
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Thread 1 closed at log sequence 1
    Successful close of redo thread 1
    Fri Jul 04 21:53:48 2008
    Completed: ALTER DATABASE CLOSE NORMAL
    Fri Jul 04 21:53:48 2008
    ALTER DATABASE DISMOUNT
    Completed: ALTER DATABASE DISMOUNT
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Fri Jul 04 21:53:51 2008
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =18
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.3.0.
    System parameters with non-default values:
    processes = 150
    sga_target = 612368384
    control_files = E:\ORACLE\ORADATA\TEST\CONTROL01.CTL, E:\ORACLE\ORADATA\TEST\CONTROL02.CTL, E:\ORACLE\ORADATA\TEST\CONTROL03.CTL
    db_block_size = 8192
    compatible = 10.2.0.3.0
    db_file_multiblock_read_count= 16
    db_recovery_file_dest = E:\oracle\flash_recovery_area
    db_recovery_file_dest_size= 2147483648
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    remote_login_passwordfile= EXCLUSIVE
    db_domain =
    dispatchers = (PROTOCOL=TCP) (SERVICE=testXDB)
    job_queue_processes = 10
    audit_file_dest = E:\ORACLE\ADMIN\TEST\ADUMP
    background_dump_dest = E:\ORACLE\ADMIN\TEST\BDUMP
    user_dump_dest = E:\ORACLE\ADMIN\TEST\UDUMP
    core_dump_dest = E:\ORACLE\ADMIN\TEST\CDUMP
    db_name = test
    open_cursors = 300
    pga_aggregate_target = 203423744
    PMON started with pid=2, OS id=5096
    PSP0 started with pid=3, OS id=5136
    MMAN started with pid=4, OS id=4880
    DBW0 started with pid=5, OS id=3532
    LGWR started with pid=6, OS id=3724
    CKPT started with pid=7, OS id=1240
    SMON started with pid=8, OS id=5440
    RECO started with pid=9, OS id=2272
    CJQ0 started with pid=10, OS id=5084
    MMON started with pid=11, OS id=4944
    Fri Jul 04 21:53:52 2008
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    MMNL started with pid=12, OS id=2352
    Fri Jul 04 21:53:52 2008
    starting up 1 shared server(s) ...
    Fri Jul 04 21:53:53 2008
    ALTER DATABASE MOUNT
    Fri Jul 04 21:53:57 2008
    Setting recovery target incarnation to 2
    Fri Jul 04 21:53:57 2008
    Successful mount of redo thread 1, with mount id 1957360881
    Fri Jul 04 21:53:57 2008
    Database mounted in Exclusive Mode
    Completed: ALTER DATABASE MOUNT
    Fri Jul 04 21:53:58 2008
    ALTER DATABASE OPEN
    Fri Jul 04 21:53:59 2008
    Thread 1 opened at log sequence 1
    Current log# 3 seq# 1 mem# 0: E:\ORACLE\ORADATA\TEST\REDO03.LOG
    Successful open of redo thread 1
    Fri Jul 04 21:53:59 2008
    MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
    Fri Jul 04 21:53:59 2008
    SMON: enabling cache recovery
    Fri Jul 04 21:54:00 2008
    Successfully onlined Undo Tablespace 1.
    Fri Jul 04 21:54:00 2008
    SMON: enabling tx recovery
    Fri Jul 04 21:54:00 2008
    Database Characterset is WE8MSWIN1252
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    QMNC started with pid=16, OS id=4852
    Fri Jul 04 21:54:07 2008
    Completed: ALTER DATABASE OPEN
    Fri Jul 04 21:54:07 2008
    db_recovery_file_dest_size of 2048 MB is 0.00% used. This is a
    user-specified limit on the amount of space that will be used by this
    database for recovery-related files, and does not reflect the amount of
    space available in the underlying filesystem or ASM diskgroup.
    Fri Jul 04 21:55:23 2008
    SERVER COMPONENT id=UTLRP_BGN: timestamp=2008-07-04 21:55:23
    SERVER COMPONENT id=UTLRP_END: timestamp=2008-07-04 21:55:24
    Fri Jul 04 21:58:45 2008
    create tablespace sachin datafile 'E:\oracle\oradata\test\SACHIN01.DBF' size 5m
    Fri Jul 04 21:58:46 2008
    Completed: create tablespace sachin datafile 'E:\oracle\oradata\test\SACHIN01.DBF' size 5m
    Fri Jul 04 22:00:11 2008
    Starting background process EMN0
    EMN0 started with pid=29, OS id=3172
    Fri Jul 04 22:00:11 2008
    Shutting down instance: further logons disabled
    Fri Jul 04 22:02:27 2008
    kkjcre1p: unable to spawn jobq slave process, error 1090
    Fri Jul 04 22:02:32 2008
    kkjcre1p: unable to spawn jobq slave process, error 1090
    Fri Jul 04 22:03:02 2008
    kkjcre1p: unable to spawn jobq slave process, error 1090
    Fri Jul 04 22:22:28 2008
    Oracle Instance Startup operation failed. Another process may be attempting to startup or shutdown this Instance.
    Failed to acquire instance startup/shutdown serialization primitive
    Fri Jul 04 22:30:02 2008
    ksvcreate: Process(m000) creation failed
    Fri Jul 04 22:31:02 2008
    ksvcreate: Process(m000) creation failed
    Fri Jul 04 22:32:02 2008
    ksvcreate: Process(m000) creation failed
    Fri Jul 04 22:33:02 2008
    ksvcreate: Process(m000) creation failed
    Fri Jul 04 22:34:02 2008
    ksvcreate: Process(m000) creation failed

    Hi,
    From the alert log what you have posted :-
    You have a restore of Existing DB from different DB to this New One
    WARNING: Default Temporary Tablespace not specified in CREATE DATABASE command
    Default Temporary Tablespace will be necessary for a locally managed database in future release
    Setting recovery target incarnation to 1
    After shutting Down completed "Fri Jul 04 21:52:33 2008"
    How come July 4th... (Could not understand this, from which place
    your are from)
    Started instance
    --Starting ORACLE instance (normal)
    After that tried to create database Once again
    then due to that File got corrupted
    ORA-00312: online log 1 thread 1: 'E:\ORACLE\ORADATA\TEST\REDO01.LOG'
    Yoy might have not created DB correctly or restored. So kindly drop everthing (DB), if it is a testing Machine, then Clear the Services First from machine Delete all files with respective DB and re-do the Job with out any mistakes.
    Thanks & Regards,
    Pavan Kumar N

  • Oracle 10g agent

    Hi,
    Could someone please refer to the Oracle site/page or any other that I can get info about the latest Oracle agent and download if possible.
    Thanks

    You could use the Oracle Grid installation set that you used on the server. There is a selection for only installing a Grid Agent. I am on HP-UX Itaniums and after several exchanges with support they suggested this method.

  • Oracle 10g agent compatiblity for Solaris 10i machine

    Hi Guys,
    Is 10gR3 agents compatible with Solaris 10 OS? Where we can get that infromation?

    In the installation guide:
    http://download.oracle.com/docs/cd/B16240_01/doc/install.102/b31198/toc.htm
    Werne

  • Oracle 9i and 10g Agents on one server

    Hello,
    What are the conflicts if I installed 10g agent on the server that 9i agent already occupy. I want to use 9i and 10g OEM. Thank you in advance.

    I dont believe you will have any issues. They are very different. The 10g agent goes in its own home and has its own binaries running against the db.

  • Auto start of db when it goes down

    Is there any way using script to start database when it goes down due to some unexpected reason on windows platform?
    Oracle 10g
    Windows 2003 Server

    Hi,
    Create your own batch script that does the below things
    1) Make a connection to Oracle to see if database is up.
    2) If not then start the database.
    I would be better checking why Oracle database is going down too frequent rather doing auto start.
    Regards
    Anurag Tibrewal.

  • Java agent goes unresponsive on solaris 8

    Hi all,
    Sorry that I am posting here.But this bug has been on me for two weeks.
    I have an agent on Solaris. It goes unresponsive after a JNI call. I mean I use JNI in that class, which makes a callback to the Java program.The whole agent goes down when I create a java object in the callback method.This is happenning on some solaris 8 machines.I do see it as patch issue.Couls any one suggest a patch regardig this?
    The problem where my agent goes unresponsive is explained below...
    I get a sigsegv in realloc. The line of the code that I use contains a call to create a new object like
    MyClass a = new MyClass().
    The pstack trace is shown as below
    --- called from signal handler with signal 11 (SIGSEGV) ---
    ff2423ac realfree (4e5eada4, ff2c2858, ff2bc008, c, 4e4f574f, f5660) + 70
    ff242c1c freeunlocked (ff2c27cc, ff2bc008, 1c40d8, ff2bc008, 29, 201b40) + a0
    ff242b6c free (1c40d8, 0, f5660, ff03f438, 1, 0) + 20
    ff03f438 ???????? (f0e7e004, 0, 0, ff0371f8, ffffffff, 0)
    ff037200 VerifyClass (a5fb64, 1b343c, f0e7e280, 100, 3a7310, fe09b1e0) + 3fc
    fe7ce178 VerifyClassCodes (a5fb64, 1b343c, f0e7e280, 100, fe3e411a, 0) + 10
    fe0b8c60 __1cIVerifierRverify_byte_codes6FnTinstanceKlassHandle_pnGThread__v_ (0, fe40fad0, fe41a080, fe40f9bc, fe0a0fa0, fe0a0fa0) + 3a0
    fe0b86f0 __1cNinstanceKlassPlink_class_impl6FnTinstanceKlassHandle_pnGThread__v_ (f0e7e55c, a5fad0, f0e7e4ec, a5fad0, 0, fe0a0fa0) + 45c
    fe0c6ec4 __1cNinstanceKlassPinitialize_impl6FnTinstanceKlassHandle_pnGThread__v_ (f0e7e678, a5fad0, f0e7e918, 153bfc, a5fad0, 359284) + 9c
    fe0c6de0 __1cNinstanceKlassKinitialize6MpnGThread__v_ (f5d7c7d8, a5fad0, a5fad0, f0e7e400, a5fad0, 359284) + 84
    fe0cf1f4 __1cSInterpreterRuntimeE_new6FpnKJavaThread_pnTconstantPoolOopDesc_i_v_ (a5fad0, f5d5b010, 25, 94, f5d5b010, 0) + 314
    f9c15af4 ???????? (f19ce4d0, b6, 8, f9c10730, f5808648, f0e7e7a0)
    f9c05a44 ???????? (a5fad0, 0, 0, f9c15270, 33f348, f0e7e848)
    f9c00118 ???????? (f0e7e938, f0e7eb40, a, f5d63540, f9c0aae0, f0e7ea50)
    fe0c7b50 __1cJJavaCallsLcall_helper6FpnJJavaValue_pnMmethodHandle_pnRJavaCallArguments_p nGThread__v_ (f0e7eb38, f0e7e9ec, f0e7ea44, a5fad0, a5fad0, 4468) + 274
    fe0dae48 __1cUjni_invoke_nonstatic6FpnHJNIEnv__pnJJavaValue_pnI_jobject_nLJNICallType_pn K_jmethodID_pnSJNI_ArgumentPusher_pnGThread__v_ (1beac4, 0, 153b90, fe40fac0, 1beab8, f0e7eb1c) + 518
    On the console I get a message
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : 11 occurred at PC=0xFF2423AC
    Function=[Unknown. Nearest: realloc+0x41C]
    Library=/usr/lib//libc.so.1
    The jre I use is
    java version "1.4.2_02"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_02-b03)
    Java HotSpot(TM) Client VM (build 1.4.2_02-b03, mixed mode)
    Could any one suggest an appropriate patch for this?
    Thanks in advance

    Now I can answer myself - firt install the 32-bit version then install the 64-bit "overlay".
    This is not explained on the download page which I find unhelpful.
    Regards,
    Tim

  • Oracle 10g won't start

    Every time when I needed to reboot the server, Oracle 10g wouldn't start itself. 10g DB should start itself automatically, shouldn't it? If so, how can I fix this problem?

    You mean oracle alert.log? if so, here's some content from last startup ---
    Fri Nov 10 14:54:30 2006
    ORACLE V10.2.0.1.0 - Production vsnsta=0
    vsnsql=14 vsnxtr=3
    Windows Server 2003 Version V5.2 Service Pack 1
    CPU : 2 - type 586, 1 Physical Cores
    Process Affinity : 0x00000000
    Memory (Avail/Total): Ph:2536M/4095M, Ph+PgF:4859M/5963M, VA:1940M/2047M
    Fri Nov 10 14:54:30 2006
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_1 parameter default value as c:\oracle\10.2.0\RDBMS
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =97
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.1.0.
    System parameters with non-default values:
    processes = 800
    sessions = 885
    sga_target = 1073741824
    control_files = P:\ORACLE\ORADATA\CONTENT2\CONTROL01.CTL, Q:\ORACLE\ORADATA\CONTENT2\CONTROL02.CTL
    db_block_size = 8192
    compatible = 10.2.0.1.0
    db_file_multiblock_read_count= 16
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    remote_login_passwordfile= EXCLUSIVE
    db_domain =
    job_queue_processes = 10
    audit_file_dest = O:\ORACLE\ADMIN\CONTENT2\ADUMP
    background_dump_dest = O:\ORACLE\ADMIN\CONTENT2\BDUMP
    user_dump_dest = O:\ORACLE\ADMIN\CONTENT2\UDUMP
    core_dump_dest = O:\ORACLE\ADMIN\CONTENT2\CDUMP
    db_name = CONTENT2
    open_cursors = 300
    optimizer_mode = choose
    pga_aggregate_target = 157286400
    MMAN started with pid=4, OS id=4060
    PSP0 started with pid=3, OS id=4024
    DBW0 started with pid=5, OS id=632
    LGWR started with pid=6, OS id=3504
    CKPT started with pid=7, OS id=552
    SMON started with pid=8, OS id=3496
    RECO started with pid=9, OS id=1436
    CJQ0 started with pid=10, OS id=3248
    MMON started with pid=11, OS id=976
    MMNL started with pid=12, OS id=2056
    PMON started with pid=2, OS id=3016
    Fri Nov 10 14:54:34 2006
    ALTER DATABASE MOUNT
    Fri Nov 10 14:54:38 2006
    Setting recovery target incarnation to 2
    Fri Nov 10 14:54:38 2006
    Successful mount of redo thread 1, with mount id 2511492522
    Fri Nov 10 14:54:38 2006
    Database mounted in Exclusive Mode
    Completed: ALTER DATABASE MOUNT
    Fri Nov 10 14:54:38 2006
    ALTER DATABASE OPEN
    Fri Nov 10 14:54:39 2006
    Beginning crash recovery of 1 threads
    parallel recovery started with 2 processes
    Fri Nov 10 14:54:39 2006
    Started redo scan
    Fri Nov 10 14:54:39 2006
    Completed redo scan
    1372 redo blocks read, 298 data blocks need recovery
    Fri Nov 10 14:54:39 2006
    Started redo application at
    Thread 1: logseq 3192, block 170969
    Fri Nov 10 14:54:39 2006
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 3192 Reading mem 0
    Mem# 0 errs 0: P:\ORACLE\ORADATA\CONTENT2\REDO02A.LOG
    Mem# 1 errs 0: Q:\ORACLE\ORADATA\CONTENT2\REDO02B.ORA
    Fri Nov 10 14:54:39 2006
    Completed redo application
    Fri Nov 10 14:54:39 2006
    Completed crash recovery at
    Thread 1: logseq 3192, block 172341, scn 1338057396
    298 data blocks read, 298 data blocks written, 1372 redo blocks read
    Fri Nov 10 14:54:39 2006
    Thread 1 advanced to log sequence 3193
    Thread 1 opened at log sequence 3193
    Current log# 3 seq# 3193 mem# 0: P:\ORACLE\ORADATA\CONTENT2\REDO03A.LOG
    Current log# 3 seq# 3193 mem# 1: Q:\ORACLE\ORADATA\CONTENT2\REDO03B.ORA
    Successful open of redo thread 1
    Fri Nov 10 14:54:40 2006
    MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
    Fri Nov 10 14:54:40 2006
    SMON: enabling cache recovery
    Fri Nov 10 14:54:41 2006
    Successfully onlined Undo Tablespace 1.
    Fri Nov 10 14:54:41 2006
    SMON: enabling tx recovery
    Fri Nov 10 14:54:41 2006
    Database Characterset is WE8MSWIN1252
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    QMNC started with pid=16, OS id=3948
    Fri Nov 10 14:54:44 2006
    Completed: ALTER DATABASE OPEN

  • Apache Tomcat goes down on starting Java application, Oracle error

    Hello all
    I am running a Java application on Apache Tomcat 5.5. I use Oracle 10g Express Edition as the back-end for my application. I deploy my application using theTomcat manager and it works fine.
    However, when I try to access the home page of the application, my Tomcat server goes down. The stdout logs of Apache Tomcat display the following message:
    Exception message: java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1
    ORA-12705: Cannot access NLS data files or invalid environment specified.
    What could the possible reasons be for this to happen? And how can I workaround or fix this?
    Thanks
    Swetha

    This looks like a problem that XE has with some recently altered locales, i.e. Russian. You can work around the problem by making sure that the Java locale (Locale.setDefault()) is supported by XE before the JDBC connect call. For example, use Locale.setDefault( Locale.US ). After connect, you may explicitly set session NLS parameters using ALTER SESSION. You can also restore the Java locale.
    -- Sergiusz

  • 10G agent and  Database Instance is down

    Im install oracle 10G on oracle enterprice linux 4. machine is P4 512 MB ram 3.GZ desktop one. oracle is working fine. but little slow. it is ok.
    But few minuts after opening the database, enterprice manager cosole display that agent and Database Instance is down.
    Display the following message
    ""Details The instance has been terminated by a database process because of a fatal internal condition, or a critical background process was killed by the user.""
    But oracle is working. select and other this working fine.
    Please help me to overcome the problem.
    Regrds
    upul Indika

    Define a fixed IP address for your server. If problem persists then you can use emca-Enterprise Manager Configuration assistance to delete and reconfigure the console.
    emca -deconfig dbcontrol db
    emca -config dbcontrol db

  • Oracle 10g - Vista Business - Agent unreachable in EM

    Hi,
    I can't seem to get the agent to be seen from EM.
    Here is my config:
    Windows Vista Business - Oracle 10g R2
    I have done the following:
    - secured the dbconsole
    - made sure that the OS user has admin rights & can log on as a batch job
    - env. vars ORACLE_SID and EMHOSTNAME are set
    The agent log shows no errors (start and shutdown successfully).
    The emoms.log shows:
    2009-11-24 09:32:54,545 [HttpRequestHandler-15512561] ERROR eml.OMSHandshake processFailure.619 -
    OMSHandshake failed.(AGENT URL = https://DBServer:3938/emd/main)(ERROR = KEY_MISMATCH)
    I have seen some threads where people advise to unsecure the dbconsole but I don't know how to do it.
    Can anyone help ? I have done many changes, but nothing seems to make it work and I am a bit lost.
    Thanks !
    @lex
    emctl upload does not work:
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.1.0
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    EMD upload error: uploadXMLFiles skipped :: OMS version not checked yet..
    EMD.properties (extract):
    perlBin=D:\oracle\product\10.2.0\db_2\perl\5.8.3\bin\MSWin32-x86-multi-thread
    scriptsDir=D:\oracle\product\10.2.0\db_2/sysman/admin/scripts
    emdRoot=D:\oracle\product\10.2.0\db_2
    agentStateDir=D:/oracle/product/10.2.0/db_2/DBServer_MyDB
    chronosRoot=D:/oracle/product/10.2.0/db_2/DBServer_MyDB/sysman/emd/chronos
    REPOSITORY_URL=https://DBServer:1158/em/upload/
    agentSeed=-908248752
    agentVersion=10.1.0.4.0
    UploadInterval=5
    UploadFailBackoffDBServert= 20
    UploadTimeout=1800
    UploadFileSize=2048
    EMD_URL=https://DBServer:3938/emd/main
    AgentListenOnAllNICs=TRUE
    NormalThreadStackSize=0
    ouiLoc=D:\oracle\product\10.2.0\db_2/oui
    TrcFileMaxSize=4096
    TrcFileMaxRolls=4
    dynamicPropsComputeTimeout=60
    EMAGENT_PERL_TRACE_LEVEL=ERROR
    tracelevel.fetchlets.emSDK=WARN
    httpTimeoutPrimaryHeader=30
    httpTimeoutSecondaryHeaders=30
    httpTimeoutBody=60
    omsRecvDir=D:\oracle\product\10.2.0\db_2\DBServer_MyDB\sysman\recv
    agentTZRegion=Europe/Brussels
    Emoms.properties:
    #Mon Nov 23 16:04:55 GMT 2009
    oracle.sysman.emSDK.svlt.ConsoleServerName=DBServer_Management_Service
    oracle.sysman.eml.mntr.emdRepPwd=81dbf93fefe9e409
    emdrep.ping.pingCommand=ping <hostname>
    oracle.sysman.eml.mntr.emdRepPort=1521
    oracle.sysman.eml.mntr.emdRepDBName=MyDB
    oracle.sysman.eml.mntr.emdRepPwdSeed=6610522536789545842
    oracle.sysman.emSDK.svlt.ConsoleMode=standalone
    oracle.sysman.emRep.dbConn.statementCacheSize=30
    oracle.sysman.db.isqlplusUrl=http\://DBServer\:5560/isqlplus/dynamic
    oracle.sysman.emSDK.svlt.ConsoleServerPort=1158
    oracle.sysman.eml.mntr.emdRepRAC=FALSE
    oracle.sysman.emSDK.emd.rt.useMonitoringCred=true
    oracle.sysman.eml.mntr.emdRepPwdEncrypted=TRUE
    oracle.sysman.db.isqlplusWebDBAUrl=http\://DBServer\:5560/isqlplus/dba/dynamic
    oracle.sysman.emSDK.svlt.ConsoleServerHost=DBServer
    oracle.sysman.eml.mntr.emdRepDBID=2250547128
    oracle.sysman.emSDK.svlt.ConsoleServerHTTPSPort=1820
    oracle.sysman.eml.mntr.emdRepSID=MyDB
    oracle.sysman.eml.mntr.emdRepServer=DBServer
    oracle.sysman.emSDK.sec.ReuseLogonPassword=true
    oracle.sysman.eml.mntr.emdReDBServeronnectDescriptor=(DESCRIPTION\=(ADDRESS_LIST\=(ADDRESS\=(PROTOCOL\=TCP)(HOST\=DBServer)(PORT\=1521)))(CONNECT_DATA\=(SERVICE_NAME\=MyDB)))
    oracle.sysman.eml.mntr.emdRepUser=SYSMAN
    oracle.sysman.db.adm.conn.statementCacheSize=2
    oracle.sysman.db.perf.conn.statementCacheSize=30
    I ran emctl status agent:
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.1.0
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    Agent Version : 10.1.0.4.1
    OMS Version : 10.1.0.4.0
    Protocol Version : 10.1.0.2.0
    Agent Home : D:\oracle\product\10.2.0\db_2\DBServer_MyDB
    Agent binaries : D:\oracle\product\10.2.0\db_2
    Agent Process ID : 12148
    Agent Process ID : 12148
    Agent URL : https://DBServer:3938/emd/main
    Started at : 2009-11-23 17:26:21
    Started by user : SYSTEM
    Last Reload : 2009-11-23 17:26:21
    Last successful upload : (none)
    Last attempted upload : (none)
    Total Megabytes of XML files uploaded so far : 0.00
    Number of XML files pending upload : 528
    Size of XML files pending upload(MB) : 2.98
    Available disk space on upload filesystem : 73.83%
    Agent is Running and Ready
    I ran emctl status dbconsole:
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.1.0
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    https://DBServer:1158/em/console/aboutApplication
    Oracle Enterprise Manager 10g is running.
    Logs are generated in directory D:\oracle\product\10.2.0\db_2/DBServer_MyDB/sysman/log
    ----------------------------

    Hi,
    PLease can anyone help me ?
    Thanks,
    @lex

Maybe you are looking for

  • How to format and reinstall 10.6.8 without disk

    How to re-format my HD and reinstall 10.6.8 without a disk?

  • FIREFOX OPEN ONLY HALF ON MY LAPTOP SCREEN REST IS BLANKC

    firefox with yahoo home page opens only half way on the laptop screen. That is first half of the laptop screen is blank while the yahoo window will start on 2nd half horizontally. all web sites will also be displayed on half of the screen (2nd half).

  • Selection of line item

    hi, Hi, i want to select the lines in table control of transaction va02 and then want to delete that line through a program for selection, but how can i know that this line is selected and then proceed further. regards m.phanindra

  • Get id of an action

    Hello all, I want to end an action on the click of a webdynpro event. I checked the help portal and found out that i can use the following code to achieve the objective. IGPActionCompletionData completionData = rtManager.createActionCompletionData(pr

  • How is 2.0.2 holding up?

    Is it as much a flump as 2.0.1 was? Any serious bugs that would make you say don't go near it with a ten foot pole? I never upgraded to 2.0.1 because of all the crashing and restoring issues I was reading about. However, I'm hearing less problems abo