Database instance shutdown suddenly

I have db 10G on windows xp pro. after I start the instance (after approximately 10 mins. ) it stopped suddenly without any errors
what could the possible error
I looked in alert.log and I found this error
ORA-00472: PMON process terminated with error
but no explanation
please could u provide me with a solution
Thanks
Mohamed

Hi
this is part of alert.log file
=======================================
Tue Jul 28 02:21:22 2009
Errors in file c:\oracle\product\10.2.0\admin\orcl\bdump\orcl_mman_2720.trc:
ORA-00472: PMON process terminated with error
Tue Jul 28 02:21:24 2009
Errors in file c:\oracle\product\10.2.0\admin\orcl\bdump\orcl_ckpt_3368.trc:
ORA-00472: PMON process terminated with error
Tue Jul 28 02:21:53 2009
Errors in file c:\oracle\product\10.2.0\admin\orcl\bdump\orcl_q001_2608.trc:
ORA-00472: PMON process terminated with error
Tue Jul 28 02:22:03 2009
Errors in file c:\oracle\product\10.2.0\admin\orcl\bdump\orcl_reco_408.trc:
ORA-00472: PMON process terminated with error
Tue Jul 28 02:22:03 2009
Errors in file c:\oracle\product\10.2.0\admin\orcl\bdump\orcl_smon_3592.trc:
ORA-00472: PMON process terminated with error
Tue Jul 28 02:22:08 2009
Instance terminated by PMON, pid = 516
Tue Jul 28 02:51:37 2009
Starting ORACLE instance (normal)
LICENSE_MAX_SESSION = 0
LICENSE_SESSIONS_WARNING = 0
Picked latch-free SCN scheme 2
========================
Thanks

