PMON terminating the instance due to error 4031

database went down following the below alert log message and came back on its own.
ORA-04031: unable to allocate 3960 bytes of shared memory ("shared pool","unknown object","sga heap(3,0)","osp allo
cation")
PMON (ospid: 5170): terminating the instance due to error 4031
Question : how could a database restart on its own. There is no cron job to restart any instance.

Depends on the operating system.  Windows services can restart after they die so if this is a Windows installation it may be how the service is configured.
We really need more information before anyone can tell you exactly what happened.
David Fitzjarrell

Similar Messages

  • LMS1 (ospid: 7829): terminating the instance due to error 4031 ????

    Single Instance out of 5 node cluster Oracle 11g 11.1.0.7 crashed with the below error..Plz help
    Errors in file /ora00/app/oracle/diag/rdbms/ngprod/ngprod2/trace/ngprod2_lms1_7829.trc:
    ORA-04031: unable to allocate 4160 bytes of shared memory ("shared pool","unknown object","sga heap(1,0)","gcs dynamic s")
    LMS1 (ospid: 7829): terminating the instance due to error 4031
    System state dump is made for local instance
    System State dumped to trace file /ora00/app/oracle/diag/rdbms/ngprod/ngprod2/trace/ngprod2_diag_7805.trc
    Mon Oct 26 22:45:16 2009
    Errors in file /ora00/app/oracle/diag/rdbms/ngprod/ngprod2/trace/ngprod2_rbal_7847.trc (incident=216218):
    ORA-04031: unable to allocate bytes of shared memory ("","","","")
    Incident details in: /ora00/app/oracle/diag/rdbms/ngprod/ngprod2/incident/incdir_216218/ngprod2_rbal_7847_i216218.trc
    Mon Oct 26 22:45:23 2009
    Instance terminated by LMS1, pid = 7829
    Thanks in advance
    Gagan

    $ oerr ora 04031
    04031, 00000, "unable to allocate %s bytes of shared memory (\"%s\",\"%s\",\"%s\",\"%s\")"
    // *Cause:  More shared memory is needed than was allocated in the shared
    //          pool.
    // *Action: If the shared pool is out of memory, either use the
    //          DBMS_SHARED_POOL package to pin large packages,
    //          reduce your use of shared memory, or increase the amount of
    //          available shared memory by increasing the value of the
    //          initialization parameters SHARED_POOL_RESERVED_SIZE and
    //          SHARED_POOL_SIZE.
    //          If the large pool is out of memory, increase the initialization
    //          parameter LARGE_POOL_SIZE.ORA-04031 means that your shared pool size part of the SGA is too small. You may need to increase SHARED_POOL_SIZE which defines a minimum size for shared pool size.
    What is the output of
    show parameter shared_pool
    show parameter sga
    show parameter memory

  • PMON (ospid: 8143): terminating the instance due to error 472

    Hi Friends,
    My Environment_
    OS : oel4u5
    Apps Version : R12.1.1
    DB Version : *11.1.0.7*
    When i am trying to start my ebiz 11g database the db started and its automatically going down because of PMON termination.  When am looking in to the alert log files its showing the below ora-600 errors,
    Resuming block recovery (PMON) for file 4 block 180627
    Block recovery from logseq 125, block 70 to scn 10132192035480
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 125 Reading mem 0
    Mem# 0: /ebiz/oracle/db/apps_st/data/log2.dbf
    Block recovery completed at rba 125.281.16, scn 2359.364184220
    Errors in file /ebiz/oracle/db/tech_st/11.1.0/admin/TEST05_erptest05/diag/rdbms/test05/TEST05/trace/TEST05_pmon_8143.trc (incident=49647):
    ORA-00600: internal error code, arguments: [4194], [41], [37], [], [], [], [], [], [], [], [], []
    Errors in file /ebiz/oracle/db/tech_st/11.1.0/admin/TEST05_erptest05/diag/rdbms/test05/TEST05/trace/TEST05_pmon_8143.trc:
    ORA-00600: internal error code, arguments: [4194], [41], [37], [], [], [], [], [], [], [], [], []
    PMON (ospid: 8143): terminating the instance due to error 472
    Instance terminated by PMON, pid = 8143
    Following error which i found in the trace file /ebiz/oracle/db/tech_st/11.1.0/admin/TEST05_erptest05/diag/rdbms/test05/TEST05/trace/TEST05_pmon_8143.trc
    (call) sess: cur 5f1efd10, rec 5f1e5ff0, usr 5f1efd10; depth: 0
    ksudlc FALSE at location: 6
    (k2g table)
    error 472 detected in background process
    ORA-00600: internal error code, arguments: [4194], [41], [37], [], [], [], [], [], [], [], [], []
    *** 2011-11-27 20:19:33.113
    PMON (ospid: 8143): terminating the instance due to error 472
    Kindly Suggest me,
    Thanks
    Athish

    Hi Helios,
    We identified that the error was in undo corruption and We followed the below steps to over come above mention error.
    Steps as followed,
    Step 1:
    SQL> SELECT name,value FROM v$parameter WHERE name IN ('undo_management','undo_tablespace');
    NAME VALUE
    undo_management MANUAL
    undo_tablespace UNDO_TBS
    Step2:
    SQL> select FILE_NAME, TABLESPACE_NAME from dba_data_files where TABLESPACE_NAME like 'UNDO%';
    FILE_NAME                         TABLESPACE_NAME
    /ebiz/oracle/db/apps_st/data/undotbs_02.dbf     UNDO_TBS
    /ebiz/oracle/db/apps_st/data/undotbs_01.dbf     UNDO_TBS
    Step 3: Create a new undo tablespace
    SQL> create UNDO tablespace UNDOTBS datafile '/ebiz/oracle/db/apps_st/data/undotbs01.dbf' size 1024m REUSE AUTOEXTEND ON NEXT 4096K MAXSIZE 1024M;
    Tablespace created.
    Step 4:
    SQL> ALTER SYSTEM SET undo_tablespace = 'UNDOTBS' scope=spfile;
    System altered.
    Step 5: set old undo tablespace offine mode and drop
    SQL> ALTER TABLESPACE UNDO_TBS offline;
    Tablespace altered.
    SQL> drop tablespace UNDO_TBS including contents and datafiles;
    Tablespace dropped.
    Step 6:
    Rebounced the db services
    Step 7: Changed the undo management parameter to AUTO
    SQL> alter system set undo_management='AUTO' scope=spfile;
    System altered.
    SQL> SELECT name,value FROM v$parameter WHERE name IN ('undo_management','undo_tablespace');
    NAME VALUE
    undo_management AUTO
    undo_tablespace UNDOTBS
    Now the database is up and running with no issue and we cant find any ora error in the alert log file,
    ThaNks
    Athish

  • USER (ospid: 2268): terminating the instance due to error 12853

    Good morning all.
    I have a tricky situation going on around here....
    My Oracle DB was working fine till 5 minutes ago. Once we bounced the server, It stopped working. Here are some details:
    ORACLE RDBMS Version: 11.1.0.6.0
    C:\Documents and Settings\Administrator>tnsping dwcorp
    TNS Ping Utility for 32-bit Windows: Version 11.1.0.6.0 - Production on 12-MAR-2
    009 11:46:44
    Copyright (c) 1997, 2007, Oracle.  All rights reserved.
    Used parameter files:
    D:\app\Administrator\product\11.1.0\client_2\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)
    (HOST = riovermelho)(PORT = 1521))) (CONNECT_DATA = (SERVICE_NAME = dwcorp)))
    OK (10 msec)
    SQL> conn [sys@dwcorp|mailto:sys@dwcorp] /as sysdba
    Enter password:
    ERROR:
    ORA-12514: TNS:listener does not currently know of service requested in connect
    descriptor
    Something I consider may cause this issue is that there was a change in the Shared pool size and java pool size without any precautions...
    Wed Mar 11 16:03:13 2009
    ALTER SYSTEM SET java_pool_size='150M' SCOPE=SPFILE;
    ALTER SYSTEM SET shared_pool_size='150M' SCOPE=SPFILE;
    Wed Mar 11 16:06:10 2009
    ALTER SYSTEM SET shared_pool_size='450M' SCOPE=SPFILE;
    ALTER SYSTEM SET java_pool_size='150M' SCOPE=SPFILE;
    Wed Mar 11 16:07:03 2009
    ALTER SYSTEM SET java_pool_size='150M' SCOPE=SPFILE;
    Wed Mar 11 16:14:35 2009
    ALTER SYSTEM SET shared_pool_size='800M' SCOPE=SPFILE;
    Wed Mar 11 21:24:04 2009
    Even after these changes, made yesterday, database was working perfectly fine. Here is the ALERT LOG output, after bounce:
    Starting up ORACLE RDBMS Version: 11.1.0.6.0.
    Using parameter settings in server-side spfile D:\APP\ADMINISTRATOR\PRODUCT\11.1.0\DB_1\DATABASE\SPFILEDWCORP.ORA
    System parameters with non-default values:
      processes                = 150
      shared_pool_size         = 800M
      java_pool_size           = 152M
      memory_target            = 1552M
      control_files            = "E:\APP\ADMINISTRATOR\ORADATA\DWCORP\CONTROL01.CTL"
      control_files            = "E:\APP\ADMINISTRATOR\ORADATA\DWCORP\CONTROL02.CTL"
      control_files            = "E:\APP\ADMINISTRATOR\ORADATA\DWCORP\CONTROL03.CTL"
      db_block_size            = 8192
      compatible               = "11.1.0.0.0"
      db_recovery_file_dest    = "D:\app\Administrator\flash_recovery_area"
      db_recovery_file_dest_size= 2G
      undo_tablespace          = "UNDOTBS1"
      remote_login_passwordfile= "EXCLUSIVE"
      db_domain                = ""
      dispatchers              = "(PROTOCOL=TCP) (SERVICE=dwcorpXDB)"
      audit_file_dest          = "D:\APP\ADMINISTRATOR\ADMIN\DWCORP\ADUMP"
      audit_trail              = "DB"
      db_name                  = "dwcorp"
      open_cursors             = 300
      star_transformation_enabled= "TRUE"
      diagnostic_dest          = "D:\APP\ADMINISTRATOR"
    Thu Mar 12 11:44:31 2009
    PMON started with pid=2, OS id=3156
    Thu Mar 12 11:44:31 2009
    VKTM started with pid=3, OS id=1324 at elevated priority
    VKTM running at (20)ms precision
    Thu Mar 12 11:44:31 2009
    DIAG started with pid=4, OS id=3000
    Thu Mar 12 11:44:31 2009
    DBRM started with pid=5, OS id=2920
    Thu Mar 12 11:44:31 2009
    PSP0 started with pid=6, OS id=3004
    Thu Mar 12 11:44:31 2009
    DSKM started with pid=7, OS id=3320
    Thu Mar 12 11:44:31 2009
    DIA0 started with pid=8, OS id=2072
    Thu Mar 12 11:44:31 2009
    MMAN started with pid=7, OS id=4068
    Thu Mar 12 11:44:31 2009
    DBW0 started with pid=9, OS id=2092
    Thu Mar 12 11:44:31 2009
    LGWR started with pid=10, OS id=1296
    Thu Mar 12 11:44:31 2009
    CKPT started with pid=11, OS id=1736
    Thu Mar 12 11:44:31 2009
    SMON started with pid=12, OS id=2816
    Thu Mar 12 11:44:31 2009
    RECO started with pid=13, OS id=964
    Thu Mar 12 11:44:31 2009
    MMON started with pid=14, OS id=3040
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    Thu Mar 12 11:44:31 2009
    MMNL started with pid=15, OS id=1492
    starting up 1 shared server(s) ...
    Thu Mar 12 11:44:34 2009
    Sweep Incident[26443]: completed
    Sweep Incident[26442]: completed
    Errors in file d:\app\administrator\diag\rdbms\dwcorp\dwcorp\trace\dwcorp_ora_2268.trc  (incident=27649):
    ORA-04031: unable to allocate 257772 bytes of shared memory ("large pool","unknown object","large pool","PX msg pool")
    Incident details in: d:\app\administrator\diag\rdbms\dwcorp\dwcorp\incident\incdir_27649\dwcorp_ora_2268_i27649.trc
    Trace dumping is performing id=[cdmp_20090312114438]
    Thu Mar 12 11:44:44 2009
    Errors in file d:\app\administrator\diag\rdbms\dwcorp\dwcorp\trace\dwcorp_ora_2268.trc  (incident=27650):
    ORA-04031: unable to allocate 128892 bytes of shared memory ("large pool","unknown object","large pool","PX msg pool")
    Incident details in: d:\app\administrator\diag\rdbms\dwcorp\dwcorp\incident\incdir_27650\dwcorp_ora_2268_i27650.trc
    Thu Mar 12 11:44:45 2009
    Trace dumping is performing id=[cdmp_20090312114445]
    Errors in file d:\app\administrator\diag\rdbms\dwcorp\dwcorp\trace\dwcorp_ora_2268.trc  (incident=27651):
    ORA-04031: unable to allocate 64452 bytes of shared memory ("large pool","unknown object","large pool","PX msg pool")
    Incident details in: d:\app\administrator\diag\rdbms\dwcorp\dwcorp\incident\incdir_27651\dwcorp_ora_2268_i27651.trc
    Trace dumping is performing id=[cdmp_20090312114451]
    Thu Mar 12 11:44:57 2009
    Errors in file d:\app\administrator\diag\rdbms\dwcorp\dwcorp\trace\dwcorp_ora_2268.trc  (incident=27652):
    ORA-04031: unable to allocate 32232 bytes of shared memory ("large pool","unknown object","large pool","PX msg pool")
    Incident details in: d:\app\administrator\diag\rdbms\dwcorp\dwcorp\incident\incdir_27652\dwcorp_ora_2268_i27652.trc
    Thu Mar 12 11:44:58 2009
    Trace dumping is performing id=[cdmp_20090312114458]
    Errors in file d:\app\administrator\diag\rdbms\dwcorp\dwcorp\trace\dwcorp_ora_2268.trc  (incident=27653):
    ORA-04031: unable to allocate 16124 bytes of shared memory ("large pool","unknown object","large pool","PX msg pool")
    Incident details in: d:\app\administrator\diag\rdbms\dwcorp\dwcorp\incident\incdir_27653\dwcorp_ora_2268_i27653.trc
    Trace dumping is performing id=[cdmp_20090312114504]
    Thu Mar 12 11:45:10 2009
    Errors in file d:\app\administrator\diag\rdbms\dwcorp\dwcorp\trace\dwcorp_ora_2268.trc  (incident=27654):
    ORA-04031: unable to allocate 16012 bytes of shared memory ("large pool","unknown object","large pool","PX msg pool")
    Errors in file d:\app\administrator\diag\rdbms\dwcorp\dwcorp\trace\dwcorp_ora_2268.trc  (incident=27655):
    ORA-04031: unable to allocate 257772 bytes of shared memory ("large pool","unknown object","large pool","PX msg pool")
    Thu Mar 12 11:45:23 2009
    Errors in file d:\app\administrator\diag\rdbms\dwcorp\dwcorp\trace\dwcorp_ora_2268.trc  (incident=27656):
    ORA-04031: unable to allocate 128892 bytes of shared memory ("large pool","unknown object","large pool","PX msg pool")
    Errors in file d:\app\administrator\diag\rdbms\dwcorp\dwcorp\trace\dwcorp_ora_2268.trc  (incident=27657):
    ORA-04031: unable to allocate 64452 bytes of shared memory ("large pool","unknown object","large pool","PX msg pool")
    Thu Mar 12 11:45:34 2009
    Sweep Incident[27657]: completed
    Sweep Incident[27656]: completed
    Sweep Incident[27655]: completed
    Sweep Incident[27654]: completed
    Sweep Incident[27653]: completed
    Sweep Incident[27652]: completed
    Sweep Incident[27651]: completed
    Sweep Incident[27650]: completed
    Sweep Incident[27649]: completed
    Thu Mar 12 11:45:35 2009
    Errors in file d:\app\administrator\diag\rdbms\dwcorp\dwcorp\trace\dwcorp_ora_2268.trc  (incident=27658):
    ORA-04031: unable to allocate 32232 bytes of shared memory ("large pool","unknown object","large pool","PX msg pool")
    Errors in file d:\app\administrator\diag\rdbms\dwcorp\dwcorp\trace\dwcorp_ora_2268.trc  (incident=27659):
    ORA-04031: unable to allocate 21492 bytes of shared memory ("large pool","unknown object","large pool","PX msg pool")
    USER (ospid: 2268): terminating the instance due to error 12853
    Instance terminated by USER, pid = 2268Any ideas?

    Hi Anantha.
    First of all, really appreciate your help.
    Completing information regarding my environment, it's a Windows 2003 server (SP2).
    I've read this thread you posted. It's been a long time since I was a DBA, till oracle 8i. Now, stuff is completely different, so, i'm kinda lost...
    The point is that the database is not up and it fails whenever I try to start it.
    I've tried to mannualy recreate my PFILE. So, I've made a copy of the SPFILE, removed special characters and now it looks like this:
    dwcorp.__db_cache_size=335544320
    dwcorp.__java_pool_size=33554432
    dwcorp.__large_pool_size=83886080
    dwcorp.__oracle_base='D:\app\Administrator'#ORACLE_BASE set from environment
    dwcorp.__pga_aggregate_target=64592281
    dwcorp.__sga_target=981467136
    dwcorp.__shared_io_pool_size=16777216
    dwcorp.__shared_pool_size=57881395
    dwcorp.__streams_pool_size=0
    *.audit_file_dest='D:\app\Administrator\admin\dwcorp\adump'
    *.audit_trail='db'
    *.compatible='11.1.0.0.0'
    *.control_files='E:\app\Administrator\oradata\dwcorp\control01.ctl','E:\app\Administrator\oradata\dwcorp\control02.ctl','E:\app\Administrator\oradata\dwcorp\control03.ctl'
    *.db_block_size=8192
    *.db_domain=''
    *.db_name='dwcorp'
    *.db_recovery_file_dest='D:\app\Administrator\flash_recovery_area'
    *.db_recovery_file_dest_size=2147483648
    *.diagnostic_dest='D:\app\Administrator'
    *.dispatchers='(PROTOCOL=TCP) (SERVICE=dwcorpXDB)'
    *.java_pool_size=157286400
    *.memory_target=1622147072
    *.open_cursors=300
    *.processes=150
    *.remote_login_passwordfile='EXCLUSIVE'
    *.shared_pool_size=83886080
    *.star_transformation_enabled='TRUE'
    *.undo_tablespace='UNDOTBS1'I've tried to start it up using ORADIM, since NET START (or either windows services panel) is not working.
    C:\Documents and Settings\Administrator>oradim -startup -sid dwcorp -starttype srvc,inst -pfile D:\app\Administrator\product\11.1.0\db_1\database\archive\pfiled
    wcorp.ora
    ORA-01078: failure in processing system parametersIf you need more information, please, just ask me. My database is down and the whole dev. team is idle......
    Another question is, I know I can connect to Oracle down, as an idle instance. But I cannot remember how to do it.
    Please, refresh my memory and tell me how to connect to an idle instance, so I could try to manually start database.
    As you may notice in my first post, This issue started after I bounced the server. I have done it several times before, but Yesterday, I changed some of the Oracle parameters (SHARED_POOL_SIZE and JAVA_POOL_SIZE).
    TIA,
    Marcos

  • Terminating the instance due to error 119

    System : Oracle 11gR2 running on Oracle VM.
    Issue : Oracle fails to comeup after LISTENER.ORA is removed/corrupted. Any reason?
    Actions taken : used *.ora files from backup taken during healthy state and dbstart works fine now.
    Resolved but Question : Does dbstart depend on *.ora files availability? What is this error 119 (couldnt find any info on that)?
    Thanks.

    Dear sb92075,
    Thanks for confirming :
    listener is NOT required to start or access any local Oracle database.
    listener.ora file is NOT required to start or use the listener.
    Coming to ...
    It is really, Really, REALLY difficult to fix a problem that can not be seen.
    As said earlier, issue is fixed.  Question is why DBSTART works only when proper ORA files are used.
    Anyways, here is the info requested :
    [oracle@oraclelinux6 bin]$ dbstart
    ORACLE_HOME_LISTNER is not SET, unable to auto-start Oracle Net Listener
    Usage: /apps/app/oracle/product/11.2.0/dbhome_1/bin/dbstart ORACLE_HOME
    Processing Database instance "orcl": log file /apps/app/oracle/product/11.2.0/dbhome_1/startup.log
    [oracle@oraclelinux6 bin]$
    From startup log :
    SQL*Plus: Release 11.2.0.1.0 Production on Mon Dec 2 18:47:47 2013
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    SQL> Connected to an idle instance.
    SQL> ORA-00119: invalid specification for system parameter LOCAL_LISTENER
    ORA-00132: syntax error or unresolved network name 'LISTENER_ORCL'
    SQL> Disconnected
    /apps/app/oracle/product/11.2.0/dbhome_1/bin/dbstart: Database instance "orcl" warm started.
    [oracle@oraclelinux6 bin]$
    From trace file :
    *** 2013-12-02 18:47:58.236
    USER (ospid: 3950): terminating the instance due to error 119
    [oracle@oraclelinux6 trace]$
    From alert log :
    Starting up:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options.
    Using parameter settings in server-side spfile /apps/app/oracle/product/11.2.0/dbhome_1/dbs/spfileorcl.ora
    System parameters with non-default values:
      processes                = 150
      memory_target            = 1584M
      control_files            = "/apps/db/orcl/control01.ctl"
      control_files            = "/apps/app/oracle/flash_recovery_area/orcl/control02.ctl"
      db_block_size            = 8192
      compatible               = "11.2.0.0.0"
      db_recovery_file_dest    = "/apps/app/oracle/flash_recovery_area"
      db_recovery_file_dest_size= 3882M
      undo_tablespace          = "UNDOTBS1"
      remote_login_passwordfile= "EXCLUSIVE"
      db_domain                = "localdomain"
      dispatchers              = "(PROTOCOL=TCP) (SERVICE=orclXDB)"
      local_listener           = "LISTENER_ORCL"
      audit_file_dest          = "/apps/app/oracle/admin/orcl/adump"
      audit_trail              = "DB"
      db_name                  = "orcl"
      open_cursors             = 300
      diagnostic_dest          = "/apps/app/oracle"
    USER (ospid: 2999): terminating the instance due to error 119
    Instance terminated by USER, pid = 2999
    Mon Dec 02 18:47:51 2013
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 3
    Using LOG_ARCHIVE_DEST_1 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =27
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options.
    Using parameter settings in server-side spfile /apps/app/oracle/product/11.2.0/dbhome_1/dbs/spfileorcl.ora
    System parameters with non-default values:
      processes                = 150
      memory_target            = 1584M
      control_files            = "/apps/db/orcl/control01.ctl"
      control_files            = "/apps/app/oracle/flash_recovery_area/orcl/control02.ctl"
      db_block_size            = 8192
      compatible               = "11.2.0.0.0"
      db_recovery_file_dest    = "/apps/app/oracle/flash_recovery_area"
      db_recovery_file_dest_size= 3882M
      undo_tablespace          = "UNDOTBS1"
      remote_login_passwordfile= "EXCLUSIVE"
      db_domain                = "localdomain"
      dispatchers              = "(PROTOCOL=TCP) (SERVICE=orclXDB)"
      local_listener           = "LISTENER_ORCL"
      audit_file_dest          = "/apps/app/oracle/admin/orcl/adump"
      audit_trail              = "DB"
      db_name                  = "orcl"
      open_cursors             = 300
      diagnostic_dest          = "/apps/app/oracle"
    USER (ospid: 3950): terminating the instance due to error 119
    Instance terminated by USER, pid = 3950
    [oracle@oraclelinux6 trace]$
    [oracle@oraclelinux6 trace]$ df -k
    Filesystem                          1K-blocks      Used Available Use% Mounted on
    /dev/mapper/vg_oraclelinux6-lv_root  15237120   8088772   5709648  59% /
    tmpfs                                 5242880       272   5242608   1% /dev/shm
    /dev/sda1                              495844    125202    345042  27% /boot
    /dev/sdd                             12385456  10527572   1228740  90% /apps
    none                                  4194304       108   4194196   1% /tmp
    Linux                               353894396 300370788  53523608  85% /media/sf_Linux
    /dev/sr0                                54082     54082         0 100% /media/VBOXADDITIONS_4.2.4_81684
    [oracle@oraclelinux6 trace]$ ps -ef | grep oracle
    avahi     1513     1  0 18:43 ?        00:00:00 avahi-daemon: running [oraclelinux6.local]
    oracle    2354     1  0 18:45 ?        00:00:00 /usr/bin/gnome-keyring-daemon --daemonize --login
    oracle    2363  2344  0 18:45 ?        00:00:00 gnome-session
    oracle    2371     1  0 18:45 ?        00:00:00 dbus-launch --sh-syntax --exit-with-session
    oracle    2372     1  0 18:45 ?        00:00:00 /bin/dbus-daemon --fork --print-pid 5 --print-address 7 --session
    oracle    2435     1  0 18:45 ?        00:00:00 /usr/bin/VBoxClient --clipboard
    oracle    2443     1  0 18:45 ?        00:00:00 /usr/bin/VBoxClient --display
    oracle    2448     1  0 18:45 ?        00:00:00 /usr/bin/VBoxClient --seamless
    oracle    2453     1  0 18:45 ?        00:00:01 /usr/bin/VBoxClient --draganddrop
    oracle    2477     1  0 18:45 ?        00:00:00 /usr/libexec/gconfd-2
    oracle    2484     1  0 18:45 ?        00:00:00 /usr/libexec/gnome-settings-daemon
    oracle    2491     1  0 18:45 ?        00:00:00 /usr/libexec/gvfsd
    oracle    2494     1  0 18:45 ?        00:00:00 seahorse-daemon
    oracle    2502  2363  0 18:45 ?        00:00:00 metacity --sm-client-id 1072b0438d14c83ab2138561248658457800000023660026
    oracle    2506     1  0 18:45 ?        00:00:00 /usr/bin/pulseaudio --start --log-target=syslog
    oracle    2511  2363  0 18:45 ?        00:00:00 gnome-panel --sm-client-id 1072b0438d14c83ab2138561248661659600000023660027
    oracle    2519  2506  0 18:45 ?        00:00:00 /usr/libexec/pulse/gconf-helper
    oracle    2520  2363  0 18:45 ?        00:00:00 nautilus --sm-client-id 1072b0438d14c83ab2138561248673276200000023660028 --sm-client-state-file /home/oracle/.config/session-state/nautilus-1386038529.state
    oracle    2522     1  0 18:45 ?        00:00:00 /usr/libexec/bonobo-activation-server --ac-activate --ior-output-fd=18
    oracle    2528     1  0 18:45 ?        00:00:00 /usr/libexec/wnck-applet --oaf-activate-iid=OAFIID:GNOME_Wncklet_Factory --oaf-ior-fd=18
    oracle    2530     1  0 18:45 ?        00:00:00 /usr/libexec/trashapplet --oaf-activate-iid=OAFIID:GNOME_Panel_TrashApplet_Factory --oaf-ior-fd=24
    oracle    2532     1  0 18:45 ?        00:00:00 /usr/libexec/gvfs-gdu-volume-monitor
    oracle    2538     1  0 18:45 ?        00:00:00 /usr/libexec/gvfsd-trash --spawner :1.7 /org/gtk/gvfs/exec_spaw/0
    oracle    2544  2363  0 18:45 ?        00:00:00 gnome-volume-control-applet
    oracle    2545  2363  0 18:45 ?        00:00:00 /usr/libexec/polkit-gnome-authentication-agent-1
    oracle    2546  2363  0 18:45 ?        00:00:00 gpk-update-icon
    oracle    2551     1  0 18:45 ?        00:00:00 /usr/libexec/gvfs-gphoto2-volume-monitor
    oracle    2605  2363  0 18:45 ?        00:00:00 abrt-applet
    oracle    2606  2363  0 18:45 ?        00:00:00 nm-applet --sm-disable
    oracle    2607  2363  0 18:45 ?        00:00:00 gnome-power-manager
    oracle    2608  2363  0 18:45 ?        00:00:00 bluetooth-applet
    oracle    2611     1  0 18:45 ?        00:00:00 /usr/libexec/gvfs-afc-volume-monitor
    oracle    2612  2363  0 18:45 ?        00:00:00 /usr/libexec/gdu-notification-daemon
    oracle    2614  2363  0 18:45 ?        00:00:00 python /usr/share/system-config-printer/applet.py
    oracle    2625     1  0 18:45 ?        00:00:00 gnome-screensaver
    oracle    2627     1  0 18:45 ?        00:00:00 /usr/libexec/im-settings-daemon
    oracle    2780     1  0 18:45 ?        00:00:00 /usr/libexec/gconf-im-settings-daemon
    oracle    2786     1  0 18:45 ?        00:00:00 /usr/libexec/clock-applet --oaf-activate-iid=OAFIID:GNOME_ClockApplet_Factory --oaf-ior-fd=19
    oracle    2788     1  0 18:45 ?        00:00:00 /usr/libexec/gdm-user-switch-applet --oaf-activate-iid=OAFIID:GNOME_FastUserSwitchApplet_Factory --oaf-ior-fd=28
    oracle    2790     1  0 18:45 ?        00:00:00 /usr/libexec/notification-area-applet --oaf-activate-iid=OAFIID:GNOME_NotificationAreaApplet_Factory --oaf-ior-fd=34
    oracle    2792     1  0 18:45 ?        00:00:00 /usr/bin/gnote --panel-applet --oaf-activate-iid=OAFIID:GnoteApplet_Factory --oaf-ior-fd=40
    oracle    2837     1  0 18:45 ?        00:00:00 /usr/libexec/gvfsd-burn --spawner :1.7 /org/gtk/gvfs/exec_spaw/1
    oracle    2839     1  0 18:45 ?        00:00:00 /usr/libexec/gvfsd-metadata
    oracle    3863     1  0 18:46 ?        00:00:01 gnome-terminal
    oracle    3864  3863  0 18:46 ?        00:00:00 gnome-pty-helper
    oracle    3865  3863  0 18:46 pts/0    00:00:00 bash
    oracle    3881  3863  0 18:46 pts/1    00:00:00 bash
    oracle    3896  3863  0 18:46 pts/2    00:00:00 bash
    oracle    4012  3896  0 18:54 pts/2    00:00:00 ps -ef
    oracle    4013  3896  0 18:54 pts/2    00:00:00 grep oracle
    [oracle@oraclelinux6 trace]$

  • Terminating the instance due to error 704

    Hi,
    Almost 6 months back, I have installed Oracle 11g in AIX-6.1 and created a new database ....
    Oracle Version :
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit
    A few days back, my database crashed with following errors :
    alert log:
    MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
    SMON: enabling cache recovery
    Errors in file /oracle/Oracle11g/admin/RIMSDB/diag/rdbms/rimsdb/RIMSDB/trace/RIMSDB_ora_13762754.trc:
    ORA-00704: bootstrap process failure
    ORA-39700: database must be opened with UPGRADE option
    Errors in file /oracle/Oracle11g/admin/RIMSDB/diag/rdbms/rimsdb/RIMSDB/trace/RIMSDB_ora_13762754.trc:
    ORA-00704: bootstrap process failure
    ORA-39700: database must be opened with UPGRADE option
    Error 704 happened during db open, shutting down database
    USER (ospid: 13762754): terminating the instance due to error 704
    Instance terminated by USER, pid = 13762754
    ORA-1092 signalled during: ALTER DATABASE OPEN...
    opiodr aborting process unknown ospid (13762754) as a result of ORA-1092
    Thu Mar 28 17:48:51 2013
    ORA-1092 : opitsk aborting process
    TRACE File :
    *** 2013-03-28 17:48:50.482
    *** SESSION ID:(1226.5) 2013-03-28 17:48:50.482
    *** CLIENT ID:() 2013-03-28 17:48:50.482
    *** SERVICE NAME:(SYS$USERS) 2013-03-28 17:48:50.482
    *** MODULE NAME:([email protected] (TNS V1-V3) 2013-03-28 17:48:50.482
    *** ACTION NAME:() 2013-03-28 17:48:50.482
    ORA-00704: bootstrap process failure
    ORA-39700: database must be opened with UPGRADE option
    ORA-00704: bootstrap process failure
    ORA-39700: database must be opened with UPGRADE option
    *** 2013-03-28 17:48:50.483
    USER (ospid: 13762754): terminating the instance due to error 704
    Regards,
    jibu

    Jibu  wrote:
    Executed the sqls....
    SQLPLUS and DB are of same version....
    SQL> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release *11.2.0.3.0* - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    RIMSDB:/oracle/Oracle11g>echo $PATH
    /usr/bin:/etc:/usr/sbin:/usr/ucb:/oracle/Oracle11g/bin:/usr/bin/X11:/sbin:.
    RIMSDB:/oracle/Oracle11g>sqlplus
    SQLPlus: Release 11.2.0.3.0* Production on Thu Mar 28 20:57:52 2013
    Copyright (c) 1982, 2011, Oracle. All rights reserved.
    Enter user-name: /as sysdba
    Connected to an idle instance.
    SQL> startup upgrade
    Regards,
    Jibu
    >Executed the sqls....
    SQLPLUS and DB are of same version....
    SQL> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release *11.2.0.3.0* - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    RIMSDB:/oracle/Oracle11g>echo $PATH
    /usr/bin:/etc:/usr/sbin:/usr/ucb:/oracle/Oracle11g/bin:/usr/bin/X11:/sbin:.
    RIMSDB:/oracle/Oracle11g>sqlplus
    SQLPlus: Release 11.2.0.3.0* Production on Thu Mar 28 20:57:52 2013
    Copyright (c) 1982, 2011, Oracle. All rights reserved.
    Enter user-name: /as sysdba
    Connected to an idle instance.
    SQL> startup upgrade
    Regards,
    Jibu
    OK, but what results when you issue SQL below after issuing STARTUP UPGRADE?
    SELECT * FROM V$VERSION;

  • LGWR (ospid: 3728): terminating the instance due to error 470

    Hi Guru's,
    Am running on 11.2.0.1 on Windows XP SP 3 and suddenly this morning my database is unable to startup open, although it can mount without a problem.
    The alert log says:-
    Tue Apr 19 11:12:18 2011
    ALTER DATABASE MOUNT
    Tue Apr 19 11:12:21 2011
    Sweep [inc][249690]: completed
    Sweep [inc2][249690]: completed
    Successful mount of redo thread 1, with mount id 216676754
    Database mounted in Exclusive Mode
    Lost write protection disabled
    Completed: ALTER DATABASE MOUNT
    Tue Apr 19 11:12:22 2011
    ALTER DATABASE OPEN
    Errors in file c:\oracle\diag\rdbms\tznprn\tznprn\trace\tznprn_lgwr_3728.trc (incident=250890):
    ORA-00600: internal error code, arguments: [3700], [1], [15], [3], [2], [], [], [], [], [], [], []
    Incident details in: c:\oracle\diag\rdbms\tznprn\tznprn\incident\incdir_250890\tznprn_lgwr_3728_i250890.trc
    Errors in file c:\oracle\diag\rdbms\tznprn\tznprn\trace\tznprn_lgwr_3728.trc:
    ORA-00600: internal error code, arguments: [3700], [1], [15], [3], [2], [], [], [], [], [], [], []
    LGWR (ospid: 3728): terminating the instance due to error 470
    Instance terminated by LGWR, pid = 3728
    I have checked everything from the network settings to the listener,tns and sqlnet files and all seems to be fine.
    The trace file says:-
    Incident 253290 created, dump file: c:\oracle\diag\rdbms\tznprn\tznprn\incident\incdir_253290\tznprn_lgwr_3548_i253290.trc
    ORA-00600: internal error code, arguments: [3700], [1], [15], [3], [2], [], [], [], [], [], [], []
    error 470 detected in background process
    ORA-00600: internal error code, arguments: [3700], [1], [15], [3], [2], [], [], [], [], [], [], []
    *** 2011-04-19 11:28:03.765
    LGWR (ospid: 3548): terminating the instance due to error 470
    Please help me out.

    Hi;
    You are hitting ora 600 error which mean oracle internal error.Please check below note if its not help i suggest rise sr
    Troubleshoot an ORA-600 or ORA-7445 Error Using the Error Lookup Tool [ID 153788.1]
    Regard
    Helios

  • CKPT: terminate the instance due to error 220

    Hi,
    I was working on one instance.
    That is on 8.0.6 and on windows .
    Suddently connection break and now it is showing end of communication file
    then i checked in alert log it is shwoing that
    CKPT: terminate the instance due to error 220
    Kindly sugget any solution.
    Thanks

    My first suggestion would be to upgrade to software that is not older than you are. <g> Likely 8.0.6 is unsupported on the operating system and hardware on which you are running it.
    It would also be my second, third, and fourth suggestions.
    8.0.6 has not been supported during the current century.
    And while I am sure this is not the advice you hope to hear it is the best I can give. The product is Paleolithic.

  • Instance is down due to error 4031

    in RAC (10.2.0.4, AIX, 64bit), instance 2 is down, check altert log,
    ORA-04031: unable to allocate 8416 bytes of shared memory ("shared pool","unknown object","sga heap(1,0)","KSXR large reply queue")
    LCK0: terminating instance due to error 4031
    ( dba broungt it up.)
    ( check related trace )
    =================================
    Begin 4031 Diagnostic Information
    =================================
    The following information assists Oracle in diagnosing
    causes of ORA-4031 errors. This trace may be disabled
    by setting the init.ora _4031_dump_bitvec = 0
    =====================================
    Allocation Request Summary Informaton
    =====================================
    Current information setting: 04014fff
    SGA Heap Dump Interval=3600 seconds
    Dump Interval=300 seconds
    Last Dump Time=09/19/2010 15:18:42
    Dump Count=1
    Allocation request for: KSXR large reply queue
    Heap: 700000010036770, size: 8416
    HEAP DUMP heap name="sga heap(1,0)" desc=700000010036770
    extent sz=0xfe0 alt=216 het=32767 rec=9 flg=-126 opc=0
    parent=0 owner=0 nex=0 xsz=0x1000000
    latch set 1 of 2
    durations enabled for this heap
    reserved granules for root 0 (granule size 16777216)
    check memory,
    sql> show parameter shared_
    NAME TYPE VALUE
    hi_shared_memory_address integer 0
    max_shared_servers integer
    shared_memory_address integer 0
    shared_pool_reserved_size big integer 15938355
    shared_pool_size big integer 304M
    shared_server_sessions integer
    shared_servers integer 0
    sql>show parameter sga_target
    NAME TYPE VALUE
    sga_target big integer 7G
    sql>show parameter cursor_sharing
    NAME TYPE VALUE
    cursor_sharing string EXACT
    the reason seems from surface is shared_pool is not big enough, but we can see that sga is pretty big,
    so it maybe shared pool fragmentation problem.
    by the way, the instance down's resaon, is due to
    terminating instance due to error 4031
    question is here:
    1. what is the reasoan for instance shutdown?
    2. how to prevernt it happening again? do we need to run flush shared pool periodically, or cursor_sharing to simailar or force?
    thanks

    -- Display shared pool advice
    set lines 100
    set pages 999
    column c1 heading 'Pool |Size(M)'
    column c2 heading 'Size|Factor'
    column c3 heading 'Est|LC(M) '
    column c4 heading 'Est LC|Mem. Obj.'
    column c5 heading 'Est|Time|Saved|(sec)'
    column c6 heading 'Est|Parse|Saved|Factor'
    column c7 heading 'Est|Object Hits' format 999,999,999
    SELECT
    2 shared_pool_size_for_estimate c1,
    3 shared_pool_size_factor c2,
    4 estd_lc_size c3,
    5 estd_lc_memory_objects c4,
    6 estd_lc_time_saved c5,
    7 estd_lc_time_saved_factor c6,
    8 estd_lc_memory_object_hits c7
    9 FROM
    10 v$shared_pool_advice;
    Est Est
    Time Parse
    Pool Size Est Est LC Saved Saved Est
    Size(M) Factor LC(M) Mem. Obj. (sec) Factor Object Hits
    1088 .3736 326 22232 65966 .8958 4,995,890
    1392 .478 628 38639 68647 .9322 5,044,957
    1696 .5824 931 56089 70007 .9506 5,068,865
    2000 .6868 1234 73521 70497 .9573 5,084,797
    2304 .7912 1537 93244 70941 .9633 5,106,783
    2608 .8956 1826 114421 71955 .9771 5,140,729
    2912 1 2129 135390 73643 1 5,177,134
    3216 1.1044 2431 157697 75513 1.0254 5,202,416
    3520 1.2088 2735 179011 77204 1.0484 5,221,651
    3824 1.3132 3038 203097 78823 1.0703 5,234,965
    4128 1.4176 3341 221760 80193 1.0889 5,244,432
    4432 1.522 3610 244317 80910 1.0987 5,252,430
    4736 1.6264 3761 255231 81101 1.1013 5,256,343
    5040 1.7308 3896 269167 81125 1.1016 5,258,292
    5344 1.8352 3896 269167 81127 1.1016 5,259,026
    5648 1.9396 3896 269167 81128 1.1016 5,259,677
    5952 2.044 3896 269167 81129 1.1017 5,260,326
    SELECT
    f.pool
    , f.name
    , s.sgasize
    , f.bytes
    , ROUND(f.bytes/s.sgasize*100, 2) "% Free"
    FROM
    (SELECT SUM(bytes) sgasize, pool FROM v$sgastat GROUP BY pool) s
    , v$sgastat f
    WHERE
    f.name = 'free memory'
    AND f.pool = s.pool
    / 2 3 4 5 6 7 8 9 10 11 12 13
    Pool Name Allocated Free % Free
    shared pool free memory 3,053,469,832 257,316,432 8.43
    large pool free memory 218,103,808 217,027,808 99.51
    java pool free memory 218,103,808 218,103,808 100
    rem library.sql - lists the library cache
    prompt
    prompt =========================
    prompt LIBRARY CACHE MISS RATIO
    prompt =========================
    prompt (If > 1 then increase the shared_pool_size in init.ora)
    prompt
    column "LIBRARY CACHE MISS RATIO" format 99.9999
    column "executions" format 999,999,999
    column "Cache misses while executing" format 999,999,999
    select sum(pins) "executions", sum(reloads) "Cache misses while executing",
    (((sum(reloads)/sum(pins)))) "LIBRARY CACHE MISS RATIO"
    from v$librarycache;
    prompt
    prompt =========================
    prompt Library Cache Section
    prompt =========================
    prompt hit ratio should be > 70, and pin ratio > 70 ...
    prompt
    column "reloads" format 999,999,999
    select namespace, trunc(gethitratio * 100) "Hit ratio",
    trunc(pinhitratio * 100) "pin hit ratio", reloads "reloads"
    from v$librarycache;
    NAMESPACE Hit ratio pin hit ratio reloads
    SQL AREA 33 44 108,245
    TABLE/PROCEDURE 80 99 4,340
    BODY 93 99 11
    TRIGGER 72 96 0
    INDEX 43 60 22
    CLUSTER 95 97 3
    OBJECT 100 100 0
    PIPE 100 100 0
    JAVA SOURCE 100 100 0
    JAVA RESOURCE 100 100 0
    JAVA DATA 100 100 0
    select NAMESPACE, GETHITRATIO from v$librarycache;
    NAMESPACE GETHITRATIO
    SQL AREA .35270614
    TABLE/PROCEDURE .806300666
    BODY .939540508
    TRIGGER .727272727
    INDEX .432343234
    CLUSTER .956873315
    OBJECT 1
    PIPE 1
    JAVA SOURCE 1
    JAVA RESOURCE 1
    JAVA DATA 1
    ---I saw the hit ratio is really low...
    THANKS

  • PMON: terminating instance due to error 28

    Hi ,
    OS : AIX 5.3
    Oracle : 10.2.0.4
    Problem :
    Database instance crashed .
    Alert log shows :
    Tue Jun 26 13:21:18 2012
    Thread 1 advanced to log sequence 4097 (LGWR switch)
    Current log# 1 seq# 4097 mem# 0: /oracle/abcd/oradata1/redo/abcd_redo_g1m1.dbf
    Current log# 1 seq# 4097 mem# 1: /oracle/abcd/oradata2/redo/abcd_redo_g1m2.dbf
    Tue Jun 26 14:29:56 2012 ---> Instance terminated
    Errors in file /oracle/abcd/oratrace/bdump/abcd_pmon_2834484.trc:
    ORA-00028: your session has been killed
    Tue Jun 26 14:29:56 2012
    PMON: terminating instance due to error 28
    Termination issued to instance processes. Waiting for the processes to exit
    Instance terminated by PMON, pid = 2834484
    Tue Jun 26 15:09:00 2012 --> Instance started manually at this point
    Starting ORACLE instance (normal)
    Trace file shows :
    /oracle/abcd/oratrace/bdump/abcd_pmon_2834484.trc
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ORACLE_HOME = /oracle/product/10.2.0/ora10gr2
    System name: AIX
    Node name: a838dae0
    Release: 3
    Version: 5
    Machine: 00047961D600
    Instance name: abcd
    Redo thread mounted by this instance: 1
    Oracle process number: 2
    Unix process pid: 2834484, image: oracle@a838dae0 (PMON)
    *** 2012-06-26 14:29:56.830
    *** SERVICE NAME:(SYS$BACKGROUND) 2012-06-26 14:29:56.801
    *** SESSION ID:(225.1) 2012-06-26 14:29:56.801
    error 28 detected in background process
    ORA-00028: your session has been killed
    OS logs does not have any errors when the instance got terminated .
    I would like to know what is the cause for this error ? when such errors occurs ?

    @pavan , thanks for the advise . I shall work with Unix admin on how best we can trace it out if it occurs next time .
    However , I have one more question :
    I did a small test to crash the instance by killing the pmon process at OS level . When I did that only the following message got recorded in the alert log :
    Wed Jun 27 04:39:26 2012
    PSP0: terminating instance due to error 472 --> error code is 472
    Instance terminated by PSP0, pid = 4970
    But the issue I see in produciton db is something different , the alert log shows :
    ORA-00028: your session has been killed
    Tue Jun 26 14:29:56 2012
    PMON: terminating instance due to error 28 ----> error code is 28
    Termination issued to instance processes. Waiting for the processes to exit
    Instance terminated by PMON, pid = 2834484
    I have started to belive that the PMON was not killed from OS level . I dont think error ORA-00028 gets recorded when you kill pmon from OS level as I could not reproduce in my testing as well.
    Anyways , thanks for your help on this.

  • PMON: terminating instance due to error 476

    i met an error when the database was open,and then the database was down.
    i looked for the alert log and the correspoding trace file,there is some information in the two files.
    the content in the alert log are:
    PMON: terminating instance due to error 476
    Instance terminated by PMON, pid = 2999
    the content in the trace file are:
    /export/home/oracle/admin/orcl/bdump/orcl_pmon_2999.trc
    Oracle8i Enterprise Edition Release 8.1.6.0.0 - Production
    With the Partitioning option
    JServer Release 8.1.6.0.0 - Production
    ORACLE_HOME = /export/home/oracle
    System name: SunOS
    Node name: KFDB2
    Release: 5.7
    Version: Generic_106541-15
    Machine: sun4u
    Instance name: orcl
    Redo thread mounted by this instance: 1
    Oracle process number: 2
    Unix process pid: 2999, image: oracle@KFDB2 (PMON)
    *** 2003-03-10 11:14:12.217
    *** SESSION ID:(1.1) 2003-03-10 11:14:12.025
    error 476 detected in background process
    how can i resolve the problem.
    thanks

    This particular problem is because of continous write from memory(SGA) to HDD.
    If you are using MTS then disable it and see the results.
    I faced the same problem on compaq server with SCO Unix but we have RAID is enabled.
    As we disabled the RAID then the above error disappers.
    So, if you have RAID configured then disable it and see the results.
    Disable also the parallel and partion option.
    Regards
    Nikhil Wani
    Vadodara

  • PMON: terminating instance due to error 471. database down

    Linux ES 2.6.9-78.0.5.EL #1 Wed Sep 24 05:29:49 EDT 2008 i686 i686 i386 GNU/Linux
    oracle 10.2.4
    Intiall version is 10.2.0. we have same problem in old version of oracle 10g. yesterday I have upgarded into 10.2.4.
    still the database is down due the following error . Please let me know the issues
    ue Aug 25 19:16:28 2009
    Errors in file /opt/app/oracle/admin/Test/bdump/test_pmon_20000.trc:
    ORA-00471: Message 471 not found; No message file for product=RDBMS, facility=ORA
    Tue Aug 25 19:16:28 2009
    PMON: terminating instance due to error 471
    Instance terminated by PMON, pid = 20000
    Wed Aug 26 10:22:11 2009

    In the trace file
    4AE1A660 00000000 00000000 6361726F 0000656C
    4AE1A670 00000000 00000000 00000000 00000000 [................]
    4AE1A680 00000000 00000000 00000006 662D6C76
    4AE1A690 30396E69 742E6264 6F706972 2E746E69
    4AE1A6A0 2E6D6F63 00007561 00000000 00000000
    4AE1A6B0 00000000 00000000 00000000 00000000 [................]
    4AE1A6C0 00000000 00000000 00000000 0000001A [................]
    4AE1A6D0 4E4B4E55 004E574F 00000000 00000000 [UNKNOWN.........]
    4AE1A6E0 00000000 00000000 00000000 00000000 [................]
    4AE1A6F0 00000008 30303032 00000036 00000000 [....20006.......]
    4AE1A700 00000000 00000000 00000000 00000005 [................]
    4AE1A710 6361726F 7640656C 69662D6C 6430396E
    4AE1A720 72742E62 696F7069 632E746E 612E6D6F
    4AE1A730 44282075 29305742 00000000 00000000
    4AE1A740 00000028 00000002 00000000 00000000 [(...............]
    4AE1A750 00000000 00000000 00000000 00000000 [................]
    Repeat 8 times
    4AE1A7E0 00000000 00000000 00000000 00000200 [................]
    4AE1A7F0 00000000 00000000 00000000 00000000 [................]
    4AE1A800 4AF80EE4 4AE1ADC0 4AE1A248 00000000 [...J...JH..J....]
    4AE1A810 4A045AA4 00000000 00000000 00000000 [.Z.J............]
    4AE1A820 00000000 00000000 00000000 00000000 [................]
    4AE1A830 4AE1A830 4AE1A830 00B80000 00B30000 [0..J0..J........]
    4AE1A840 000450D1 00043DC5 016F9355 00000000 [.P...=..U.o.....]
    4AE1A850 00000000 00000000 00000000 00000000 [................]
    4AE1A860 00000000 00000814 00000000 00000088 [................]
    4AE1A870 00000000 00000814 00000000 00000000 [................]
    4AE1A880 00000000 00000000 00000000 00000000 [................]
    Repeat 3 times
    4AE1A8C0 FFFFFFB6 00000006 [........]
    error 471 detected in background process
    ORA-00471: Message 471 not found; No message file for product=RDBMS, facility=ORA
    Edited by: user8680248 on 25/08/2009 18:53

  • PMON  terminating instance due to error 472

    Hello
    i have a database that was has crashed with the following errors :
    oing block recovery for file 74 block 84379
    Block recovery from logseq 51144, block 137 to scn 27771463134
    Fri Apr 29 18:48:24 2011
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 51144 Reading mem 0
    Mem# 0 errs 0: /erp01/app/oracle/oradata/erp/redo02.log
    Mem# 1 errs 0: /erp01/app/oracle/oradata/erp/redo02b.log
    Block recovery completed at rba 51144.140.16, scn 6.2001659361
    Fri Apr 29 18:49:22 2011
    Errors in file /erp01/app/oracle/admin/erp/bdump/erp_pmon_5581.trc:
    ORA-00600: internal error code, arguments: [4193], [388], [407], [], [], [], [], []
    Fri Apr 29 18:49:22 2011
    Errors in file /erp01/app/oracle/admin/erp/bdump/erp_pmon_5581.trc:
    ORA-00600: internal error code, arguments: [4193], [388], [407], [], [], [], [], []
    Fri Apr 29 18:49:22 2011
    PMON: terminating instance due to error 472
    Instance terminated by PMON, pid = 5581
    This database had earlier on been affected by abrupt power shutdown.
    It was going on and off. But now its not opening and its showing the error above.
    Operating system = Solaris 10
    Database version = Release 10.2.0.2.0
    Please help

    ORA-00600/ORA-07445/ORA-03113 = Oracle bug => search on Metalink and/or call Oracle support

  • PMON: terminating instance due to error 600

    Hi all,
    Our instance was terminated by giving following message:
    PMON: terminating instance due to error 600
    OS: W2k sp4
    Part of alert log:
    Thu Sep 21 03:00:42 2006
    Errors in file d:\oracle\admin\ropprod\udump\ropprod_ora_3388.trc:
    ORA-00600: internal error code, arguments: [1115], [], [], [], [], [], [], []
    Thu Sep 21 03:00:43 2006
    Errors in file d:\oracle\admin\ropprod\udump\ropprod_ora_3388.trc:
    ORA-00600: internal error code, arguments: [1115], [], [], [], [], [], [], []
    ORA-00600: internal error code, arguments: [1115], [], [], [], [], [], [], []
    Thu Sep 21 03:00:43 2006
    Errors in file d:\oracle\admin\ropprod\udump\ropprod_ora_3388.trc:
    ORA-00600: internal error code, arguments: [1115], [], [], [], [], [], [], []
    ORA-00600: internal error code, arguments: [1115], [], [], [], [], [], [], []
    Thu Sep 21 03:00:44 2006
    Errors in file d:\oracle\admin\ropprod\udump\ropprod_ora_3388.trc:
    ORA-00603: ORACLE server session terminated by fatal error
    ORA-00600: internal error code, arguments: [1115], [], [], [], [], [], [], []
    ORA-00600: internal error code, arguments: [1115], [], [], [], [], [], [], []
    Thu Sep 21 03:00:44 2006
    Errors in file d:\oracle\admin\ropprod\bdump\ropprod_pmon_2692.trc:
    ORA-00600: internal error code, arguments: [1115], [], [], [], [], [], [], []
    Thu Sep 21 03:01:12 2006
    Errors in file d:\oracle\admin\ropprod\bdump\ropprod_pmon_2692.trc:
    ORA-00600: internal error code, arguments: [1115], [], [], [], [], [], [], []
    Thu Sep 21 03:01:12 2006
    PMON: terminating instance due to error 600
    Instance terminated by PMON, pid = 2692
    Part of 2692.trc:
    Dump file d:\oracle\admin\ropprod\bdump\ropprod_pmon_2692.trc
    Thu Sep 21 03:00:44 2006
    ORACLE V9.2.0.6.0 - Production vsnsta=0
    vsnsql=12 vsnxtr=3
    Windows 2000 Version 5.0 Service Pack 4, CPU type 586
    Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.6.0 - Production
    Windows 2000 Version 5.0 Service Pack 4, CPU type 586
    Instance name: ropprod
    Redo thread mounted by this instance: 1
    Oracle process number: 2
    Windows thread id: 2692, image: ORACLE.EXE
    *** 2006-09-21 03:00:44.367
    *** SESSION ID:(1.1) 2006-09-21 03:00:44.351
    KSSDCH: parent 27D8418C cur 27CE53D8 prev 27D8419C next 27CE53E0 own 00000000 link [27ce53e0,27ce53e0]
    SO: 27CE53D8, type: 216, owner: 00000000, flag: INIT/FLST/-/0x50
    *** 2006-09-21 03:00:44.367
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [1115], [], [], [], [], [], [], []
    I restarted the oracle instance and it`s working fine now but i don`t know why the instance was terminated and how I can avoid it in future.
    Pls,send your comments.
    Regards,Lukas

    Take a look at Metalink. Start with Note:137262.1 ORA-600[1115] SO cleanup. That document has links to several bugs and one might be what you are experiencing.

  • PMON: terminating instance due to error 601

    Under a heavy workload, Oracle crashes very quietly with only a few lines in the alert file:
    PMON: terminating instance due to error 601
    Instance terminated by PMON, pid = <pid>
    the only other message is a PMON message:
    *** 2000-08-10 13:35:15.329
    error 601 detected in background process
    Any tips?
    thanks,
    Will

    I've had the same problem. I went to dedicated servers (not using MTS) and the symptom has not re-occured. Oracle is aware of the problem and is working on it.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Will Gullickson ([email protected]):
    Under a heavy workload, Oracle crashes very quietly with only a few lines in the alert file:
    PMON: terminating instance due to error 601
    Instance terminated by PMON, pid = <pid>
    the only other message is a PMON message:
    *** 2000-08-10 13:35:15.329
    error 601 detected in background process
    Any tips?
    thanks,
    Will<HR></BLOCKQUOTE>
    null

Maybe you are looking for

  • How to configure a new third party sales document type?

    Hi SAP SD gurus, I am new to the SAP world, I need your help in configuring a new third party sales document type for a site. There are existing third party document types being used in the region, but the client wants an entirely new third party doc

  • PS CC won't download.

    I udated the App mnger and adobe asked me to remove AAMDetect plug-in, but it doesn't exist. Now What?

  • Error Occures while loading data from Source system to Target ODS

    Hi.. I started loading Records From source system to target ODS.while i running the job i got the following errors. Record 18211 :ERROR IN HOLIDAY_GET 20011114 00000000 Record 18212 :ERROR IN HOLIDAY_GET 20011114 00000000 sp Please help me in these f

  • What is impairment

    hi, please provide information for the below mentioned queries: 1. What is impairment? 2. What are the accounts involved in this transaction? 3. What are the steps involved in the process of impairment?

  • Tune Linked Server

    Dear Experts, Could you please list out possible things for performance tuning of SQL server linked server. Thanks in advance