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

Similar Messages

  • 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

  • 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

  • Whether  instance  gets  down  due  to insufficient  memory ?

    hi,
    11g R2 (Linux)
    Other  day  one  of  the  3  nodes  got  evicted  due  to  insufficient  memory
    Err  message  is 
    ORA-04031: unable to allocate 4136 bytes of shared memory ("shared pool","unknown object","sga heap(3,0)","gcs dynamic r")"
      "LMS0 (ospid: 8489): terminating the instance due to error 4031"
    Thanks

    Hi, Have you configured memory_target or memory_max_target? If so then it may supersede depending on values set. Please post all memory parameters set and based on that we can answer. Also let us know the OS since in Linux there is a concept of tempfs which also limits the maximum memory to be allocated. While in solaris there is concept of project, which limits max memory per oracle instance depending on OS user.
    Regards
    Tushar   

  • Just updated my RAM and now iMac shuts down "due to error" when in FCPX

    Hi there,
    So, I just purchased FCPX last week.  Edited one of my projects only to find that my RAM is overloaded and isn't allowing my computer to handle to workload.  Therefore I upgraded my RAM today to the max (16GB). Get my iMac home and up and running, everything looks good. I start up FINAL CUT PRO X, load my Library.....then boom.....shut down "due to error". THREE TIMES.  Below is my system and info on new RAM.  PLEASE HELP ASAP AS THIS IS TIME SENSITIVE!  I upgraded my RAM due to the suggestion that it would solve my slow rendering/choppy video playback in FCPX.
    Thanks. Ashley
    SYSTEM: 21.5 inch iMac OS X version 10.9.4 (Mavericks)
    PROCESSOR:   3.2 GHz Intel Core i3
    STORAGE: 364 GB (out of 999.99 GB)
    MEMORY:  16 GB (was 4 GB before upgrade)

    Your Computer looks to be a Late 2010 iMac, if so is the RAM spec as shown below?
    Maximum Memory
    16 GB
    Memory Slots
    4 - 204-pin PC3-10600 (1333 MHz) DDR3 SO-DIMM

  • IMac keeps shutting down due to error since Lion install

    Recently my iMac has been shutting down on it's own.  I have to unplug the power cord from the back in order to get it to turn on.  This has happened about once a week for the last month or two.  This last time I copied the error message.
    Interval Since Last Panic Report:  465727 sec
    Panics Since Last Report:          2
    Anonymous UUID:                    CD508005-6FF1-4227-886B-5E9252653063
    Thu Sep 29 22:21:40 2011
    panic(cpu 1 caller 0xffffff80002c268d): Kernel trap at 0xffffff7f80f9f9e0, type 0=divide error, registers:
    CR0: 0x0000000080010033, CR2: 0x0000000109ac4868, CR3: 0x000000002597e013, CR4: 0x00000000000206e0
    RAX: 0x0000000000000b35, RBX: 0xffffff8080685904, RCX: 0x0000000000000000, RDX: 0x0000000000000000
    RSP: 0xffffff807f58b140, RBP: 0xffffff807f58b140, RSI: 0xffffff7f810386b0, RDI: 0xffffff806b05c004
    R8:  0x0000000000000000, R9:  0x0000000000000000, R10: 0x00000000000000ff, R11: 0x0000000000000010
    R12: 0x0000000000000054, R13: 0x00000000000000ff, R14: 0x0000000000000015, R15: 0xffffff807f58b1e0
    RFL: 0x0000000000010246, RIP: 0xffffff7f80f9f9e0, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0x0000000109ac4868, Error code: 0x0000000000000000, Faulting CPU: 0x1
    Backtrace (CPU 1), Frame : Return Address
    0xffffff807f58ae00 : 0xffffff8000220702
    0xffffff807f58ae80 : 0xffffff80002c268d
    0xffffff807f58b020 : 0xffffff80002d7a3d
    0xffffff807f58b040 : 0xffffff7f80f9f9e0
    0xffffff807f58b140 : 0xffffff7f80f9fe58
    0xffffff807f58b260 : 0xffffff7f80f3f41a
    0xffffff807f58b2c0 : 0xffffff7f80fa24ad
    0xffffff807f58b3d0 : 0xffffff7f80fca62b
    0xffffff807f58b430 : 0xffffff7f80f71170
    0xffffff807f58b5d0 : 0xffffff7f80fcb726
    0xffffff807f58b630 : 0xffffff7f80fcb985
    0xffffff807f58b670 : 0xffffff7f80f599ee
    0xffffff807f58b680 : 0xffffff7f80f8abb5
    0xffffff807f58b6f0 : 0xffffff7f80f56879
    0xffffff807f58b730 : 0xffffff7f809f0255
    0xffffff807f58b770 : 0xffffff8000639d0e
    0xffffff807f58b7c0 : 0xffffff7f809f01d6
    0xffffff807f58b7e0 : 0xffffff7f809f0793
    0xffffff807f58b820 : 0xffffff7f809efd81
    0xffffff807f58b850 : 0xffffff7f80f159e9
    0xffffff807f58b8a0 : 0xffffff8000344b0b
    0xffffff807f58b9b0 : 0xffffff80003c3296
    0xffffff807f58bc20 : 0xffffff80003d4276
    0xffffff807f58bce0 : 0xffffff8000580404
    0xffffff807f58bdd0 : 0xffffff8000586856
    0xffffff807f58bec0 : 0xffffff8000586c39
    0xffffff807f58bf50 : 0xffffff80005ca88b
    0xffffff807f58bfb0 : 0xffffff80002d8383
          Kernel Extensions in backtrace:
             com.apple.iokit.IONetworkingFamily(2.0)[59A00F6B-3710-3E07-9921-70C45782FF8C]@0 xffffff7f809e1000->0xffffff7f80a09fff
             com.apple.iokit.IO80211Family(400.40)[78A58272-2170-3068-9C63-88301C99C406]@0xf fffff7f80eff000->0xffffff7f80f36fff
                dependency: com.apple.iokit.IONetworkingFamily(2.0)[59A00F6B-3710-3E07-9921-70C45782FF8C]@0 xffffff7f809e1000
             com.apple.driver.AirPort.Atheros40(500.55.5)[01000ACB-C064-3F42-820F-BDE2008267 25]@0xffffff7f80f37000->0xffffff7f81076fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)[95ABB490-3AB5-3D5E-9C21-67089A9AE6A1]@0xffff ff7f808f4000
                dependency: com.apple.iokit.IO80211Family(400.40)[78A58272-2170-3068-9C63-88301C99C406]@0xf fffff7f80eff000
                dependency: com.apple.iokit.IONetworkingFamily(2.0)[59A00F6B-3710-3E07-9921-70C45782FF8C]@0 xffffff7f809e1000
    BSD process name corresponding to current thread: mDNSResponder
    Mac OS version:
    11B26
    Kernel version:
    Darwin Kernel Version 11.1.0: Tue Jul 26 16:07:11 PDT 2011; root:xnu-1699.22.81~1/RELEASE_X86_64
    Kernel UUID: D52AAB80-B2BC-3C6E-BBEA-78BD28064998
    System model name: iMac11,2 (Mac-F2238AC8)
    System uptime in nanoseconds: 208512945199483
    last loaded kext at 186834703104972: com.apple.iokit.IOAVBFamily          1.0.0d22 (addr 0xffffff7f80864000, size 36864)
    last unloaded kext at 186894929237751: com.apple.iokit.IOAVBFamily          1.0.0d22 (addr 0xffffff7f80864000, size 36864)
    loaded kexts:
    com.symantec.kext.SymAPComm          11.2.2f3
    com.symantec.kext.fw          1.0.3f5
    com.symantec.kext.ips          3.2f8
    com.symantec.kext.pf          4.2.1f7
    com.symantec.kext.internetSecurity          1.3.2f5
    com.apple.filesystems.smbfs          1.7.0
    com.apple.driver.AppleHWSensor          1.9.4d0
    com.apple.driver.AppleBluetoothMultitouch          66.3
    com.apple.driver.AGPM          100.12.40
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDA          2.1.1f12
    com.apple.driver.AppleMikeyDriver          2.1.1f12
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.24
    com.apple.driver.AudioAUUC          1.59
    com.apple.kext.ATIFramebuffer          7.0.4
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.0
    com.apple.driver.AirPort.Atheros40          500.55.5
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0b2
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.1.9
    com.apple.ATIRadeonX2000          7.0.4
    com.apple.driver.AppleIRController          309
    com.apple.driver.AppleUSBCardReader          3.0.0
    com.apple.iokit.SCSITaskUserClient          3.0.0
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          32
    com.apple.driver.AppleFWOHCI          4.8.6
    com.apple.iokit.IOAHCIBlockStorage          2.0.0
    com.apple.driver.AppleUSBHub          4.4.0
    com.apple.iokit.AppleBCM5701Ethernet          3.0.6b9
    com.apple.driver.AppleEFINVRAM          1.5.0
    com.apple.driver.AppleAHCIPort          2.1.8
    com.apple.driver.AppleUSBEHCI          4.4.0
    com.apple.driver.AppleACPIButtons          1.4
    com.apple.driver.AppleRTC          1.4
    com.apple.driver.AppleHPET          1.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.4
    com.apple.driver.AppleAPIC          1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient          166.0.0
    com.apple.nke.applicationfirewall          3.0.30
    com.apple.security.quarantine          1
    com.apple.driver.AppleIntelCPUPowerManagement          166.0.0
    com.apple.driver.AppleBluetoothHIDKeyboard          152.3
    com.apple.driver.AppleMultitouchDriver          220.62
    com.apple.driver.IOBluetoothHIDDriver          2.5f17
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.1.1f12
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IOSurface          80.0
    com.apple.iokit.IOFireWireIP          2.2.3
    com.apple.iokit.IOBluetoothSerialManager          2.5f17
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IOAudioFamily          1.8.3fc11
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleHDAController          2.1.1f12
    com.apple.iokit.IOHDAFamily          2.1.1f12
    com.apple.iokit.IO80211Family          400.40
    com.apple.driver.AppleSMC          3.1.1d2
    com.apple.driver.IOPlatformPluginFamily          4.7.0b2
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.3
    com.apple.iokit.IONDRVSupport          2.3
    com.apple.kext.ATI4600Controller          7.0.4
    com.apple.kext.ATISupport          7.0.4
    com.apple.iokit.IOGraphicsFamily          2.3
    com.apple.driver.AppleUSBHIDKeyboard          152.3
    com.apple.driver.AppleHIDKeyboard          152.3
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.5f17
    com.apple.driver.AppleUSBBluetoothHCIController          2.5f17
    com.apple.iokit.IOBluetoothFamily          2.5f17
    com.apple.iokit.IOUSBHIDDriver          4.4.0
    com.apple.iokit.IOUSBMassStorageClass          3.0.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.0.0
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.2.0
    com.apple.driver.AppleUSBMergeNub          4.4.0
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.0.0
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.7
    com.apple.driver.XsanFilter          403
    com.apple.iokit.IOFireWireFamily          4.4.3
    com.apple.iokit.IOAHCISerialATAPI          2.0.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.0.0
    com.apple.iokit.IOUSBUserClient          4.4.0
    com.apple.iokit.IOEthernetAVBController          1.0.0d5
    com.apple.iokit.IONetworkingFamily          2.0
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOUSBFamily          4.4.0
    com.apple.driver.AppleEFIRuntime          1.5.0
    com.apple.iokit.IOHIDFamily          1.7.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          165
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          326
    com.apple.iokit.IOStorageFamily          1.7
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.4
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.4
    Model: iMac11,2, BootROM IM112.0057.B00, 2 processors, Intel Core i3, 3.06 GHz, 4 GB, SMC 1.64f5
    Graphics: ATI Radeon HD 4670, ATI Radeon HD 4670, PCIe, 256 MB
    Memory Module: BANK 0/DIMM1, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353637334648302D4348392020
    Memory Module: BANK 1/DIMM1, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353637334648302D4348392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 4.0.55.4-P2P
    Bluetooth: Version 2.5.0f17, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: WDC WD5000AAKS-40V6A0, 500.11 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Keyboard Hub, apple_vendor_id, 0x1006, 0xfa140000 / 5
    USB Device: Apple Keyboard, apple_vendor_id, 0x0220, 0xfa142000 / 7
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa120000 / 4
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 6
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 4
    USB Device: Built-in iSight, apple_vendor_id, 0x8502, 0xfd110000 / 3
    FireWire Device: GoFlex Desk Mac, Seagate, 800mbit_speed
    If anyone can help me with this I would appreciate it. 
    I have also had issues with the drives in the computer running fast for no reason which in turn causes the fan to blow extremely loud.  The only fix I have found for turning the fan off is to put the computer to sleep, which then makes the drives go back to normal running speeds.  When the fan starts blowing loudly, the drives are running upwards of 4000rpm.  When I put the computer to sleep and wake it up again, the drives are running at the normal speeds of around 1000rpm.  Please help.

    I got another panic report last night after I uninstalled the antivirus software the other day.  This is the error message that I got.
    Interval Since Last Panic Report:  425727 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    CD508005-6FF1-4227-886B-5E9252653063
    Wed Oct  5 07:47:24 2011
    panic(cpu 2 caller 0xffffff80002c268d): Kernel trap at 0xffffff7f80f089e0, type 0=divide error, registers:
    CR0: 0x0000000080010033, CR2: 0x0000000101405000, CR3: 0x0000000071a0504d, CR4: 0x00000000000206e0
    RAX: 0x00000000000005e5, RBX: 0xffffff8080423db4, RCX: 0x0000000000000000, RDX: 0x0000000000000000
    RSP: 0xffffff807f662ff0, RBP: 0xffffff807f662ff0, RSI: 0xffffff7f80fa16b0, RDI: 0xffffff806afcf004
    R8:  0x0000000000000000, R9:  0x0000000000000000, R10: 0x00000000000000ff, R11: 0x0000000000000010
    R12: 0x0000000000000054, R13: 0x00000000000000ff, R14: 0x0000000000000015, R15: 0xffffff807f663090
    RFL: 0x0000000000010246, RIP: 0xffffff7f80f089e0, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0x0000000101405000, Error code: 0x0000000000000000, Faulting CPU: 0x2
    Backtrace (CPU 2), Frame : Return Address
    0xffffff807f662cb0 : 0xffffff8000220702
    0xffffff807f662d30 : 0xffffff80002c268d
    0xffffff807f662ed0 : 0xffffff80002d7a3d
    0xffffff807f662ef0 : 0xffffff7f80f089e0
    0xffffff807f662ff0 : 0xffffff7f80f08e58
    0xffffff807f663110 : 0xffffff7f80ea841a
    0xffffff807f663170 : 0xffffff7f80f0b4ad
    0xffffff807f663280 : 0xffffff7f80f3362b
    0xffffff807f6632e0 : 0xffffff7f80eda170
    0xffffff807f663480 : 0xffffff7f80f34726
    0xffffff807f6634e0 : 0xffffff7f80f34985
    0xffffff807f663520 : 0xffffff7f80ec29ee
    0xffffff807f663530 : 0xffffff7f80ef3bb5
    0xffffff807f6635a0 : 0xffffff7f80ebf879
    0xffffff807f6635e0 : 0xffffff7f8095d255
    0xffffff807f663620 : 0xffffff8000639d0e
    0xffffff807f663670 : 0xffffff7f8095d1d6
    0xffffff807f663690 : 0xffffff7f8095d793
    0xffffff807f6636d0 : 0xffffff7f8095cd81
    0xffffff807f663700 : 0xffffff7f80e7e9e9
    0xffffff807f663750 : 0xffffff8000344b0b
    0xffffff807f663860 : 0xffffff80003c333d
    0xffffff807f663ad0 : 0xffffff80003caee9
    0xffffff807f663b70 : 0xffffff80003cb3de
    0xffffff807f663d60 : 0xffffff8000580404
    0xffffff807f663e50 : 0xffffff8000563733
    0xffffff807f663e80 : 0xffffff800056142f
    0xffffff807f663f10 : 0xffffff8000561582
    0xffffff807f663f60 : 0xffffff80005ca258
    0xffffff807f663fb0 : 0xffffff80002d7f59
          Kernel Extensions in backtrace:
             com.apple.iokit.IONetworkingFamily(2.0)[59A00F6B-3710-3E07-9921-70C45782FF8C]@0 xffffff7f8094e000->0xffffff7f80976fff
             com.apple.iokit.IO80211Family(400.40)[78A58272-2170-3068-9C63-88301C99C406]@0xf fffff7f80e68000->0xffffff7f80e9ffff
                dependency: com.apple.iokit.IONetworkingFamily(2.0)[59A00F6B-3710-3E07-9921-70C45782FF8C]@0 xffffff7f8094e000
             com.apple.driver.AirPort.Atheros40(500.55.5)[01000ACB-C064-3F42-820F-BDE2008267 25]@0xffffff7f80ea0000->0xffffff7f80fdffff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)[95ABB490-3AB5-3D5E-9C21-67089A9AE6A1]@0xffff ff7f80861000
                dependency: com.apple.iokit.IO80211Family(400.40)[78A58272-2170-3068-9C63-88301C99C406]@0xf fffff7f80e68000
                dependency: com.apple.iokit.IONetworkingFamily(2.0)[59A00F6B-3710-3E07-9921-70C45782FF8C]@0 xffffff7f8094e000
    BSD process name corresponding to current thread: Audiogalaxy Help
    Mac OS version:
    11B26
    Kernel version:
    Darwin Kernel Version 11.1.0: Tue Jul 26 16:07:11 PDT 2011; root:xnu-1699.22.81~1/RELEASE_X86_64
    Kernel UUID: D52AAB80-B2BC-3C6E-BBEA-78BD28064998
    System model name: iMac11,2 (Mac-F2238AC8)
    System uptime in nanoseconds: 416590509706344
    last loaded kext at 387321841939230: com.apple.filesystems.cddafs          2.5.0 (addr 0xffffff7f807ef000, size 24576)
    last unloaded kext at 388659936046732: com.apple.filesystems.cddafs          2.5.0 (addr 0xffffff7f807ef000, size 20480)
    loaded kexts:
    com.apple.driver.AppleBluetoothMultitouch          66.3
    com.apple.filesystems.smbfs          1.7.0
    com.apple.driver.AppleHWSensor          1.9.4d0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.24
    com.apple.kext.ATIFramebuffer          7.0.4
    com.apple.ATIRadeonX2000          7.0.4
    com.apple.driver.AppleMikeyDriver          2.1.1f12
    com.apple.driver.AppleHDA          2.1.1f12
    com.apple.driver.AGPM          100.12.40
    com.apple.driver.AudioAUUC          1.59
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.0
    com.apple.driver.AirPort.Atheros40          500.55.5
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0b2
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.1.9
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleIRController          309
    com.apple.driver.AppleUSBCardReader          3.0.0
    com.apple.iokit.SCSITaskUserClient          3.0.0
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          32
    com.apple.driver.AppleFWOHCI          4.8.6
    com.apple.driver.AppleUSBHub          4.4.0
    com.apple.iokit.AppleBCM5701Ethernet          3.0.6b9
    com.apple.iokit.IOAHCIBlockStorage          2.0.0
    com.apple.driver.AppleEFINVRAM          1.5.0
    com.apple.driver.AppleAHCIPort          2.1.8
    com.apple.driver.AppleUSBEHCI          4.4.0
    com.apple.driver.AppleACPIButtons          1.4
    com.apple.driver.AppleRTC          1.4
    com.apple.driver.AppleHPET          1.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.4
    com.apple.driver.AppleAPIC          1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient          166.0.0
    com.apple.nke.applicationfirewall          3.0.30
    com.apple.security.quarantine          1
    com.apple.driver.AppleIntelCPUPowerManagement          166.0.0
    com.apple.driver.AppleMultitouchDriver          220.62
    com.apple.driver.AppleBluetoothHIDKeyboard          152.3
    com.apple.driver.IOBluetoothHIDDriver          2.5f17
    com.apple.iokit.IOBluetoothSerialManager          2.5f17
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.driver.DspFuncLib          2.1.1f12
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.kext.ATI4600Controller          7.0.4
    com.apple.kext.ATISupport          7.0.4
    com.apple.iokit.IOSurface          80.0
    com.apple.iokit.IOAudioFamily          1.8.3fc11
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.iokit.IOFireWireIP          2.2.3
    com.apple.driver.AppleHDAController          2.1.1f12
    com.apple.iokit.IOHDAFamily          2.1.1f12
    com.apple.iokit.IO80211Family          400.40
    com.apple.driver.AppleSMC          3.1.1d2
    com.apple.driver.IOPlatformPluginFamily          4.7.0b2
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.3
    com.apple.iokit.IONDRVSupport          2.3
    com.apple.iokit.IOGraphicsFamily          2.3
    com.apple.kext.triggers          1.0
    com.apple.driver.AppleUSBHIDKeyboard          152.3
    com.apple.driver.AppleHIDKeyboard          152.3
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.5f17
    com.apple.driver.AppleUSBBluetoothHCIController          2.5f17
    com.apple.iokit.IOBluetoothFamily          2.5f17
    com.apple.iokit.IOUSBHIDDriver          4.4.0
    com.apple.iokit.IOUSBMassStorageClass          3.0.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.0.0
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.2.0
    com.apple.driver.AppleUSBMergeNub          4.4.0
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.0.0
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.7
    com.apple.driver.XsanFilter          403
    com.apple.iokit.IOAHCISerialATAPI          2.0.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.0.0
    com.apple.iokit.IOFireWireFamily          4.4.3
    com.apple.iokit.IOUSBUserClient          4.4.0
    com.apple.iokit.IOEthernetAVBController          1.0.0d5
    com.apple.iokit.IONetworkingFamily          2.0
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOUSBFamily          4.4.0
    com.apple.driver.AppleEFIRuntime          1.5.0
    com.apple.iokit.IOHIDFamily          1.7.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          165
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          326
    com.apple.iokit.IOStorageFamily          1.7
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.4
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.4
    I would appreciate any help

  • USER: terminating instance due to error 472 (Oracle 10g)

    Hi folks,
    We come across a problem that our instance was down suddenly. When checking with the alert log file, it shows that the instance was terminated due to error 472. Did you come across such situation before? Any suggestions would be welcomed.
    Following are some information about our Oracle and the log file, trace file.
    Oracle Database 10g Release 10.2.0.2.0 - Production
    ORACLE_HOME = /app/oracle/lmes
    System name: Linux
    Node name: lmes-oracle2.ust.hk
    Release: 2.4.21-32.ELsmp
    Version: #1 SMP Fri Apr 15 21:17:59 EDT 2005
    Machine: i686
    Alert Log File
    Fri Feb 23 09:11:07 2007
    Shutting down archive processes
    Fri Feb 23 09:11:12 2007
    ARCH shutting down
    ARC2: Archival stopped
    Fri Feb 23 15:16:09 2007
    The value (30) of MAXTRANS parameter ignored.
    kupprdp: master process DM00 started with pid=32, OS id=1072
    to execute - SYS.KUPM$MCP.MAIN('SYS_EXPORT_SCHEMA_01', 'SYSTEM', 'KUPC$C_1_20070223151610', 'KUPC$S_1_20070223151610', 0);
    kupprdp: worker process DW01 started with worker id=1, pid=33, OS id=1077
    to execute - SYS.KUPW$WORKER.MAIN('SYS_EXPORT_SCHEMA_01', 'SYSTEM');
    Fri Feb 23 15:16:28 2007
    Thread 1 advanced to log sequence 1309
    Current log# 3 seq# 1309 mem# 0: /app/oracle/oradata/elop/redo03.log
    Fri Feb 23 15:20:29 2007
    The value (30) of MAXTRANS parameter ignored.
    kupprdp: master process DM00 started with pid=32, OS id=1526
    to execute - SYS.KUPM$MCP.MAIN('SYS_EXPORT_SCHEMA_01', 'SYSTEM', 'KUPC$C_1_20070223152029', 'KUPC$S_1_20070223152029', 0);
    kupprdp: worker process DW01 started with worker id=1, pid=33, OS id=1528
    to execute - SYS.KUPW$WORKER.MAIN('SYS_EXPORT_SCHEMA_01', 'SYSTEM');
    Fri Feb 23 22:15:35 2007
    Thread 1 advanced to log sequence 1310
    Current log# 1 seq# 1310 mem# 0: /app/oracle/oradata/elop/redo01.log
    Fri Feb 23 23:04:10 2007
    USER: terminating instance due to error 472
    Instance terminated by USER, pid = 7779
    Trace File - elop_lgwr_2312.trc
    /app/oracle/admin/elop/bdump/elop_lgwr_2312.trc
    Oracle Database 10g Release 10.2.0.2.0 - Production
    ORACLE_HOME = /app/oracle/lmes
    System name: Linux
    Node name: lmes-oracle2.ust.hk
    Release: 2.4.21-32.ELsmp
    Version: #1 SMP Fri Apr 15 21:17:59 EDT 2005
    Machine: i686
    Instance name: elop
    Redo thread mounted by this instance: 1
    Oracle process number: 6
    Unix process pid: 2312, image: [email protected] (LGWR)
    *** SERVICE NAME:() 2007-02-23 09:10:07.372
    *** SESSION ID:(331.1) 2007-02-23 09:10:07.372
    LGWR: Archivelog for thread 1 sequence 1308 will NOT be compressed
    tkcrrsarc: (WARN) Failed to find ARCH for message (message:0x1)
    tkcrrpa: (WARN) Failed initial attempt to send ARCH message (message:0x1)
    Maximum redo generation record size = 156160 bytes
    Maximum redo generation change vector size = 150672 bytes
    tkcrrsarc: (WARN) Failed to find ARCH for message (message:0x10)
    tkcrrpa: (WARN) Failed initial attempt to send ARCH message (message:0x10)
    *** 2007-02-23 15:16:27.116
    LGWR: Archivelog for thread 1 sequence 1309 will NOT be compressed
    *** 2007-02-23 22:15:35.383
    LGWR: Archivelog for thread 1 sequence 1310 will NOT be compressed
    Trace File - elop_ora_2336.trc
    /app/oracle/admin/elop/udump/elop_ora_2336.trc
    Oracle Database 10g Release 10.2.0.2.0 - Production
    ORACLE_HOME = /app/oracle/lmes
    System name: Linux
    Node name: lmes-oracle2.ust.hk
    Release: 2.4.21-32.ELsmp
    Version: #1 SMP Fri Apr 15 21:17:59 EDT 2005
    Machine: i686
    Instance name: elop
    Redo thread mounted by this instance: 1
    Oracle process number: 15
    Unix process pid: 2336, image: [email protected]
    *** SERVICE NAME:() 2007-02-23 09:10:05.988
    *** SESSION ID:(324.3) 2007-02-23 09:10:05.988
    Thread 1 checkpoint: logseq 1307, block 2, scn 27684035
    cache-low rba: logseq 1307, block 30724
    on-disk rba: logseq 1307, block 33205, scn 27699991
    start recovery at logseq 1307, block 30724, scn 0
    ----- Redo read statistics for thread 1 -----
    Read rate (ASYNC): 1240Kb in 0.03s => 40.38 Mb/sec
    Total physical reads: 4096Kb
    Longest record: 21Kb, moves: 0/1975 (0%)
    Change moves: 1/24 (4%), moved: 0Mb
    Longest LWN: 285Kb, moves: 0/245 (0%), moved: 0Mb
    Last redo scn: 0x0000.01a6ab16 (27699990)
    ----- Recovery Hash Table Statistics ---------
    Hash table buckets = 32768
    Longest hash chain = 2
    Average hash chain = 346/345 = 1.0
    Max compares per lookup = 1
    Avg compares per lookup = 4783/5281 = 0.9
    *** 2007-02-23 09:10:06.132
    KCRA: start recovery claims for 346 data blocks
    *** 2007-02-23 09:10:07.153
    KCRA: blocks processed = 346/346, claimed = 346, eliminated = 0
    *** 2007-02-23 09:10:07.154
    Recovery of Online Redo Log: Thread 1 Group 1 Seq 1307 Reading mem 0
    ----- Recovery Hash Table Statistics ---------
    Hash table buckets = 32768
    Longest hash chain = 2
    Average hash chain = 346/345 = 1.0
    Max compares per lookup = 2
    Avg compares per lookup = 3424/5126 = 0.7
    tkcrrsarc: (WARN) Failed to find ARCH for message (message:0x1)
    tkcrrpa: (WARN) Failed initial attempt to send ARCH message (message:0x1)
    Error in executing triggers on database startup
    *** 2007-02-23 09:10:11.557
    ksedmp: internal or fatal error
    ORA-00604: error occurred at recursive SQL level 1
    ORA-12663: Services required by client not available on the server
    ORA-36961: Oracle OLAP is not available.
    ORA-06512: at "SYS.OLAPIHISTORYRETENTION", line 1
    ORA-06512: at line 15
    Thanks & Regards,
    Liona

    Hi,
    I have the same error:
    I have gridcontrol 10gR3 installed on VM / Linux 4 AS box. This is second time down time:
    finally I found the DB tiers is down.
    I have the following message:
    Private_strands 18 at log switch
    Thread 1 advanced to log sequence 215
    Current log# 2 seq# 215 mem# 0: /u02/ora/gridcontrol10g/oradata/emrep/redo02.log
    Thu Apr 19 14:30:33 2007
    Private_strands 18 at log switch
    Thread 1 advanced to log sequence 216
    Current log# 3 seq# 216 mem# 0: /u02/ora/gridcontrol10g/oradata/emrep/redo03.log
    Thu Apr 19 15:42:34 2007
    Private_strands 18 at log switch
    Thread 1 advanced to log sequence 217
    Current log# 4 seq# 217 mem# 0: /u02/ora/gridcontrol10g/oradata/emrep/redo04.log
    Thu Apr 19 16:52:05 2007
    LGWR: terminating instance due to error 472
    Instance terminated by LGWR, pid = 26049
    Thu Apr 19 17:27:08 2007
    I have no idea why this happen. is it because DB is ona VM machine?
    I remember one time whe I took a snapshot on VM server, grid control services are down for a moment, 4 minutes, WebCache seemed cleaned, this page is gone, after 3 minutes, it comes back.
    Anyone has the same issue, please share your experience.
    Thanks a lot,
    Hank
    Message was edited by:
    Hank@AHM

  • How send mail when oracle instance went down

    Hi All,
    Please help me to configure email set in oracle standard edition so that it sends email whenever database /instance went down.
    Thanks in advance
    sankar

    user12994238 wrote:
    Many Thanks,
    Need a small clarification in the normal scenario it works, if shutdown the server without shutdown the database we not receiving the alert.
    is there any way i can configure alert mail for the instance shutdown (database is up and oracle instance is down) due to some unexpected reason.
    Thanks
    sankar"database is up and oracle instance is down"
    A very interesting concept. Given that a database is just the collection of files that are kept transactionally consistent, and the instance is the memory and processes that manage those files, could you explain what is meant by "database is up and oracle instance is down". If the instance is up it may (or may not, depending on its state) have the database (files) open. If the instance is not up, then the database is ???

  • 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 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

  • 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

  • Oracle went down due to the errors:ORA-00206,ORA-00202,ORA-27072,OSD-04008.

    I have an oracle testing instance on Windows NT. It went down every several months due to the same errors. The only difference is the control file number in the error message for every time. I fixed it by restarting the oracle service each time. Below is the error session in the alert log:
    Sat Jul 01 16:57:12 2006
    Errors in file D:\App\Oracle\admin\intrtest\bdump\intrtestCKPT.TRC:
    ORA-00206: error in writing (block 3, # blocks 1) of controlfile
    ORA-00202: controlfile: 'D:\APP\ORACLE\ORADATA\INTRTEST\CONTROL03.CTL'
    ORA-27072: skgfdisp: 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.
    Sat Jul 01 16:57:12 2006
    CKPT: terminating instance due to error 221
    Instance terminated by CKPT, pid = 368
    Any idea or suggestion?
    Thanks
    B.

    Hi friends,
    I am also facing the same error:
    ORA-00345: Message 345 not found; No message file for product=RDBMS, facility=ORA; arguments: [45004] [2]
    ORA-00312: Message 312 not found; No message file for product=RDBMS, facility=ORA; arguments: [1] [1] [E:\ORADATA\IFSL\REDO011.LOG]
    ORA-27072: Message 27072 not found; No message file for product=RDBMS, facility=ORA
    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.
    due to this, our database goes down, and it was currepted my Redo file as well. We have taken a Third party backup using named "Symentic". nybody have the idea, how can I avoid this error in future.
    Regards,
    Khushal S. Kulkarni
    [email protected]

  • 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;

  • 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

  • Database Crash - LGWR: terminating instance due to error 227

    Hi,
    We´re having a problem with our database. The server reboots abnormally and the database shutdown abort, when we bring online the machine the database didn´t open.
    Analyzing the logs, we found a corrupt problem. see the alert file:
    Corrupt block relative dba: 0x00000003 (file 0, block 3)
    Completely zero block found during controlfile block read
    LGWR: terminating instance due to error 227
    Instance terminated by LGWR, pid = 2080
    Dump file E:\ORACLE\PDS\bdump\pdsALRT.LOG
    So ... we try to starts the database and he didn´t mount, we only startup nomount. see the log above:
    Oracle Server Manager Release 3.1.7.0.0 - Production
    Copyright (c) 1997, 1999, Oracle Corporation. All Rights Reserved.
    Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
    JServer Release 8.1.7.0.0 - Production
    SVRMGR> connect internal
    Password:
    Connected.
    SVRMGR> startup nomount
    ORACLE instance started.
    Total System Global Area 633632796 bytes
    Fixed Size 75804 bytes
    Variable Size 167411712 bytes
    Database Buffers 466067456 bytes
    Redo Buffers 77824 bytes
    SVRMGR> alter database mount;
    alter database mount
    ORA-03113: end-of-file on communication channel
    SVRMGR>
    We doesn´t mount the database, so we can´t do a recovery.
    Anybody knows the resolution of this problem ??
    Regards,
    Eduardo

    We can´t do a recover because database is not mounted.
    We don´t have a backup of the controlfile and didn´t make the "alter database backup controlfile to trace"
    Thanks,
    Eduardo

Maybe you are looking for