Similar Messages

  • Database instance shutdown

    Hi all,
    I got the following message on weekend at this specific time where my database instance was shutdown by itself. I already check it out and there was no other services which is running on the specific time but yet it was shutdown with unknow reason... Anyone of you have this experience before ? The log shown the following message :-
    Mon Jun 26 00:57:01 2006
    KCF: write/open error block=0x59 online=1
    file=2 E:\ORADATA\ORCL\UNDOTBS01.DBF
    error=27072 txt: 'OSD-04008: WriteFile() failure, unable to write to file
    O/S-Error: (OS 33) The process cannot access the file because another process has locked a portion of the file.'
    Mon Jun 26 00:57:01 2006
    Errors in file e:\admin\orcl\bdump\orcl_dbw0_3228.trc:
    ORA-01242: data file suffered media failure: database in NOARCHIVELOG mode
    ORA-01114: IO error writing block to file 2 (block # 89)
    ORA-01110: data file 2: 'E:\ORADATA\ORCL\UNDOTBS01.DBF'
    ORA-27072: File I/O error
    OSD-04008: WriteFile() failure, unable to write to file
    O/S-Error: (OS 33) The process cannot access the file because another process has locked a portion of the file.
    DBW0: terminating instance due to error 1242
    Rgds
    Lim

    Errors in file e:\admin\orcl\bdump\orcl_dbw0_3228.trc:
    generate output file from "tkprof". and check it.
    ORA-01242: data file suffered media failure: database in NOARCHIVELOG mode
    Cause: The database is in NOARCHIVELOG mode and a database file was detected as inaccessible due to media failure.
    Action: Restore accessibility to the file mentioned in the error stack and restart the instance.
    it seems to ur undo datafile is not accessible so check u have permission. and if u have bkp of undo file then replace it restart ur database.
    or create new undo tbs and replace old one.
    hope this help

  • Oracle database instance shutdown without logging in log file

    OS - Windows 2003 R2
    Oracle - 10.2.0.1
    Platform - HP DL380
    아무런 오류없이 오라클 자체가 내려가버립니다.
    Alert Log에 아무런 메세지도 없습니다. 특별한 작업도 하지 않는 상태에서도
    내려가 버립니다. 한달에 두번이상 내려가버리고 Windows Service에서는
    시작되어 있다고 나오나 정작 오라클은 내려가 있습니다.
    (수동으로 Startup을 해줘야 올라오는 상태)
    이런 경험이 있으신 분은 도움 부탁드립니다.

    Errors in file e:\admin\orcl\bdump\orcl_dbw0_3228.trc:
    generate output file from "tkprof". and check it.
    ORA-01242: data file suffered media failure: database in NOARCHIVELOG mode
    Cause: The database is in NOARCHIVELOG mode and a database file was detected as inaccessible due to media failure.
    Action: Restore accessibility to the file mentioned in the error stack and restart the instance.
    it seems to ur undo datafile is not accessible so check u have permission. and if u have bkp of undo file then replace it restart ur database.
    or create new undo tbs and replace old one.
    hope this help

  • Error in executing triggers on instance shutdown

    Hi,
    I got the error message in the trace file and trigger was not executed
    Error in executing triggers on instance shutdown
    *** 2010-08-31 19:49:59.573
    ksedmp: internal or fatal error
    ORA-00604: error occurred at recursive SQL level 1
    ORA-04052: error occurred when looking up remote object Q758388.DB_STATUS@TEST
    ORA-00604: error occurred at recursive SQL level 2
    ORA-02068: following severe error from TEST
    ORA-03113: end-of-file on communication channelThanks
    Prakash
    Edited by: user9356823 on Aug 31, 2010 7:04 PM

    HI friend,
    by mistake i posted that and these are the triggers i used both startup and shutdown:
    CREATE OR REPLACE TRIGGER trg_startup
    after startup  ON DATABASE
    DECLARE
    vdb_name        VARCHAR2 (100);
    vserver_name    VARCHAR2 (100);
    v_count        Number; 
    BEGIN
    SELECT instance_name, host_name
    INTO vdb_name, vserver_name
    FROM v$instance;
    SELECT COUNT (1) into v_count from db_status@test
    WHERE db_name = vdb_name AND server_name = vserver_name;
    IF v_count >= 1
    THEN
    UPDATE db_status@test
    SET db_status = '0',
    MECHANISM='T',
    status_ts = SYSDATE
    WHERE db_name = vdb_name AND server_name = vserver_name;
    ELSE
    INSERT INTO db_status@test
    (server_name, db_name, db_status, MECHANISM,status_ts)
    VALUES (vserver_name, vdb_name, '0', 'T',SYSDATE);
    END IF;
    END;
    CREATE OR REPLACE TRIGGER trg_shutdown
    BEFORE SHUTDOWN  ON DATABASE
    DECLARE
    vdb_name        VARCHAR2 (100);
    vserver_name    VARCHAR2 (100);
    v_count        Number; 
    BEGIN
    SELECT instance_name, host_name
    INTO vdb_name, vserver_name
    FROM v$instance;
    SELECT COUNT (1) into v_count from db_status@test
    WHERE db_name = vdb_name AND server_name = vserver_name;
    IF v_count >= 1
    THEN
    UPDATE db_status@test
    SET db_status = '1',
    MECHANISM='T',
    status_ts = SYSDATE
    WHERE db_name = vdb_name AND server_name = vserver_name;
    ELSE
    INSERT INTO db_status@test
    (server_name, db_name, db_status, MECHANISM,status_ts)
    VALUES (vserver_name, vdb_name, '1', 'T',SYSDATE);
    END IF;
    END;
    Things were different between ones that worked & 2 with error.appreciated to elobrate this
    Thanks
    Prakash

  • Problem in creating database instance in linux through webtool

    Dear sir
    i got sql erroe ,when i mam trying to creat database instance.i am decrbing steps here from point of start.
    Initially i invke two command
    1:/opt/sdb/programs/bin/x_server
    2:/etc/rc.d/init.d/maxdbweb start
    then i invoke web application as:http://localhost:9999/webdbm
    then i m trying to create DATABASE Instance
    1:specify Database/servaername
         Name     : Test12
         Server   : localhost
         Username : dbm
         Password : dbm
    2:the fill the authetication form as(dbm,dbm,dbm),(dba,dba,dba)
    3:use default and specify data and log space
    4:Then i click "Install" button
    then i got error: "-24988 sql error:"
    plz tell me where i m wrong and tell me any another component ,should i start.

    hi Roland
    the output ofthese command is given
    1. Command: dbmcli db_enum
    <b>OUTPUT</b>
    OK
    TEST12  /opt/sdb/7500   7.5.0.23        fast    offline
    TEST12  /opt/sdb/7500   7.5.0.23        quick   offline
    TEST12  /opt/sdb/7500   7.5.0.23        slow    offline
    2.Command: dbcmli -d Test12 -u dbm,dbm db_state
    <b>OUTPUT</b>
    OK
    State
    OFFLINE
    3.Command: dbcmli -d Test12 -u dbm,dbm db_online
    <b>OUTPUT</b>
    ERR
    -24988,ERR_SQL: sql error
    -8888,connection broken server state 4
    <b>Last Some lines of file :Knldiang.err</b>
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE  
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE   -
    > Symbolic Stack Back Trace <----
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE      0: 0x0877601a eo670_CTraceStack +0x001e
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9cd20] (0x0,0x0,0x1,0x8776008)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE      1: 0x0879448d vabort +0x0039
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9cd50] (0x8add904,0x89282a0,0x89282c2,0x40b9cd78)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE      2: 0x08701813 RTE_Crash__FRC20SAPDBErr_MessageList +0x010f
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9cd80] (0x40100001,0x2e5,0x40b9cdc0,0x8701796)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE      3: 0x0856eec5 ReadRestartPage__13IOMan_ManageriR18Kernel_RestartPage +0x0261
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9cdc0] (0x40b9d0ec,0x40b9d130,0x0,0x1)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE      4: 0x08576e89 bd999ReadRestartPage +0x0075
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d100] (0x408ad608,0x25,0x40b9d130,0x8576e21)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE      5: 0x083cbc16 kb57RestoreRestartRecord +0x003e
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d140] (0x25,0x8bb5bac,0x40b9d180,0x83cbc06)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE      6: 0x08570f5e OpenAllDataVolumes__13IOMan_Manageri +0x003a
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d180] (0x25,0x25,0x0,0x8570f32)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE      7: 0x08576b39 bd999AttachAllDataVolumes +0x0029
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d1b0] (0x408ad608,0x25,0x1,0x8576b1d)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE      8: 0x08408e8b b01restart_filesystem +0x0057
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d1e0] (0x25,0x40ba5976,0x40b9d220,0x8408e74)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE      9: 0x086bd8b5 RestartFilesystem__21Kernel_AdministrationR18tgg00_TransContextb +0x0025
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d220] (0x40ba5954,0x1,0x0,0x86bd89e)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     10: 0x086a86fc RestartPrepare__21Kernel_AdministrationR18tgg00_TransContextQ221Kernel_Administration11RestartKind
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE                    R20SAPDBErr_MessageList +0x0038
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d250] (0x8b473e0,0x40ba5954,0x40b90001,0x86a86e0)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     11: 0x086a8e59 RestartIntern__21Kernel_AdministrationR18tgg00_TransContextQ221Kernel_Administration11RestartKindG
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE                    t19SAPDB_Invalidatable2ZUiUi0T3G16Log_IOSequenceNo +0x0061
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d3f0] (0x8b473e0,0x40ba5954,0x0,0x40b9d50c)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     12: 0x086a85ab Restart__21Kernel_AdministrationR18tgg00_TransContextGt19SAPDB_Invalidatable2ZUiUi0T2G16Log_IOSequ
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE                    enceNo +0x0197
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d520] (0x8b473e0,0x40ba5954,0x0,0x0)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     13: 0x0853391a gg999Restart +0x004e
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d580] (0x8b473e0,0x40ba5954,0x0,0x0)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     14: 0x081fd618 ak36restart +0x00e0
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d5d0] (0x40ba5954,0x40b9f6f8,0x40b9f700,0xffffffff)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     15: 0x081fe9cc a36_call_semantic +0x05fc
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9f740] (0x40ba499c,0x40ba3774,0x0,0x81fe3e1)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     16: 0x081efb0f ak35call_semantik +0x0503
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba39b0] (0x40ba499c,0x40ba3a08,0x40ba39ef,0x40ba3a08)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     17: 0x081ef137 a35_asql_statement +0x07d3
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba3a30] (0x40ba499c,0x176,0x0,0x81ee972)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     18: 0x083146bc ak92not_only_execute +0x0858
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba3ab0] (0x40ba499c,0x40ba52d4,0x0,0x8313e75)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     19: 0x08315516 ak92analyze_messagetype +0x07ce
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba3c70] (0x40ba499c,0x40ba3cc8,0x40ba3ccc,0x40ba3dd4)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     20: 0x083161ed a92_mode_analyzer +0x01cd
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba3de0] (0x40ba499c,0x0,0x0,0x0)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     21: 0x0831aa85 ak93one_command +0x0779
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba3ee0] (0x40ba499c,0x0,0x0,0x831a6b4)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     22: 0x0831967d a93_user_commands +0x047d
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba4020] (0x40ba499c,0x1,0x40ba4088,0x1)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     23: 0x0813d9ee ak91run_sql_process +0x00ee
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba40c0] (0x40ba499c,0x40ba40fe,0x40ba40ff,0x813d911)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     24: 0x0813d6c1 ak91run_non_sql_process +0x00bd
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba4510] (0x40ba499c,0x0,0x1,0x813d620)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     25: 0x0813d760 ak91run_user_process +0x0064
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba4550] (0x40ba499c,0x816d2c8,0x0,0x813d70d)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     26: 0x0813dac5 a91mainprogam_with_allocator +0x0041
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba5e20] (0x40ba5f14,0x1,0x400e17f0,0x813da91)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     27: 0x0852e6a9 gg941CreateAllocatorAndCallMainprog +0x01e5
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba5e50] (0x40ba5f14,0x2,0xffffffff,0x25)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     28: 0x0813da68 a91mainprogram +0x003c
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba5ee0] (0x40ba5f14,0x0,0x0,0x813da3c)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     29: 0x087b7b82 en88_CallKernelTaskMain__FP9TASK_TYPE +0x016e
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba5f80] (0x8add904,0x400d4da0,0x87b8080,0x87b8080)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     30: 0x087b80ae en88_CallCoroutineKernelTaskMain +0x002e
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba5fb0] (0x50016be0,0x8b93d80,0x0,0x0)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE   -
    > End of Stack Back Trace <----
    2005-03-04 16:07:50  4138 ERR 11196 DBCRASH  vabort:Emergency Shutdown, Task: 37

  • How to create a new database instance from an existing one?

    Hi, I basically want to create a snapshot of a production
    instance (version 8.1.7) for querying purposes. Would anyone
    tell me the steps involved? What I did as follows:
    1. Copy all data files to a new location
    2. Modify init.ora accordingly. I believe there is no separate
    control file for this version.
    But when I startup the instance, got this error:
    ORA-01103: database name 'TRITON' in controlfile is not 'HERCULE'
    What is missing? Do these data files contains links to the
    previous instance name?
    Thanks for any help.

    Hi All,
    I need some help in recreating new database instance.
    Here are the steps I have done so far:
    1. Created a database with name 'LASTDB' using DBCA
    2. Connected to RMAN.
    3. RMAN>SET DBID=******; (of the source database)
    4. Connect to target. RMAN>connect target SYS/*****;
    5. Executed controlfile restore on RMAN.
         RMAN>Run{
    Allocate channel D1 Type DISK;
              Set controlfile autobackup format for device type DISK to
    ‘\\<ip_address>\Backup\Prod\%F’;
    Restore controlfile from autobackup;
    6. RMAN> ALTER DATABASE MOUNT;
    Now got an error saying ORA-01103: database name ‘PRODDB' in control file is not ‘LASTDB’
    I tried using NID to change the database name but it's throwing an error that database is not mounted.
    I have browsed a lot and found that I need to recreate a control file of the production database using ALTER DATABASE BACKUP CONTROLFILE TO TRACE and should edit the trace file. But it also says to shutdown the source database which is production database and I cannot try that.
    Also I have tried adding a line to init.ora like lock_space_name = LASTDB. Also tried replacing everything from LASTDB to PRODDB but that didn't work either.
    I have been trying to find a solution to this. Please bear with me as I'm a beginner and please let me know how I can fix the error.
    I am running oracle 10.1.0.2.0 enterprise edition on windows 2000.
    Thanks for your patience,
    KG

  • Database got shutdown reason unknown

    Hi,
    My database got shutdown. We are unable to know the reason behind this.
    Its 10g database on AIX 5.3 server.
    Below is the entry from alert log.
    Thread 1 advanced to log sequence 264605 (LGWR switch)
    Current log# 5 seq# 264605 mem# 0: /oracle/redolog/neonprd/redo05a.log
    Current log# 5 seq# 264605 mem# 1: /oracle/redolog02/neonprd/redo05b.log
    Mon Sep 10 14:04:01 2012
    Immediate Kill Session#: 1870, Serial#: 17917
    Immediate Kill Session: sess: 7000005835afb08 OS pid: 5845450
    Mon Sep 10 14:04:01 2012
    Process OS id : 5845450 alive after kill
    Errors in file
    Mon Sep 10 14:04:21 2012
    Immediate Kill Session#: 1998, Serial#: 27337
    Immediate Kill Session: sess: 7000005875c6cc0 OS pid: 6263044
    Mon Sep 10 14:04:21 2012
    Process OS id : 6263044 alive after kill
    Errors in file
    Mon Sep 10 14:04:32 2012
    alter database commit to switchover to primary
    Mon Sep 10 14:04:32 2012
    ALTER DATABASE SWITCHOVER TO PRIMARY (neonprd)
    Mon Sep 10 14:04:32 2012
    ORA-16109 signalled during: alter database commit to switchover to primary...
    Mon Sep 10 14:04:32 2012
    ALTER SYSTEM SET log_archive_dest_state_2='enable' SCOPE=BOTH;
    Starting background process EMN0
    Shutting down instance: further logons disabled
    EMN0 started with pid=159, OS id=5444040
    Mon Sep 10 14:04:37 2012
    Completed checkpoint up to RBA [0x4099d.2.10], SCN: 43879290652
    Mon Sep 10 14:04:37 2012
    Stopping background process CJQ0
    Mon Sep 10 14:04:37 2012
    Stopping background process QMNC
    Mon Sep 10 14:04:38 2012
    Stopping background process MMNL
    Mon Sep 10 14:04:39 2012
    Stopping background process MMON
    Mon Sep 10 14:04:40 2012
    Shutting down instance (immediate)
    License high water mark = 399
    Mon Sep 10 14:04:40 2012
    Stopping Job queue slave processes, flags = 7
    Mon Sep 10 14:04:40 2012
    Process OS id : 7172580 alive after kill
    Errors in file /oracle/admin/neonprd/udump/neonprd_ora_6672700.trc
    Mon Sep 10 14:04:44 2012
    Waiting for Job queue slaves to complete
    Mon Sep 10 14:04:44 2012
    Job queue slave processes stopped
    Mon Sep 10 14:05:49 2012
    Starting ORACLE instance (normal)
    Mon Sep 10 14:06:14 2012
    Starting ORACLE instance (normal)
    Mon Sep 10 14:06:21 2012
    Starting ORACLE instance (normal)
    Mon Sep 10 14:07:02 2012
    Starting ORACLE instance (normal)
    Mon Sep 10 14:07:46 2012
    Starting ORACLE instance (normal)
    Mon Sep 10 14:08:46 2012
    Starting ORACLE instance (normal)
    Mon Sep 10 14:09:23 2012
    Starting ORACLE instance (normal)
    Mon Sep 10 14:10:01 2012
    Starting ORACLE instance (normal)
    Mon Sep 10 14:10:07 2012
    Incremental checkpoint up to RBA [0x4099d.62afd.0], current log tail at RBA [0x4099d.62b0c.0]
    Mon Sep 10 14:15:27 2012
    Shutting down instance
    License high water mark = 399
    Instance terminated by USER, pid = 7000574
    Mon Sep 10 14:15:49 2012
    Starting ORACLE instance (normal)
    sskgpgetexecname failed to get name
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 3
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =242
    LICENSE_MAX_USERS = 0
    SYS auditing is enabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.4.0.
    System parameters with non-default values:
    processes = 2000
    sessions = 2205
    sga_max_size = 23622320128
    __shared_pool_size = 3674210304
    shared_pool_size = 3674210304
    __large_pool_size = 16777216
    large_pool_size = 16777216
    __java_pool_size = 117440512
    java_pool_size = 50331648
    __streams_pool_size = 16777216
    streams_pool_size = 16777216
    nls_date_format = MM-DD-YYYY HH24:MI:SS
    nls_length_semantics = BYTE
    filesystemio_options = setall
    resource_manager_plan =
    sga_target = 22548578304
    control_files = /oracle/data/neonprd/control01.ctl, /oracle/data/neonprd/control02.ctl, /oracle/data/neonprd/control03.ctl
    db_block_size = 8192
    __db_cache_size = 18656264192
    db_cache_size = 8002732032
    db_writer_processes = 16
    compatible = 10.2.0.3.0
    log_archive_dest_1 = location=use_db_recovery_file_dest
    log_archive_dest_2 = service=standby reopen=120 max_connections=3
    log_archive_dest_state_1 = ENABLE
    log_archive_dest_state_2 = enable
    log_archive_max_processes= 10
    log_archive_min_succeed_dest= 1
    standby_archive_dest =
    log_archive_trace = 0
    fal_client = PRIMARY
    fal_server = STANDBY
    log_buffer = 63009792
    archive_lag_target = 0
    db_files = 200
    db_file_multiblock_read_count= 16
    db_recovery_file_dest = /oracle/flash_recovery
    db_recovery_file_dest_size= 1181116006400
    standby_file_management = AUTO
    fast_start_mttr_target = 300
    log_checkpoints_to_alert = TRUE
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    undo_retention = 3600
    remote_login_passwordfile= EXCLUSIVE
    audit_sys_operations = TRUE
    db_domain = in.startv.com
    service_names = neonprd.in.startv.com
    shared_servers = 0
    job_queue_processes = 10
    cursor_sharing = EXACT
    parallel_max_servers = 0
    background_dump_dest = /oracle/admin/neonprd/bdump
    user_dump_dest = /oracle/admin/neonprd/udump
    core_dump_dest = /oracle/admin/neonprd/cdump
    audit_file_dest = /oracle/admin/neonprd/adump
    audit_trail = NONE
    db_name = neonprd
    open_cursors = 1500
    parallel_adaptive_multi_user= TRUE
    optimizer_index_cost_adj = 25
    optimizer_index_caching = 90
    query_rewrite_enabled = TRUE
    pga_aggregate_target = 6442450944
    skip_unusable_indexes = TRUE
    allowlevel_without_connect_by= TRUE
    aq_tm_processes = 1
    awrflush_threshold_metrics= TRUE
    PMON started with pid=2, OS id=1204390
    PSP0 started with pid=3, OS id=966732
    MMAN started with pid=4, OS id=1003604
    DBW0 started with pid=5, OS id=946294
    DBW1 started with pid=6, OS id=909508
    DBW2 started with pid=7, OS id=7000332
    DBW3 started with pid=8, OS id=897104
    DBW4 started with pid=9, OS id=7233880
    DBW5 started with pid=10, OS id=5828952
    DBW6 started with pid=11, OS id=7213314
    DBW7 started with pid=12, OS id=7139790
    DBW8 started with pid=13, OS id=6844750
    DBW9 started with pid=14, OS id=6648146
    DBWa started with pid=15, OS id=851976
    DBWb started with pid=16, OS id=872484
    DBWc started with pid=17, OS id=815254
    DBWd started with pid=18, OS id=790652
    DBWe started with pid=19, OS id=774152
    DBWf started with pid=20, OS id=745636
    LGWR started with pid=21, OS id=573668
    CKPT started with pid=22, OS id=1171514
    SMON started with pid=23, OS id=553024
    RECO started with pid=24, OS id=1159352
    CJQ0 started with pid=25, OS id=6639948
    MMON started with pid=26, OS id=6394246
    MMNL started with pid=27, OS id=1028254
    Mon Sep 10 14:15:51 2012
    ALTER DATABASE MOUNT
    Mon Sep 10 14:15:55 2012
    Setting recovery target incarnation to 1
    Mon Sep 10 14:15:55 2012
    Successful mount of redo thread 1, with mount id 863646487
    Mon Sep 10 14:15:55 2012
    Database mounted in Exclusive Mode
    Completed: ALTER DATABASE MOUNT
    Mon Sep 10 14:15:55 2012
    ALTER DATABASE OPEN
    Mon Sep 10 14:15:56 2012
    Beginning crash recovery of 1 threads
    parallel recovery setup failed: using serial mode
    Mon Sep 10 14:15:56 2012
    Started redo scan
    Mon Sep 10 14:15:56 2012
    Completed redo scan
    0 redo blocks read, 0 data blocks need recovery
    Mon Sep 10 14:15:56 2012
    Started redo application at
    Thread 1: logseq 264605, block 404238, scn 43879394962
    Mon Sep 10 14:15:56 2012
    Recovery of Online Redo Log: Thread 1 Group 5 Seq 264605 Reading mem 0
    Mem# 0: /oracle/redolog/neonprd/redo05a.log
    Mem# 1: /oracle/redolog02/neonprd/redo05b.log
    Mon Sep 10 14:15:56 2012
    Completed redo application
    Mon Sep 10 14:15:56 2012
    Completed crash recovery at
    Thread 1: logseq 264605, block 404238, scn 43879414963
    0 data blocks read, 0 data blocks written, 0 redo blocks read
    Mon Sep 10 14:15:56 2012
    LGWR: STARTING ARCH PROCESSES
    ARC0 started with pid=29, OS id=1200370
    ARC1 started with pid=30, OS id=6341016
    ARC2 started with pid=31, OS id=6271472
    ARC3 started with pid=32, OS id=1130568
    ARC4 started with pid=33, OS id=6234458
    ARC5 started with pid=34, OS id=1179696
    ARC6 started with pid=35, OS id=1106070
    ARC7 started with pid=36, OS id=5890556
    ARC8 started with pid=37, OS id=1089544
    Mon Sep 10 14:15:57 2012
    ARC0: Archival started
    ARC1: Archival started
    ARC2: Archival started
    ARC3: Archival started
    ARC4: Archival started
    ARC5: Archival started
    ARC6: Archival started
    ARC7: Archival started
    ARC9 started with pid=38, OS id=1036378
    Mon Sep 10 14:15:57 2012
    ARC8: Archival started
    ARC9: Archival started
    LGWR: STARTING ARCH PROCESSES COMPLETE
    Mon Sep 10 14:15:57 2012
    Thread 1 advanced to log sequence 264606 (thread open)
    Thread 1 opened at log sequence 264606
    Current log# 6 seq# 264606 mem# 0: /oracle/redolog/neonprd/redo06a.log
    Current log# 6 seq# 264606 mem# 1: /oracle/redolog02/neonprd/redo06b.log
    Successful open of redo thread 1
    Mon Sep 10 14:15:57 2012
    ARC0: Becoming the 'no FAL' ARCH
    ARC0: Becoming the 'no SRL' ARCH
    Mon Sep 10 14:15:57 2012
    ARC3: Becoming the heartbeat ARCH
    Mon Sep 10 14:15:57 2012
    SMON: enabling cache recovery
    Mon Sep 10 14:15:57 2012
    db_recovery_file_dest_size of 1126400 MB is 4.99% 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.
    Mon Sep 10 14:15:58 2012
    Successfully onlined Undo Tablespace 1.
    Mon Sep 10 14:15:58 2012
    SMON: enabling tx recovery
    Mon Sep 10 14:15:58 2012
    Database Characterset is WE8MSWIN1252
    Opening with internal Resource Manager plan
    where NUMA PG = 1, CPUs = 28
    replication_dependency_tracking turned off (no async multimaster replication found)
    Mon Sep 10 14:16:00 2012
    Incremental checkpoint up to RBA [0x4099e.3.0], current log tail at RBA [0x4099e.a3.0]
    Mon Sep 10 14:16:00 2012
    Starting background process QMNC
    QMNC started with pid=40, OS id=5837066
    Mon Sep 10 14:16:02 2012
    Completed: ALTER DATABASE OPEN
    Mon Sep 10 14:18:57 2012
    Immediate Kill Session#: 2016, Serial#: 77
    Immediate Kill Session: sess: 70000058f5d0698 OS pid: 6582596
    Mon Sep 10 14:18:57 2012
    Process OS id : 6582596 alive after kill
    Errors in file
    Mon Sep 10 14:24:30 2012
    Beginning log switch checkpoint up to RBA [0x4099f.2.10], SCN: 43879588218
    Mon Sep 10 14:24:30 2012
    Thread 1 advanced to log sequence 264607 (LGWR switch)
    Current log# 1 seq# 264607 mem# 0: /oracle/redolog/neonprd/redo01a.log
    Current log# 1 seq# 264607 mem# 1: /oracle/redolog02/neonprd/redo01b.log
    Mon Sep 10 14:29:33 2012
    Completed checkpoint up to RBA [0x4099f.2.10], SCN: 43879588218
    Mon Sep 10 14:32:01 2012
    Beginning log switch checkpoint up to RBA [0x409a0.2.10], SCN: 43879769830
    Mon Sep 10 14:32:01 2012
    Thread 1 advanced to log sequence 264608 (LGWR switch)
    Current log# 2 seq# 264608 mem# 0: /oracle/redolog/neonprd/redo02a.log
    Current log# 2 seq# 264608 mem# 1: /oracle/redolog02/neonprd/redo02b.log

    Atiq wrote:
    How can i get the os user, db user, ip address of machine from where shutdown was issued???I can't say that I ever actually did this, but DBMS_LOGMNR might provide clues.
    The list of possible culprits is limited to those can login AS SYSDBA or SYSOPER.
    SYSDBA logins are audited for V10+ by default

  • CANNOT RECOVER DATABASE INSTANCE

    Hello,
    I have read various topics on the web on hot to startup my database with the following error:
    ORA-01033: ORACLE initialization or shutdown in progress (DBD ERROR: OCISessionBegin)
    I am trying to execute SQL code at the command prompt but keep getting the message below:
    ERROR:
    ORA-01033: ORACLE initialization or shutdown in progress
    Process ID: 0
    Session ID: 0 Serial number: 0
    How can I get past this error? I cannot startup my database instance.
    Thanks
    Larry

    Hi,
    This indicates the database is either starting up or shutting down already and so is in an inconsistent state as Lajos pointed out you will need to have a look in your alert log and see what is actually happening. This should be located in the bdump directory assuming this is the background_dump_dest for your DB if you post the tail end of the file into the forum then we can see what is happening and try to sort out what the issue actually is

  • Database Instance is down?

    Hello,
    This is my Database Instance:
    Status: Down
    Host: localhost
    Port: 1523
    SID: ORCL
    Oracle Home: C:\app\L31004\product\11.2.0\dbhome_3
    Details: There has been a user-initiatied shutdown.
    What does it mean?

    Refer this thread
    Re: ORA-01031: insufficient privileges
    ORA-01031 insuffiecient privilidges

  • How to Start Database Instance ???

    Hi All,
    I Installed 8.1.7 as well as I created 3 database. OEM console and DBA studio are working fine. But I found that 2 among 3 database were shutdown. I can logon as sysdba to the said database. But unable to start/ mount/ open the database.
    Can any one kindly help me....
    Thanks in advance
    Uma Panda

    ORA-01034 ORACLE not available
    Cause: Oracle was not started. Possible causes include the following:
    The SGA requires more space than was allocated for it.
    The operating-system variable pointing to the instance is improperly defined.
    Action: Refer to accompanying messages for possible causes and correct the problem mentioned in the other messages. If Oracle has been initialized, then on some operating systems, verify that Oracle was linked correctly. See the platform-specific Oracle documentation.

  • Can SPFILE be copied when database is shutdown?

    can I issue the follow command when database is shutdown:
    CREATE PFILE FROM SPFILE;
    ?

    Check op's question again (not only the subject line).
    CREATE PFILE FROM SPFILE;
    apex1: > export ORACLE_SID=spfile
    spfile:  > sqlplus / as sysdba
    SQL*Plus: Release 10.2.0.3.0 - Production on Mon Nov 5 09:01:21 2007
    Copyright (c) 1982, 2006, Oracle.  All Rights Reserved.
    Connected to an idle instance.
    SQL> create pfile from spfile;
    create pfile from spfile
    ERROR at line 1:
    ORA-27037: unable to obtain file status
    <your os here> Error: 2: No such file or directory
    Additional information: 3Obviously, before nomount, Oracle don't know which spfile.
    Now with your alternative:
    SQL> create pfile from spfile='?/dbs/spfiletrestest.ora';
    File created.
    SQL> !find /u00 -cmin -5
    .../db_1/dbs/initspfile.oraSo - no you can not (per op's question, when instance/database is shutdown), but as you pointed out - there's another way in which you can.

  • Check the last time database was shutdown

    how do I check to see the last time the database was shutdown?

    alert log is good source
    you can first create a external table base on alert log
    something like this
    CREATE TABLE alert_ext
    text_line varchar2(255)
    ORGANIZATION EXTERNAL
    TYPE ORACLE_LOADER
    DEFAULT DIRECTORY bdump_dir
    ACCESS PARAMETERS
    records delimited by newline
    fields
    REJECT ROWS WITH ALL NULL FIELDS
    LOCATION
    'alert_etest.log'
    Then run this query (credit to Tom)
    SQL> l
    1 select last_time, start_time, start_time-last_time days
    2 from (
    3 select to_date(last_time, 'Dy Mon DD HH24:MI:SS YYYY') last_time,
    4 to_date(start_time,'Dy Mon DD HH24:MI:SS YYYY') start_time
    5 from (
    6 select text_line,
    7 lag(text_line,1) over (order by r) start_time,
    8 lag(text_line,2) over (order by r) last_time
    9 from (
    10 select rownum r, text_line
    11 from alert_ext
    12 where text_line like '___ ___ __ __:__:__ 20__'
    13 or text_line like 'Starting ORACLE instance %'
    14 )
    15 )
    16 where text_line like 'Starting ORACLE instance %'
    17* )
    SQL> /
    LAST_TIME START_TIME DAYS
    SEP 07 2005 15:38:09
    OCT 12 2005 17:46:08 OCT 12 2005 17:47:47 .001145833
    MAY 16 2006 14:30:22 MAY 16 2006 14:30:39 .000196759
    MAY 31 2006 16:25:17 MAY 31 2006 17:22:05 .039444444
    JUN 21 2006 18:50:45 JUN 21 2006 18:50:56 .000127315
    JUL 10 2006 12:07:53 JUL 10 2006 12:08:00 .000081019
    JUL 10 2006 12:08:07 JUL 10 2006 12:23:06 .010405093
    7 rows selected.

  • Solaris10/SC3.2/Oracle10g -- Stopping database instance with CRS

    I have configured the crs framework for a 2 node solaris10/SC3.2 cluster running Oracle10g.
    All instances start during boot, but during scshutdown I get the following error message:
    All the other crs processes shutdown cleanly
    PRKP-1002 : Error stopping instance odbtst21 on node lssva004
    CRS-0259: Owner of the resource does not belong to the group.
    CRS-0259: Owner of the resource does not belong to the group.Oct 9 15:36:04 lssva004 SC[SUNWscor.scalable_rac_server_proxy.server_manage]:rac-odbtst20-rg:rac-odbtst20-rs: Error occured during instance shutdown (PRKP-1002 : Error stopping instance odbtst21 on node lssva004
    Oct 9 15:36:04 lssva004 SC[SUNWscor.scalable_rac_server_proxy.server_manage]:rac-odbtst20-rg:rac-odbtst20-rs: Error occured during instance shutdown (PRKP-1002 : Error stopping instance odbtst21 on node lssva004
    Oct 9 15:36:04 lssva004 CRS-0259: Owner of the resource does not belong to the group.
    Oct 9 15:36:04 lssva004 CRS-0259: Owner of the resource does not belong to the group.).
    Oct 9 15:36:04 lssva004 CRS-0259: Owner of the resource does not belong to the group.
    Oct 9 15:36:04 lssva004 CRS-0259: Owner of the resource does not belong to the group.).
    I also get this same message when I try to use clrs to disable the resource ( which is the database instance )
    Any ideas.
    Thank you.

    Have you changed any of the groups since you installed? In particular, what group did you install the ORCLudlm as (assuming it is SPARC). What about the permissions on the OCR and Voting disk devices/files?
    DId it ever work? Have you added any Oracle patches recently?
    If the crs commands aren't working, it sounds like it is a problem that Oracle is having rather than a Sun Cluster problem per se. That's why I'm inclined to think it is a permissions problem.
    For further debugging, you might have to raise this with Oracle.
    Tim
    ---

  • ORA-12505: Database Instance and Agent Connection to Instance will not work

    Hi,
    I have the following error: in Oracle 10g I try to connect to OEM and the listener is up but the Database Instance and Agent Connection to Instance are down. When I attempt to restart the instance, OEM will just hang indefinitely. I have used tnsping and the results are OK. Is that descriptive enough? What can I do to fix this?
    regards,
    John

    I changed the SID because I was mistaken and thought of the oracle database name. I have corrected the ORACLE_SID to that given in my tnsnames.ora file which I post here:
    ORACLE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = Lasirius-laptop)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = oracle)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    These are the default settings that were made on installation. I have been working with this installation for 2 months, and it just suddenly stopped working. I have changed no other settings apart from the mistaken ORACLE_SID environment variable in this post, which has now been changed to PLSExtProc. Here is my init.ora:
    # replace "clustdb" with your database name
    db_name = clustdb
    compatible=9.0.0
    db_files = 1024 # INITIAL
    #INITIAL
    #db_files=80
    #SMALL
    #DB_files=400
    #MEDIUM
    #db_files=1000
    #LARGE
    control_files = ("\\.\clustdb_control1", "\\.\clustdb_control2")
    db_file_multiblock_read_count = 8 # INITIAL
    # db_file_multiblock_read_count = 8
    #SMALL
    #db_file_multiblock_read_count = 16
    #MEDIUM
    #db_file_multiblock_read_count = 32
    #LARGE
    #Datawarehouse
    db_block_size=8192
    # Transaction processing
    # db_block_size=4096
    open_cursors=300
    #Transaction processing
    #sort_area_size=524288
    #Datawarehouse
    sort_area_size=1048576
    large_pool_size=1048576 #Transaction processing, Datawarehouse
    db_cache_size=50331648 #Datawarehouse, Transaction processing
    java_pool_size=67108864 #Datawarehouse, Transaction processing
    # db_block_buffers = 200 # INITIAL
    # db_block_buffers=100 #SMALL
    # db_block_buffers =550 # MEDIUM
    # db_block_buffers=3200 #LARGE
    #shared_pool_size = 52428800 # INITIAL
    shared_pool_size = 67108864 # datewarehouse, transaction processing
    log_checkpoint_interval = 10000
    processes = 59 # INITIAL
    # processes = 50
    #SMALL
    #processes = 100
    #MEDIUM
    #processes = 200
    #LARGE
    parallel_max_servers = 5
    #SMALL
    # parallel_max_servers = 4 x (number of CPUs)
    #MEDIUM
    # parallel_max_servers = 4 x (number of CPUs)
    # LARGE
    log_buffer = 8192 # INITIAL
    #log_buffer = 8192
    #SMALL
    #log_buffer = 32768
    #MEDIUM
    #log_buffer = 163840
    #LARGE
    # audit_trail = true # if you want auditing
    # timed_statistics = true # if you want timed statistics
    max_dump_file_size = 10240 # limit trace file size to 10 K each
    # Uncommenting the line below will cause automatic archiving if archiving has
    # been enabled using ALTER DATABASE ARCHIVELOG.
    # log_archive_start = true
    # log_archive_dest = %ORACLE_HOME%/admin/clustdb/arch
    # log_archive_format = "%%ORACLE_SID%%T%TS%S.ARC"
    # If using private rollback segments, place lines of the following
    # form at the end of this file:
    # <sid>.rollback_segments = (name1, name2)
    # If using public rollback segments, define how many
    # rollback segments each instance will pick up, using the formula
    # # of rollback segments = transactions / transactions_per_rollback_segment
    # In this example each instance will grab 40/10 = 4:
    # transactions = 40
    # transactions_per_rollback_segment = 10
    # Global Naming -- enforce that a dblink has same name as the db it connects to
    global_names = TRUE
    # Edit and uncomment the following line to provide the suffix that will be
    # appended to the db_name parameter (separated with a dot) and stored as the
    # global database name when a database is created. If your site uses
    # Internet Domain names for e-mail, then the part of your e-mail address after
    # the '@' is a good candidate for this parameter value.
    # db_domain = us.acme.com # global database name is db_name.db_domain
    # Uncomment the following line if you wish to enable the Oracle Trace product
    # to trace server activity. This enables scheduling of server collections
    # from the Oracle Enterprise Manager Console.
    # Also, if the oracle_trace_collection_name parameter is non-null,
    # every session will write to the named collection, as well as enabling you
    # to schedule future collections from the console.
    # oracle_trace_enable = TRUE
    # define directories to store trace and alert files
    background_dump_dest=%ORACLE_HOME%/admin/clustdb/bdump
    user_dump_dest=%ORACLE_HOME%/admin/clustdb/
    db_block_size = 4096
    remote_login_passwordfile = exclusive
    # text_enable = TRUE
    # The following parameters are needed for the Advanced Replication Option
    job_queue_processes = 2
    # job_queue_processes = 4 #datawarehouse
    # job_queue_interval = 10
    # job_queue_keep_connections = false
    distributed_transactions = 5
    open_links = 4
    # The following parameters are instance-specific parameters that are
    # specified for two instances named clustdb1 and clustdb2
    undo_management=AUTO # For automatic undo management
    # = MANUAL For manual/RBS undo management
    cluster_database= true
    cluster_database_instances=2
    remote_listener=LISTENERS_CLUSTDB
    # First instance specific parameters
    clustdb1.thread=1
    clustdb1.instance_name=clustdb1
    clustdb1.instance_number=1
    clustdb1.local_listener=listener_clustdb1
    clustdb1.remote_login_passwordfile = exclusive
    # Comment out clustdb1.undo_tablespace and uncomment clustdb1.rollback_segments
    # when undo_management=MANUAL
    clustdb1.undo_tablespace = UNDOTBS1
    # clustdb1.rollback_segments = (rbs1_1,rbs1_2)
    # Second instance specific parameters
    clustdb2.thread=2
    clustdb2.instance_name = clustdb2
    clustdb2.instance_number = 2
    clustdb2.local_listener = listener_clustdb2
    clustdb2.remote_login_passwordfile = exclusive
    # Comment out clustdb2.undo_tablespace and uncomment clustdb2.rollback_segments
    # when undo_management=MANUAL
    clustdb2.undo_tablespace = UNDOTBS2
    # clustdb2.rollback_segments = (rbs2_1,rbs2_2)

  • Exadata instance shutdown

    我这边有一台四分之一配X2-2的Exadata,数据库版本为11.2.0.3.7,昨天下午17:45分左右,实例1 down了,alert日志和生成的trace已经发到您邮箱了,麻烦您帮我分析一下,谢谢!

    Thanks for your reply....
    OEM server in Windows server, Oracle Instance running in Linux server..I was sheduled through Jobs Shutdown database\Startup database.
    This Error massage getting through mail alert.
    for Shutdown:
    Job name=MANTAS DATABASE
    Job owner=SYSMAN
    Job type=Shutdown Database
    Job status=Error
    Occurred At=May 28, 2009 8:00:06 PM EDT
    Target Name=mantas.ssfcu.inet(Database Instance)
    Job output=
    Error Log:Command
    ERROR: Execution failed due to binary missing or permission issues
    ~~~End Step Output/Error Log~~~
    for startup:
    Job name=MANTAS DATABASE STARTUP
    Job owner=SYSMAN
    Job type=Startup Database
    Job status=Error
    Occurred At=May 28, 2009 10:00:08 PM EDT
    Target Name=mantas.ssfcu.inet(Database Instance)
    Job output=
    Error Log:Command
    ERROR: Execution failed due to binary missing or permission issues
    ~~~End Step Output/Error Log~~~
    thanks
    Jayaram

Maybe you are looking for

  • 790FX-GD70 not POSTing no debug code all LEDs on

    Hi I have had my 790FX-GD70 for almost the past 2 years and it has given me no real problems. But yesterday whilst playing Fallen Earth, my computer froze so I gave it a restart and it froze during windows start up. At this point I opened my case and

  • Problem with login using Oracle Enterprise Manager

    I am new to Oracle. I installed the software (my Operating System is Windows XP) and created a database following the guidelines in the documentation and Oracle By Example. Now I can not log on as the user SYS through the Enterprise Manager. However,

  • Error while saving data form in planning

    Hi, We are getting the below error while saving the data form in planning "There was an error during the save process" i believe our form is not exceeds 255 columns we were able to access the same form till yesterday can any one please help me on thi

  • HT4759 Cannot access iCloud Contacts in Outlook 2007

    I cannot access my iCloud contacts in my Windows 7 PC.  When I am in the Contacts tab and I click on "Contacts in iCloud" in the iCloud section, a window comes up with "The set of folders cannot be opened.  The information store could not be opened."

  • Help for Menu

    hi everyone, i am very new in java. i am having problem in SWITCH CASE STATEMENT. can anyone please help me to solve the following problem: you have to write a program in java to generate the following menu with submenus: about linked List 1: ADD ELE