Help in dump

hi,
i do this select and when i have in range table (pro_tab) lot of recoreds 
above 1000 i have dump .
how can i avoid that?
SELECT  dimybproject COUNT(*) AS cnt
  FROM /bic/0czempl
  INTO CORRESPONDING FIELDS OF TABLE it_em
  WHERE dim0calmonth GE res_per
  AND   dim0calmonth LE st_date
  AND  dimybproject IN pro_tab
  GROUP BY dimybproject.
Regards

Hi,
Its better to debug the code. Put a breakpoint at the select statement and check.
See if u can give any other conditions for the selection criteria.
According to my knowledge there wont be dumps for jus 1000 records. when we had this kind of situation the records were crossing 750000 or so entries. There were some select queries where in the condition had not been mentioned accordingly..so corrected those mistakes n it was all fine.
Hope this small piece of info helped u....
Regards,
Ramya

Similar Messages

  • Help with dumping to DV and losing audio

    I'm using FCP5 and I'm trying to dump my video to DV so I can show it soon. When I play back the DV tape there is no audio. I've tried 2 cams and it's not that, so somehow I've messed up a setting that sends the right audio to the DV. Can someone pls help me?
    Thanks
    Mitch

    Thanks for the idea, but unfortunately that's not it. Let me do a better job of describing the problem.
    When I am capturing video I get this message after I Esc to stop the capture that says that the video and audio don't sync and it could cause playback issues. How do I get rid of this? I'm using my powerbook and a sony handycam via firewire. I have everything set at DV NTSC 48. The audio setting say Default but I can only choose that, Built-In Audio or Firewire DV. SHould this be set at Firewire DV?
    After I finished my video I tried to dump it back to DV tape to play it live through my camera. Is this the best way to do it? After I dumped it I found that all of the audio was gone. Nothing. I exported to Qucktime movie and found that my music had made it by my voice overs had not. Does this have something to do with the tabs next to the A1 and A2 down on the timeline? If so how do I get it to accept more audio tracks?
    FYI when I play it through my laptop speakers I can hear everything. When I try to play the audio through a PA (last ditch effort to go on with the show) the voice overs are gone.
    I would really appreciate any help that you could provide. I know I'm asking a lot. Thanks in advance.
    Mitch

  • Help with Dump files from other server.

    Hello!
    I'm having a problem with reading Dump files. The issue is this:
    I'm working with a great number of SQL Servers installed in a big number of virtual/physical servers. The problem is that I can't analyse (neither with WinDg or Visual Studio) the .mdmp files out of the server that is having the issue.
    Is there anyway that I could read the SQL Server dump files out of the server (It doesn't matter if it is in my Computer or another server)? Because it always shows an error of compatability with sqlservr.exe
    Also is there any other tool that could help me to read sql server dump files?
    Thank you very much :)

    Hello,
    I would suggest you raise a case with Microsoft for accurate analysis of the dump.I would strongly recommend it .If you still want to proceed use below link
    http://blogs.msdn.com/b/psssql/archive/2012/03/15/intro-to-debugging-a-memory-dump.aspx
    As a fact by applying latest service pack you have chance to subside these Dumps
    Hope this helps
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • F4 help giving dump in spanish

    hi,
    i have used F4 help  in alv using oops which is working fine for english, but when i logon  through spanish below mentioned method is throwing dump :
    CALL METHOD f4_alv->set_table_for_first_display 
      EXPORTING                                     
        is_layout       = ls_layout                 
      CHANGING                                      
        it_fieldcatalog = fieldcatalog              
        it_outtab       = f4_itab.  
    please help!

    hi,
    its giving error in spanish
    *bold *
    Feldsymbol ist noch nicht zugewiesen.
    Column per Fieldcat Entry                                                              
          loop at it_fcat_local assigning <ls_fcat>.                                         
            clear: ls_lvc_data-href_hndl,                                                    
                   ls_lvc_data-drdn_hndl,                                                    
                   ls_lvc_data-style,                                                        
                   ls_lvc_data-style2,                                                       
                   ls_lvc_data-style3,                                                       
                   ls_lvc_data-style4,                                                       
                   ls_lvc_data-maxlen.                                                                               
    clear: lt_color_lvc, lt_color_slis.                                                                               
    add 1 to ls_lvc_data-col_pos.                                                                               
    if not <ls_fcat>-indx_field is initial.                                          
              assign component <ls_fcat>-indx_field                                          
                               of structure <ls_data> to <l_field_value>.                    
            else.                                                                               
    assign component <ls_fcat>-fieldname                                           
                               of structure <ls_data> to <l_field_value>.                    
            endif.                                                                               
    >>>>>     macro_cell_data_get                                                              
              <ls_fcat>                                                                               
    <ls_data>                                                                               
    <l_field_value>                                                                
              ls_lvc_data-value.

  • Explicit Search Helps Short-Dump in Editable ALV with included structure

    I have an editable ALV grid defined as follows:
      TYPES: BEGIN OF gs_outtab200.
        TYPES: row_indx(4)      TYPE n.
        TYPES: multipurp        TYPE c.
        INCLUDE structure zxrfwc_test.
      TYPES: end of gs_outtab200.
      DATA:
        gt_outtab200             TYPE TABLE OF gs_outtab200,
        wa_outtab200             TYPE gs_outtab200.
    The included structure zxrfwc_test has a component (field) which is defined with a data element that has an explicit search helps associated with it.
    I know that this search help is working properly because it works fine in the program's selection screen.
    But when I invoke the search help from within a column of the ALV itself, I get a short dump with a "GETWA_NOT_ASSIGNED" error.
    I have done plenty of editable ALVs with search helps defined on the data elements and never encountered this problem. 
    Am I hitting this problem because the zxrfwc_test structure is defined within the
    gs_outtab200 structure ??
    If not, what is causing this problem.  (Please note that I have set  ls_fcat-F4AVAILABL = 'X' in the fieldcat routine - this doesn't seem to help at all.)
    Please advise!!!!
    I'm really stuck on this one because it's always worked before when I'm not dealing with a dictionary structure that's included within a larger ALV structure.
    Thanks.

    Hi,
    How you are creating your field catalog?
    Try to create a field catalog in the following way giving reference to your structure. is it possible for you create a DDIC structure as same as
    TYPES: BEGIN OF gs_outtab200.
        TYPES: row_indx(4)      TYPE n.
        TYPES: multipurp        TYPE c.
        INCLUDE structure zxrfwc_test.
      TYPES: end of gs_outtab200.
    * Form f_generate_fieldcatalog                                         *
    * Form generate the field catalog table                                *
    form f_generate_fieldcatalog.
    * Private variable
      data : v_structure like dd02l-tabname.   " Table Name
      v_structure = c_yatt_alv.                      " Structure Name
    * Build the fieldcat according to DDIC structure YATT_ALV:
      call function 'LVC_FIELDCATALOG_MERGE'
        exporting
          i_structure_name       = v_structure
          i_client_never_display = c_x
        changing
          ct_fieldcat            = i_fieldcat[].
    endform.                                 " F_generate_fieldcatalog

  • Help in Dump For Select

    Hi,
    i do select for maybe 3,971,953 records in Prod
    and i have dump  in Qa And Dev i have less records so i dont have any dump,
    this is my select:
    SELECT *
    FROM catsdb
    INTO CORRESPONDING FIELDS OF TABLE c_tab
    WHERE workdate GE re_date.
    i reward
    this is the erorr :
    What happened?
        The current program had to be terminated because of an
        error when installing the R/3 System.
        The program had already requested 271435216 bytes from the operating
        system with 'malloc' when the operating system reported after a
        further memory request that there was no more memory space
        available.
    Make a note of the actions and input which caused the error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer
    termination messages, especially those beyond their normal deletion
    date.
    Set the system profile parameters
    - abap/heap_area_dia
    - abap/heap_area_nondia
    to a maximum of 271435216. Then reduce the value by 10.000.000 to be on the
    safe side.
    Then restart the SAP System.
    abap/heap_area_nondia and abap/heap_area_dia:
      Set smaller than the memory achieved for each process
      with 'malloc' and smaller than abap/heap_area_total
    You should also check whether the available memory (file system
    swap and main memory) is sufficient for the started program
    and its data.
    Error analysis
        When the program was running, it was established that more
        memory was needed than the operating system is able to provide savely.
        To avoid a system crash, you must prevent this
        situation.
    Regards

    Hi,
    Try to use open cursor to select the data from db table.
    Below is an example for this.
    What ever the logic you do this in between DO and ENDDO.
    DATA: packsize      TYPE i VALUE 1000,
    OPEN CURSOR WITH HOLD db_cursor FOR   "Defect 12319
        SELECT (tab_fields) FROM glpca
        CLIENT SPECIFIED
        BYPASSING BUFFER
        WHERE rldnr IN rldnr.
        DO.
    To Fetch data in chunks of 2gb
          FETCH NEXT CURSOR db_cursor
          INTO CORRESPONDING FIELDS OF TABLE i_glpca
          PACKAGE SIZE packsize.
    *Begin of defect 12319
          IF sy-subrc NE 0.
            CLOSE CURSOR db_cursor.
            EXIT.
          ENDIF.
      ENDDO.
    Or you can also use packaging size option in select statement.
    Regards,
    Shravan G.

  • Help in Dumping Data to Excel

    Hello All
    I have problem dumping data to excel. Basically, i created a VI to get some data using my TV test receiver (via RS232) and send the data to an excel spreadsheet. It saves the data no problem but it does it vertically. I want it to be save in Horizontal format. Can anybody give me an example to do this?
    Many Thanks and more power. 

    Hi,
    If you are using the write to spreadsheet VI from the functions pallet, there is a Boolean input at the bottom called "Transpose?". If you wire a 'True' constant to that input you should transpose your data so that it appears horisontally instead of vertically.
    Regards,
    Ian
    Applications Engineer
    National Instruments UK & Ireland

  • 0x7_8 stop error caused by NTFS.SYS , please help with dump file analysis

    My 2003 server rebooted unexpected twice today and yesterday.
    I've run Windbg to analysis the dump file, but i really don't know what to do next to resolve my problem.
    Can any one give some suggestion? thanks in advance.
    Resetting default scope
    DEFAULT_BUCKET_ID:  DRIVER_FAULT
    PROCESS_NAME:  csrss.exe
    FAILURE_BUCKET_ID:  0x7f_8_Ntfs+5f74
    BUCKET_ID:  0x7f_8_Ntfs+5f74
    Microsoft (R) Windows Debugger Version 6.12.0002.633 X86
    Copyright (c) Microsoft Corporation. All rights reserved.
    Loading Dump File [C:\temp\ads02 memory dump 20140218\MEMORY_20140217.DMP]
    Kernel Summary Dump File: Only kernel address space is available
    WARNING: Whitespace at end of path element
    Symbol search path is: SRV*c:\websymbols*http://msdl.microsoft.com/download/symbols.sympath
    Executable search path is:
    Windows Server 2003 Kernel Version 3790 (Service Pack 2) MP (4 procs) Free x86 compatible
    Product: LanManNt, suite: TerminalServer SingleUserTS
    Built by: 3790.srv03_sp2_qfe.130703-1535
    Machine Name:
    Kernel base = 0x80800000 PsLoadedModuleList = 0x808a8ee8
    Debug session time: Mon Feb 17 08:37:34.653 2014 (UTC + 8:00)
    System Uptime: 1 days 2:57:43.093
    WARNING: Process directory table base BFF9C6C0 doesn't match CR3 005F2000
    WARNING: Unable to reset page directories
    Loading Kernel Symbols
    Loading User Symbols
    WARNING: Process directory table base BFF9C6C0 doesn't match CR3 005F2000
    Unable to get PEB pointer
    Loading unloaded module list
    *                        Bugcheck Analysis                                   
    Use !analyze -v to get detailed debugging information.
    BugCheck 7F, {8, 80042000, 0, 0}
    *** WARNING: Unable to verify timestamp for mssmbios.sys
    *** ERROR: Module load completed but symbols could not be loaded for mssmbios.sys
    *** WARNING: Unable to verify timestamp for Ntfs.sys
    *** ERROR: Module load completed but symbols could not be loaded for Ntfs.sys
    Unable to read selector for PCR for processor 1
    Unable to read selector for PCR for processor 2
    Unable to read selector for PCR for processor 3
    Unable to read selector for PCR for processor 1
    Unable to read selector for PCR for processor 2
    Unable to read selector for PCR for processor 3
    Probably caused by : Ntfs.sys ( Ntfs+5f74 )
    Followup: MachineOwner
    0: kd> !analyze -v
    *                        Bugcheck Analysis                                   
    UNEXPECTED_KERNEL_MODE_TRAP (7f)
    This means a trap occurred in kernel mode, and it's a trap of a kind
    that the kernel isn't allowed to have/catch (bound trap) or that
    is always instant death (double fault).  The first number in the
    bugcheck params is the number of the trap (8 = double fault, etc)
    Consult an Intel x86 family manual to learn more about what these
    traps are. Here is a *portion* of those codes:
    If kv shows a taskGate
            use .tss on the part before the colon, then kv.
    Else if kv shows a trapframe
            use .trap on that value
    Else
            .trap on the appropriate frame will show where the trap was taken
            (on x86, this will be the ebp that goes with the procedure KiTrap)
    Endif
    kb will then show the corrected stack.
    Arguments:
    Arg1: 00000008, EXCEPTION_DOUBLE_FAULT
    Arg2: 80042000
    Arg3: 00000000
    Arg4: 00000000
    Debugging Details:
    Unable to read selector for PCR for processor 1
    Unable to read selector for PCR for processor 2
    Unable to read selector for PCR for processor 3
    Unable to read selector for PCR for processor 1
    Unable to read selector for PCR for processor 2
    Unable to read selector for PCR for processor 3
    BUGCHECK_STR:  0x7f_8
    TSS:  00000028 -- (.tss 0x28)
    eax=00000000 ebx=8b4f1100 ecx=8ac87d03 edx=8687ddc0 esi=b83481a0 edi=b8348028
    eip=f7addf74 esp=b8348000 ebp=b8348014 iopl=0         nv up ei pl nz na po nc
    cs=0008  ss=0010  ds=0023  es=0023  fs=0030  gs=0000             efl=00010202
    Ntfs+0x5f74:
    f7addf74 0000            add     byte ptr [eax],al          ds:0023:00000000=??
    Resetting default scope
    DEFAULT_BUCKET_ID:  DRIVER_FAULT
    PROCESS_NAME:  csrss.exe
    CURRENT_IRQL:  1
    LAST_CONTROL_TRANSFER:  from 00000000 to f7addf74
    STACK_TEXT: 
    b8348014 00000000 00000000 00000000 00000000 Ntfs+0x5f74
    STACK_COMMAND:  .tss 0x28 ; kb
    FOLLOWUP_IP:
    Ntfs+5f74
    f7addf74 0000            add     byte ptr [eax],al
    SYMBOL_STACK_INDEX:  0
    SYMBOL_NAME:  Ntfs+5f74
    FOLLOWUP_NAME:  MachineOwner
    MODULE_NAME: Ntfs
    IMAGE_NAME:  Ntfs.sys
    DEBUG_FLR_IMAGE_TIMESTAMP:  0
    FAILURE_BUCKET_ID:  0x7f_8_Ntfs+5f74
    BUCKET_ID:  0x7f_8_Ntfs+5f74
    Followup: MachineOwner

    According to your post bug check 0x7F is recorded. Bug check 0x7F typically occurs after you install a faulty or mismatched hardware (especially memory) or if installed hardware fails.
    I suggest you check below link and troubleshoot it accordingly.
    Bug Check 0x7F 
    Regards, Ravikumar P

  • Strange Dump while using HR_INFOTYPE_OPERATION.

    Hi frnz,
    I am facing dump while using the FM 'HR_INFOTYPE_OPERATION' as below. <b>If I swap positions of w_p0041-endda and w_p0041-begda it does not give a dump but error msg is generated saying that no selection in the period(as obviously dates are in propper range).</b> <u>Whlie testing the FM in SE37 with the same data, it works fine.</u> Please help me find the problem.
    data: TCLAS like PSPAR-TCLAS,
          OPERATION like PSPAR-ACTIO,
          infty like PRELP-INFTY.
          infty = '0041'.
          OPERATION = 'MOD'.
          TCLAS = 'A'.
      CALL FUNCTION 'HR_INFOTYPE_OPERATION'
        EXPORTING
          INFTY                  = infty
          NUMBER                 = w_p0041-pernr
      SUBTYPE                =
      OBJECTID               =
      LOCKINDICATOR          =
         VALIDITYEND            = w_p0041-endda
         VALIDITYBEGIN          = w_p0041-begda
      RECORDNUMBER           =
          RECORD                 = w_p0041
          OPERATION              = OPERATION
          TCLAS                  = TCLAS
      DIALOG_MODE            = '0'
        NOCOMMIT               = SPACE
      VIEW_IDENTIFIER        =
      SECONDARY_RECORD       =
       IMPORTING
         RETURN                 =  Return
      KEY                    =

    Hi all ,
    I have already tried converting date to internal format, the data types are also fine. I am not able to paste the screen shot so here is a part of it. Please help.
    ************DUMP************************************
    If we can not remap we would like to just re-raise the
    exception like below like "RAISE EXCEPTION exception.".
    Unfortunately the kernel will then forget about the
    original source position.
    So this is the fallback strategy. Calling this method
    is only allowed if the exception can be resolved. Since
    this is not the case we indicate a parameter violation.
      RAISE EXCEPTION TYPE cx_hrpa_invalid_parameter
        EXPORTING
          previous  = exception
          parameter = 'EXCEPTION'.
    ENDMETHOD.
    ********************END**************
    Thanks
    Sachin

  • Classic scenario-SC not transferred to backend,short dump in ecc

    hi Guru's,
    Classic scenario, sc not transferred to backend, executed FM bbp_pd_sc_resubmit, short dump occurred in the backend stating call function not found
    please help
    short dump file attached
    regards,
    kiran

    Hi Kiran,
    Could you please send the DUMP for analysis.
    Please try to use this -
    This is the new report BBP_SC_AUTO_RETRANSFER to change the status from
    I1111          Item in Transfer Process
    I1112           Error in transfer/ transmission
    Thanks,
    From RBEI,
    Snehal

  • Short Dump by creating Transformation

    Hi every Body,
    I have installed NW2004S ABAP Sneak Preview system(BI 7.0) on my PC at home, and I have the following problem: when I try to create Transformation, the system say ‘ proposal generated with (n) rules.’, and when I click on OK I get a Short Dump as shown below.
    The short dump says: Make sure that the OCXs ICDataFlow.ocx and wdbdadpt.ocx  are                         
    installed on your computer, but these two OCX data are already  installed and I think the front end is installed correctly but the error still occurs.
    Please…. did any body get such a problem….. I appreciate any help.
    short dump----
    Error analysis                                                                               
    Short text of error message:                                                                 
         Network could not be launched due to control error                                                                               
    Long text of error message:                                                                  
          Diagnosis                                                                               
    Network control cannot be started either because is is not                              
              installed on the front-end computer, or because the control                             
              framework is inconsistent when the function is called up.                               
              To be able to start the network graphic, you need two OCX files                         
              that are delivered with the BW Frontend.                                                
          System Response                                                                               
    Processing has been terminated.                                                         
          Procedure                                                                               
    Make sure that the OCXs ICDataFlow.ocx and wdbdadpt.ocx auf are                         
              installed on your computer. You can find notes on installing and                        
              checking the BW Frontend by searching for SAP Notes with the                            
              following key words:                                                                               
    Version, sapservX, Setup, Patch, Installation, Frontend, BW,                            
              sapbexc.xla, checktool, wdtaocx, wdtaocx.ocx                                            
              If the front end is installed correctly but the error still occurs,                     
              contact SAP.                                                                               
    Procedure for System Administration                                                                               
    Technical information about the message:                                                     
         Message class....... "RSNG"                                                                  
         Number.............. 001                                                                     
         Variable 1.......... " "                                                                     
         Variable 2.......... " "                                                                     
         Variable 3.......... " "                                                                     
         Variable 4.......... " " 
    short dump -

    Check out the note 946481. This should resolve your issue.
    Please update the output
    Regards
    Pankaj

  • Probably caused by : ntkrnlmp.exe ( nt!KiDoubleFaultAbort+b8 )

    I am debugging a minidump file but I am not able to make out if the problem is related to hardware or software? The possible culprit could be “ntkrnlmp.exe” but which thread or process faulted is beyond my understanding. Please can someone help a newbie
    debugger.
    Microsoft (R) Windows Debugger Version 6.12.0002.633 AMD64 Copyright (c) Microsoft Corporation. All rights reserved.
    Loading Dump File [D:\Items\Mini030413-01.dmp] Mini Kernel Dump File: Only registers and stack trace are available
    Symbol search path is: srv*f:\symbols\websymbols*http://msdl.microsoft.com/download/symbols
    Executable search path is:
    Windows Server 2008/Windows Vista Kernel Version 6002 (Service Pack 2) MP (16 procs) Free x64
    Product: Server, suite: Enterprise TerminalServer SingleUserTS
    Built by: 6002.18607.amd64fre.vistasp2_gdr.120402-0336
    Machine Name:
    Kernel base = 0xfffff800`01e08000 PsLoadedModuleList = 0xfffff800`01fccdd0
    Debug session time: Mon Mar  4 07:23:36.821 2013 (UTC + 13:00)
    System Uptime: 49 days 13:51:33.653
    Loading Kernel Symbols
    Loading User Symbols
    Loading unloaded module list
    *                        Bugcheck Analysis                                   
    Use !analyze -v to get detailed debugging information.
    BugCheck 7F, {8, 80050033, 6f8, fffff80001e8b4af}
    Unable to load image spep.sys, Win32 error 0n2
    *** WARNING: Unable to verify timestamp for spep.sys
    *** ERROR: Module load completed but symbols could not be loaded for spep.sys
    Probably caused by : ntkrnlmp.exe ( nt!KiDoubleFaultAbort+b8 )
    Followup: MachineOwner
    6: kd> !analyze -v
    *                        Bugcheck Analysis              
    UNEXPECTED_KERNEL_MODE_TRAP (7f)
    This means a trap occurred in kernel mode, and it's a trap of a kind
    that the kernel isn't allowed to have/catch (bound trap) or that
    is always instant death (double fault).  The first number in the
    bugcheck params is the number of the trap (8 = double fault, etc)
    Consult an Intel x86 family manual to learn more about what these
    traps are. Here is a *portion* of those codes:
    If kv shows a taskGate
            use .tss on the part before the colon, then kv.
    Else if kv shows a trapframe
            use .trap on that value
    Else
            .trap on the appropriate frame will show where the trap was taken
            (on x86, this will be the ebp that goes with the procedure KiTrap)
    Endif
    kb will then show the corrected stack.
    Arguments:
    Arg1: 0000000000000008, EXCEPTION_DOUBLE_FAULT
    Arg2: 0000000080050033
    Arg3: 00000000000006f8
    Arg4: fffff80001e8b4af
    Debugging Details:
    BUGCHECK_STR:  0x7f_8
    CUSTOMER_CRASH_COUNT:  1
    DEFAULT_BUCKET_ID:  DRIVER_FAULT_SERVER_MINIDUMP
    PROCESS_NAME:  w3wp.exe
    CURRENT_IRQL:  1
    EXCEPTION_RECORD:  fffffa60122c30a8 -- (.exr 0xfffffa60122c30a8)
    ExceptionAddress: fffff80001e8767d (nt!RtlVirtualUnwind+0x000000000000016d)
       ExceptionCode: c0000005 (Access violation)
      ExceptionFlags: 00000000
    NumberParameters: 2
       Parameter[0]: 0000000000000000
       Parameter[1]: 00000000000000d8
    Attempt to read from address 00000000000000d8
    TRAP_FRAME:  fffffa60122c2080 -- (.trap 0xfffffa60122c2080)
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=0000000000000005 rbx=0000000000000000 rcx=0000000000000000
    rdx=00000000000000d8 rsi=0000000000000000 rdi=0000000000000000
    rip=fffff80001e8767d rsp=fffffa60122c2210 rbp=fffffa60122c2450
     r8=0000000000000005  r9=fffff80001e08000 r10=ffffffffffffff80
    r11=fffff80002006000 r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0         nv up ei pl zr na po nc
    nt!RtlVirtualUnwind+0x16d:
    fffff800`01e8767d 488b02          mov     rax,qword ptr [rdx] ds:00000000`000000d8=????????????????
    Resetting default scope
    LAST_CONTROL_TRANSFER:  from fffff80001e5f86e to fffff80001e5fad0
    STACK_TEXT: 
    fffffa60`01f1da68 fffff800`01e5f86e : 00000000`0000007f 00000000`00000008 00000000`80050033 00000000`000006f8 : nt!KeBugCheckEx
    fffffa60`01f1da70 fffff800`01e5e0b8 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiBugCheckDispatch+0x6e
    fffffa60`01f1dbb0 fffff800`01e8b4af : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiDoubleFaultAbort+0xb8
    fffffa60`122bdf40 fffff800`01e98d32 : fffffa60`122bed68 fffffa60`122bee90 fffffa60`122bee10 00000000`00000000 : nt!RtlDispatchException+0x2f
    fffffa60`122be630 fffff800`01e5f929 : fffffa60`122bed68 00000000`00000003 fffffa60`122bee10 00000000`00000114 : nt!KiDispatchException+0xc2
    fffffa60`122bec30 fffff800`01e5e725 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000003 : nt!KiExceptionDispatch+0xa9
    fffffa60`122bee10 fffff800`01e8767d : 00000000`00059d17 fffffa60`122bf078 fffff800`01e08000 fffff800`01e08000 : nt!KiPageFault+0x1e5
    fffffa60`122befa0 fffff800`01e8b598 : fffffa60`00000001 00000000`00000000 00000000`00000000 ffffffff`ffffff80 : nt!RtlVirtualUnwind+0x16d
    fffffa60`122bf010 fffff800`01e98d32 : fffffa60`122bfe38 fffffa60`122bf810 fffffa60`00000000 00000000`00000000 : nt!RtlDispatchException+0x118
    fffffa60`122bf700 fffff800`01e5f929 : fffffa60`122bfe38 00000000`00000003 fffffa60`122bfee0 00000000`00000114 : nt!KiDispatchException+0xc2
    fffffa60`122bfd00 fffff800`01e5e725 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000003 : nt!KiExceptionDispatch+0xa9
    fffffa60`122bfee0 fffff800`01e8767d : 00000000`00059d17 fffffa60`122c0148 fffff800`01e08000 fffff800`01e08000 : nt!KiPageFault+0x1e5
    fffffa60`122c0070 fffff800`01e8b598 : fffffa60`00000001 00000000`00000000 00000000`00000000 ffffffff`ffffff80 : nt!RtlVirtualUnwind+0x16d
    fffffa60`122c00e0 fffff800`01e98d32 : fffffa60`122c0f08 fffffa60`122c08e0 fffffa60`00000000 00000000`00000000 : nt!RtlDispatchException+0x118
    fffffa60`122c07d0 fffff800`01e5f929 : fffffa60`122c0f08 00000000`00000003 fffffa60`122c0fb0 00000000`00000114 : nt!KiDispatchException+0xc2
    fffffa60`122c0dd0 fffff800`01e5e725 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000003 : nt!KiExceptionDispatch+0xa9
    fffffa60`122c0fb0 fffff800`01e8767d : 00000000`00059d17 fffffa60`122c1218 fffff800`01e08000 fffff800`01e08000 : nt!KiPageFault+0x1e5
    fffffa60`122c1140 fffff800`01e8b598 : fffffa60`00000001 00000000`00000000 00000000`00000000 ffffffff`ffffff80 : nt!RtlVirtualUnwind+0x16d
    fffffa60`122c11b0 fffff800`01e98d32 : fffffa60`122c1fd8 fffffa60`122c19b0 fffffa60`00000000 00000000`00000000 : nt!RtlDispatchException+0x118
    fffffa60`122c18a0 fffff800`01e5f929 : fffffa60`122c1fd8 00000000`00000003 fffffa60`122c2080 00000000`00000114 : nt!KiDispatchException+0xc2
    fffffa60`122c1ea0 fffff800`01e5e725 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000003 : nt!KiExceptionDispatch+0xa9
    fffffa60`122c2080 fffff800`01e8767d : 00000000`00059d17 fffffa60`122c22e8 fffff800`01e08000 fffff800`01e08000 : nt!KiPageFault+0x1e5
    fffffa60`122c2210 fffff800`01e8b598 : fffffa60`00000001 00000000`00000000 00000000`00000000 ffffffff`ffffff80 : nt!RtlVirtualUnwind+0x16d
    fffffa60`122c2280 fffff800`01e98d32 : fffffa60`122c30a8 fffffa60`122c2a80 fffffa60`00000000 00000000`00000000 : nt!RtlDispatchException+0x118
    fffffa60`122c2970 fffff800`01e5f929 : fffffa60`122c30a8 00000000`00000003 fffffa60`122c3150 00000000`00000114 : nt!KiDispatchException+0xc2
    fffffa60`122c2f70 fffff800`01e5e725 : 00000000`00000000 fffffa60`122c31a0 fffffa80`69d06800 00000000`00000003 : nt!KiExceptionDispatch+0xa9
    fffffa60`122c3150 fffff800`01e8767d : 00000000`00059d17 fffffa60`122c33b8 fffff800`01e08000 fffffa60`122c3c80 : nt!KiPageFault+0x1e5
    fffffa60`122c32e0 fffff800`01e8b598 : fffffa60`00000001 00000000`00000000 fffffa60`00000000 ffffffff`ffffff80 : nt!RtlVirtualUnwind+0x16d
    fffffa60`122c3350 fffff800`01e98d32 : fffffa60`122c4178 fffffa60`122c3b50 fffffa60`00000000 fffffa60`0160a000 : nt!RtlDispatchException+0x118
    fffffa60`122c3a40 fffff800`01e5f929 : fffffa60`122c4178 00000000`00000003 fffffa60`122c4220 00000000`00000114 : nt!KiDispatchException+0xc2
    fffffa60`122c4040 fffff800`01e5e725 : 00000000`00000000 fffffa80`1cff1010 fffffa80`2340ae00 00000000`00000003 : nt!KiExceptionDispatch+0xa9
    fffffa60`122c4220 fffff800`01e8767d : 00000000`00059d17 fffffa60`122c4970 fffff800`01e08000 62206465`00000000 : nt!KiPageFault+0x1e5
    fffffa60`122c43b0 fffff800`020ec4b2 : fffff800`00000001 fffffa60`10893500 fffff880`00000000 ffffffff`ffffff80 : nt!RtlVirtualUnwind+0x16d
    fffffa60`122c4420 fffff800`01e8cf4d : ffffffff`ffffff80 fffffa80`695fe060 fffffa60`10893570 fffff800`01e08000 : nt!PspGetSetContextInternal+0x36a
    fffffa60`122c4970 fffff800`01e811ce : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!PspGetSetContextSpecialApc+0x9d
    fffffa60`122c4a80 fffff800`01e61faf : fffffa80`695fe310 00000000`00000000 00000000`00000000 fffffa80`695fe060 : nt!KiDeliverApc+0x19e
    fffffa60`122c4b20 fffff800`01e569bb : 00000000`00000007 fffffa60`0161e424 fffffa80`00000005 00000000`00000000 : nt!KiSwapThread+0x3ef
    fffffa60`122c4b90 fffff800`01e94dad : ffff0050`00000000 fffffa60`00000005 fffffa80`122c0000 fffffa60`00000000 : nt!KeWaitForSingleObject+0x2cb
    fffffa60`122c4c20 fffff800`01e81307 : 00000000`00000000 fffff880`082f6448 fffffa80`3ecdf064 00000000`00000000 : nt!KiSuspendThread+0x29
    fffffa60`122c4c60 fffff800`01e84c23 : fffffa60`122c4d80 00000000`00000000 fffff800`01e94d84 00000000`00000000 : nt!KiDeliverApc+0x2d7
    fffffa60`122c4d00 fffffa60`00c43093 : fffffa80`1ce4a180 fffffa60`01617601 fffffa80`5c527c40 fffff880`082f0100 : nt!KiApcInterrupt+0x103
    fffffa60`122c4e90 fffffa80`1ce4a180 : fffffa60`01617601 fffffa80`5c527c40 fffff880`082f0100 fffffa60`122c5390 : spep+0x40093
    fffffa60`122c4e98 fffffa60`01617601 : fffffa80`5c527c40 fffff880`082f0100 fffffa60`122c5390 fffffa80`1c000000 : 0xfffffa80`1ce4a180
    fffffa60`122c4ea0 fffff880`082f6140 : fffff880`082f6390 fffff800`01e6dc7c 00000000`00000000 fffffa80`69ae8110 : Ntfs!NtfsCleanupIrpContext+0xd1
    fffffa60`122c4ef0 fffff880`082f6390 : fffff800`01e6dc7c 00000000`00000000 fffffa80`69ae8110 fffffa80`69ae8420 : 0xfffff880`082f6140
    fffffa60`122c4ef8 fffff800`01e6dc7c : 00000000`00000000 fffffa80`69ae8110 fffffa80`69ae8420 fffffa80`67000d00 : 0xfffff880`082f6390
    fffffa60`122c4f00 fffff800`01e649a4 : fffffa80`1bf27000 fffffa60`122c4f68 fffffa80`1ce4a030 00000000`00000000 : nt!KiIpiProcessRequests+0x21c
    fffffa60`122c4f50 fffffa60`122c5220 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiIpiInterrupt+0x114
    fffffa80`69ae8110 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : 0xfffffa60`122c5220
    STACK_COMMAND:  kb
    MODULE_NAME: nt
    IMAGE_NAME:  ntkrnlmp.exe
    FOLLOWUP_NAME:  MachineOwner
    DEBUG_FLR_IMAGE_TIMESTAMP:  4f79ae26
    FOLLOWUP_IP:
    nt!KiDoubleFaultAbort+b8
    fffff800`01e5e0b8 90              nop
    SYMBOL_STACK_INDEX:  2
    SYMBOL_NAME:  nt!KiDoubleFaultAbort+b8
    FAILURE_BUCKET_ID:  X64_TRAP_FRAME_RECURSION
    BUCKET_ID:  X64_TRAP_FRAME_RECURSION
    Followup: MachineOwner
    6: kd> .trap 0xfffffa60122c2080
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=0000000000000005 rbx=0000000000000000 rcx=0000000000000000
    rdx=00000000000000d8 rsi=0000000000000000 rdi=0000000000000000
    rip=fffff80001e8767d rsp=fffffa60122c2210 rbp=fffffa60122c2450
     r8=0000000000000005  r9=fffff80001e08000 r10=ffffffffffffff80
    r11=fffff80002006000 r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0         nv up ei pl zr na po nc
    nt!RtlVirtualUnwind+0x16d:
    fffff800`01e8767d 488b02          mov     rax,qword ptr [rdx] ds:00000000`000000d8=????????????????

    Please understand that debugging is not officially supported in Technet forum, please contact Microsoft Customer Support Service (CSS) if you need any help on dump file debugging. To obtain the phone numbers for specific technology request, please refer
    to the website listed below:
    http://support.microsoft.com/default.aspx?scid=fh;EN-US;PHONENUMBERS
    If you are outside the US, please refer to
    http://support.microsoft.com for regional support phone numbers.
    For your reference, you can start by implementing the following troubleshooting steps
    Run a chkdsk /r  with elevated privilege against the system drives to find out any filesystem corruption
    Run sfc /scannow to verify the protected Windows files from an administrative command prompt
    Do RAM test or use a third-party tool like MemTest86+
    Update BIOS and devices drivers.

  • Shared realm does not exist in EBS R12.0.6

    Hi,
    I am having some problem with the database startup.
    when i ran startup command through sqlplus database starts and after 30 sec it gets terminated.
    When trying to connect with apps it returns:
    SQL> conn apps/apps
    ERROR:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux-x86_64 Error: 2: No such file or directory
    when connecting with sys it connects to an idle instance.
    Here is the contents of alert log.
    Fri Jan 15 11:17:14 2010
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 3
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =48
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.2.0.
    System parameters with non-default values:
    tracefiles_public = TRUE
    processes = 400
    sessions = 445
    timed_statistics = TRUE
    shared_pool_size = 419430400
    shared_pool_reserved_size= 41943040
    nls_language = american
    nls_territory = america
    nls_sort = binary
    nls_date_format = DD-MON-RR
    nls_numeric_characters = .,
    nls_comp = binary
    nls_length_semantics = BYTE
    sga_target = 1073741824
    control_files = /d01/oracle/PROD/db/apps_st/data/cntrl01.dbf, /d01/oracle/PROD/db/apps_st/data/cntrl02.dbf, /d01/oracle/PROD/db/apps_st/data/cntrl03.dbf
    db_block_checksum = TRUE
    db_block_size = 8192
    compatible = 10.2.0
    log_archive_dest_1 = LOCATION=/d01/oracle/PROD/db/apps_st/data/archive
    log_archive_format = %t_%s_%r.dbf
    log_buffer = 14254080
    log_checkpoint_interval = 100000
    log_checkpoint_timeout = 1200
    db_files = 512
    db_file_multiblock_read_count= 8
    log_checkpoints_to_alert = TRUE
    dml_locks = 10000
    undo_management = AUTO
    undo_tablespace = APPS_UNDOTS1
    db_block_checking = FALSE
    session_cached_cursors = 500
    utl_file_dir = /usr/tmp, /usr/tmp, /d01/oracle/PROD/db/tech_st/10.2.0/appsutil/outbound/p1_prod1, /usr/tmp
    plsql_native_library_dir = /d01/oracle/PROD/db/tech_st/10.2.0/plsql/nativelib
    plsql_native_library_subdir_count= 149
    plsql_code_type = INTERPRETED
    plsql_optimize_level = 2
    job_queue_processes = 2
    systemtrig_enabled = TRUE
    cursor_sharing = EXACT
    parallel_min_servers = 0
    parallel_max_servers = 8
    background_dump_dest = /d01/oracle/PROD/db/tech_st/10.2.0/admin/p1_prod1/bdump
    user_dump_dest = /d01/oracle/PROD/db/tech_st/10.2.0/admin/p1_prod1/udump
    max_dump_file_size = 20480
    core_dump_dest = /d01/oracle/PROD/db/tech_st/10.2.0/admin/p1_prod1/cdump
    db_name = p1
    open_cursors = 600
    ifile = /d01/oracle/PROD/db/tech_st/10.2.0/dbs/p1_prod1_ifile.ora
    sortelimination_cost_ratio= 5
    btree_bitmap_plans = FALSE
    fastfull_scan_enabled = FALSE
    sqlexecprogression_cost= 2147483647
    likewith_bind_as_equality= TRUE
    pga_aggregate_target = 1073741824
    workarea_size_policy = AUTO
    optimizer_secure_view_merging= FALSE
    aq_tm_processes = 1
    olap_page_pool_size = 4194304
    PSP0 started with pid=3, OS id=4730
    PMON started with pid=2, OS id=4728
    MMAN started with pid=4, OS id=4732
    DBW0 started with pid=5, OS id=4734
    LGWR started with pid=6, OS id=4736
    CKPT started with pid=7, OS id=4738
    SMON started with pid=8, OS id=4740
    RECO started with pid=9, OS id=4742
    CJQ0 started with pid=10, OS id=4744
    MMON started with pid=11, OS id=4746
    MMNL started with pid=12, OS id=4748
    Fri Jan 15 11:17:17 2010
    ALTER DATABASE MOUNT
    Fri Jan 15 11:17:21 2010
    Setting recovery target incarnation to 2
    Fri Jan 15 11:17:21 2010
    Successful mount of redo thread 1, with mount id 2209107325
    Fri Jan 15 11:17:21 2010
    Database mounted in Exclusive Mode
    Completed: ALTER DATABASE MOUNT
    Fri Jan 15 11:17:22 2010
    ALTER DATABASE OPEN
    Fri Jan 15 11:17:23 2010
    Beginning crash recovery of 1 threads
    parallel recovery started with 2 processes
    Fri Jan 15 11:17:24 2010
    Started redo scan
    Fri Jan 15 11:17:24 2010
    Completed redo scan
    563 redo blocks read, 77 data blocks need recovery
    Fri Jan 15 11:17:25 2010
    Started redo application at
    Thread 1: logseq 16, block 1326509
    Fri Jan 15 11:17:25 2010
    Recovery of Online Redo Log: Thread 1 Group 1 Seq 16 Reading mem 0
    Mem# 0 errs 0: /d01/oracle/PROD/db/apps_st/data/log01a.dbf
    Mem# 1 errs 0: /d01/oracle/PROD/db/apps_st/data/log01b.dbf
    Fri Jan 15 11:17:25 2010
    Completed redo application
    Fri Jan 15 11:17:25 2010
    Completed crash recovery at
    Thread 1: logseq 16, block 1327072, scn 5965375192662
    77 data blocks read, 33 data blocks written, 563 redo blocks read
    Fri Jan 15 11:17:26 2010
    Thread 1 advanced to log sequence 17
    Thread 1 opened at log sequence 17
    Current log# 2 seq# 17 mem# 0: /d01/oracle/PROD/db/apps_st/data/log02a.dbf
    Current log# 2 seq# 17 mem# 1: /d01/oracle/PROD/db/apps_st/data/log02b.dbf
    Successful open of redo thread 1
    Fri Jan 15 11:17:26 2010
    MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
    Fri Jan 15 11:17:26 2010
    SMON: enabling cache recovery
    Fri Jan 15 11:17:28 2010
    Incremental checkpoint up to RBA [0x11.3.0], current log tail at RBA [0x11.2b.0]
    Fri Jan 15 11:17:29 2010
    Successfully onlined Undo Tablespace 368.
    Fri Jan 15 11:17:29 2010
    SMON: enabling tx recovery
    Fri Jan 15 11:17:29 2010
    Database Characterset is US7ASCII
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    QMNC started with pid=16, OS id=4758
    Fri Jan 15 11:18:27 2010
    Errors in file /d01/oracle/PROD/db/tech_st/10.2.0/admin/p1_prod1/udump/p1_ora_4750.trc:
    ORA-00600: internal error code, arguments: [4193], [16615], [4919], [], [], [], [], []
    Fri Jan 15 11:18:37 2010
    Doing block recovery for file 379 block 91877
    Block recovery from logseq 17, block 133 to scn 5965375195253
    Fri Jan 15 11:18:37 2010
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 17 Reading mem 0
    Mem# 0 errs 0: /d01/oracle/PROD/db/apps_st/data/log02a.dbf
    Mem# 1 errs 0: /d01/oracle/PROD/db/apps_st/data/log02b.dbf
    Block recovery stopped at EOT rba 17.407.16
    Block recovery completed at rba 17.407.16, scn 1388.3960588405
    Doing block recovery for file 379 block 105
    Block recovery from logseq 17, block 133 to scn 5965375195158
    Fri Jan 15 11:18:37 2010
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 17 Reading mem 0
    Mem# 0 errs 0: /d01/oracle/PROD/db/apps_st/data/log02a.dbf
    Mem# 1 errs 0: /d01/oracle/PROD/db/apps_st/data/log02b.dbf
    Block recovery completed at rba 17.134.16, scn 1388.3960588315
    Completed: ALTER DATABASE OPEN
    Fri Jan 15 11:18:44 2010
    Errors in file /d01/oracle/PROD/db/tech_st/10.2.0/admin/p1_prod1/bdump/p1_cjq0_4744.trc:
    ORA-00600: internal error code, arguments: [4194], [55], [46], [], [], [], [], []
    Fri Jan 15 11:18:46 2010
    Errors in file /d01/oracle/PROD/db/tech_st/10.2.0/admin/p1_prod1/bdump/p1_mmon_4746.trc:
    ORA-00600: internal error code, arguments: [4194], [60], [62], [], [], [], [], []
    Fri Jan 15 11:18:47 2010
    Doing block recovery for file 379 block 77280
    Block recovery from logseq 17, block 412 to scn 5965375195270
    Fri Jan 15 11:18:47 2010
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 17 Reading mem 0
    Mem# 0 errs 0: /d01/oracle/PROD/db/apps_st/data/log02a.dbf
    Mem# 1 errs 0: /d01/oracle/PROD/db/apps_st/data/log02b.dbf
    Block recovery stopped at EOT rba 17.420.16
    Block recovery completed at rba 17.420.16, scn 1388.3960588422
    Fri Jan 15 11:18:47 2010
    Errors in file /d01/oracle/PROD/db/tech_st/10.2.0/admin/p1_prod1/bdump/p1_q002_4764.trc:
    ORA-00600: internal error code, arguments: [4194], [70], [67], [], [], [], [], []
    Doing block recovery for file 379 block 89
    Block recovery from logseq 17, block 412 to scn 5965375195262
    Fri Jan 15 11:18:47 2010
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 17 Reading mem 0
    Mem# 0 errs 0: /d01/oracle/PROD/db/apps_st/data/log02a.dbf
    Mem# 1 errs 0: /d01/oracle/PROD/db/apps_st/data/log02b.dbf
    Block recovery completed at rba 17.414.16, scn 1388.3960588417
    Fri Jan 15 11:18:47 2010
    Errors in file /d01/oracle/PROD/db/tech_st/10.2.0/admin/p1_prod1/bdump/p1_cjq0_4744.trc:
    ORA-00600: internal error code, arguments: [4194], [15], [24], [], [], [], [], []
    Doing block recovery for file 379 block 92961
    Block recovery from logseq 17, block 420 to scn 5965375195274
    Fri Jan 15 11:18:50 2010
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 17 Reading mem 0
    Mem# 0 errs 0: /d01/oracle/PROD/db/apps_st/data/log02a.dbf
    Mem# 1 errs 0: /d01/oracle/PROD/db/apps_st/data/log02b.dbf
    Block recovery stopped at EOT rba 17.422.16
    Block recovery completed at rba 17.422.16, scn 1388.3960588424
    Doing block recovery for file 379 block 41
    Block recovery from logseq 17, block 420 to scn 5965375195271
    Fri Jan 15 11:18:50 2010
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 17 Reading mem 0
    Mem# 0 errs 0: /d01/oracle/PROD/db/apps_st/data/log02a.dbf
    Mem# 1 errs 0: /d01/oracle/PROD/db/apps_st/data/log02b.dbf
    Block recovery completed at rba 17.422.16, scn 1388.3960588424
    Fri Jan 15 11:18:50 2010
    Errors in file /d01/oracle/PROD/db/tech_st/10.2.0/admin/p1_prod1/bdump/p1_cjq0_4744.trc:
    ORA-00600: internal error code, arguments: [4194], [57], [51], [], [], [], [], []
    Fri Jan 15 11:18:51 2010
    Doing block recovery for file 379 block 5763
    Block recovery from logseq 17, block 416 to scn 5965375195277
    Fri Jan 15 11:18:51 2010
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 17 Reading mem 0
    Mem# 0 errs 0: /d01/oracle/PROD/db/apps_st/data/log02a.dbf
    Mem# 1 errs 0: /d01/oracle/PROD/db/apps_st/data/log02b.dbf
    Block recovery completed at rba 17.425.16, scn 1388.3960588430
    Doing block recovery for file 379 block 57
    Block recovery from logseq 17, block 416 to scn 5965375195267
    Fri Jan 15 11:18:51 2010
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 17 Reading mem 0
    Mem# 0 errs 0: /d01/oracle/PROD/db/apps_st/data/log02a.dbf
    Mem# 1 errs 0: /d01/oracle/PROD/db/apps_st/data/log02b.dbf
    Block recovery completed at rba 17.418.16, scn 1388.3960588421
    ORA-607 encountered when generating server alert SMG-4120
    Fri Jan 15 11:18:51 2010
    Errors in file /d01/oracle/PROD/db/tech_st/10.2.0/admin/p1_prod1/bdump/p1_mmon_4746.trc:
    ORA-00600: internal error code, arguments: [4194], [13], [25], [], [], [], [], []
    Fri Jan 15 11:18:52 2010
    Doing block recovery for file 379 block 7170
    Block recovery from logseq 17, block 418 to scn 5965375195291
    Fri Jan 15 11:18:52 2010
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 17 Reading mem 0
    Mem# 0 errs 0: /d01/oracle/PROD/db/apps_st/data/log02a.dbf
    Mem# 1 errs 0: /d01/oracle/PROD/db/apps_st/data/log02b.dbf
    Block recovery stopped at EOT rba 17.490.16
    Block recovery completed at rba 17.490.16, scn 1388.3960588439
    Doing block recovery for file 379 block 225
    Block recovery from logseq 17, block 418 to scn 5965375195269
    Fri Jan 15 11:18:53 2010
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 17 Reading mem 0
    Mem# 0 errs 0: /d01/oracle/PROD/db/apps_st/data/log02a.dbf
    Mem# 1 errs 0: /d01/oracle/PROD/db/apps_st/data/log02b.dbf
    Block recovery completed at rba 17.420.16, scn 1388.3960588423
    Fri Jan 15 11:18:53 2010
    Doing block recovery for file 379 block 222590
    Block recovery from logseq 17, block 422 to scn 5965375195307
    Fri Jan 15 11:18:53 2010
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 17 Reading mem 0
    Mem# 0 errs 0: /d01/oracle/PROD/db/apps_st/data/log02a.dbf
    Mem# 1 errs 0: /d01/oracle/PROD/db/apps_st/data/log02b.dbf
    Block recovery stopped at EOT rba 17.638.16
    Block recovery completed at rba 17.638.16, scn 1388.3960588457
    Doing block recovery for file 379 block 25
    Block recovery from logseq 17, block 422 to scn 5965375195275
    Fri Jan 15 11:18:53 2010
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 17 Reading mem 0
    Mem# 0 errs 0: /d01/oracle/PROD/db/apps_st/data/log02a.dbf
    Mem# 1 errs 0: /d01/oracle/PROD/db/apps_st/data/log02b.dbf
    Block recovery completed at rba 17.424.16, scn 1388.3960588428
    Fri Jan 15 11:18:53 2010
    Errors in file /d01/oracle/PROD/db/tech_st/10.2.0/admin/p1_prod1/bdump/p1_cjq0_4744.trc:
    ORA-00607: Internal error occurred while making a change to a data block
    ORA-00607: Internal error occurred while making a change to a data block
    Fri Jan 15 11:18:54 2010
    Errors in file /d01/oracle/PROD/db/tech_st/10.2.0/admin/p1_prod1/bdump/p1_j001_4774.trc:
    ORA-00600: internal error code, arguments: [4194], [23], [16], [], [], [], [], []
    Fri Jan 15 11:18:54 2010
    Doing block recovery for file 379 block 5444
    Block recovery from logseq 17, block 484 to scn 5965375195322
    Fri Jan 15 11:18:54 2010
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 17 Reading mem 0
    Mem# 0 errs 0: /d01/oracle/PROD/db/apps_st/data/log02a.dbf
    Mem# 1 errs 0: /d01/oracle/PROD/db/apps_st/data/log02b.dbf
    Block recovery stopped at EOT rba 17.711.16
    Block recovery completed at rba 17.711.16, scn 1388.3960588473
    Doing block recovery for file 379 block 113
    Block recovery from logseq 17, block 484 to scn 5965375195284
    Fri Jan 15 11:18:54 2010
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 17 Reading mem 0
    Mem# 0 errs 0: /d01/oracle/PROD/db/apps_st/data/log02a.dbf
    Mem# 1 errs 0: /d01/oracle/PROD/db/apps_st/data/log02b.dbf
    Block recovery completed at rba 17.487.16, scn 1388.3960588437
    ORA-607 encountered when generating server alert SMG-4121
    Fri Jan 15 11:18:55 2010
    DEBUG: Replaying xcb 0x9dbdd5b0, pmd 0x9d391c00 for failed op 8
    Doing block recovery for file 379 block 4983
    No block recovery was needed
    Fri Jan 15 11:18:55 2010
    Errors in file /d01/oracle/PROD/db/tech_st/10.2.0/admin/p1_prod1/bdump/p1_j001_4774.trc:
    ORA-00600: internal error code, arguments: [4194], [23], [16], [], [], [], [], []
    ORA-00600: internal error code, arguments: [4194], [23], [16], [], [], [], [], []
    Fri Jan 15 11:18:56 2010
    Errors in file /d01/oracle/PROD/db/tech_st/10.2.0/admin/p1_prod1/bdump/p1_m000_4770.trc:
    ORA-00600: internal error code, arguments: [4194], [15], [24], [], [], [], [], []
    Fri Jan 15 11:18:56 2010
    Errors in file /d01/oracle/PROD/db/tech_st/10.2.0/admin/p1_prod1/bdump/p1_j001_4774.trc:
    ORA-00600: internal error code, arguments: [4194], [23], [16], [], [], [], [], []
    ORA-00600: internal error code, arguments: [4194], [23], [16], [], [], [], [], []
    Fri Jan 15 11:18:58 2010
    Flush retried for xcb 0x9db7ddb0, pmd 0x9d3a2f18
    Doing block recovery for file 379 block 92961
    Block recovery from logseq 17, block 420 to scn 5965375195274
    Fri Jan 15 11:18:58 2010
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 17 Reading mem 0
    Mem# 0 errs 0: /d01/oracle/PROD/db/apps_st/data/log02a.dbf
    Mem# 1 errs 0: /d01/oracle/PROD/db/apps_st/data/log02b.dbf
    Block recovery completed at rba 17.422.16, scn 1388.3960588427
    Fri Jan 15 11:18:59 2010
    Errors in file /d01/oracle/PROD/db/tech_st/10.2.0/admin/p1_prod1/bdump/p1_m000_4770.trc:
    ORA-00600: internal error code, arguments: [4194], [15], [24], [], [], [], [], []
    ORA-00600: internal error code, arguments: [4194], [15], [24], [], [], [], [], []
    Fri Jan 15 11:19:01 2010
    DEBUG: Replaying xcb 0x9dbdd5b0, pmd 0x9d391c00 for failed op 8
    Doing block recovery for file 379 block 4983
    No block recovery was needed
    Fri Jan 15 11:19:02 2010
    Errors in file /d01/oracle/PROD/db/tech_st/10.2.0/admin/p1_prod1/bdump/p1_pmon_4728.trc:
    ORA-00600: internal error code, arguments: [4194], [23], [16], [], [], [], [], []
    Fri Jan 15 11:19:03 2010
    Flush retried for xcb 0x9db7ddb0, pmd 0x9d3a2f18
    Doing block recovery for file 379 block 92961
    Block recovery from logseq 17, block 420 to scn 5965375195274
    Fri Jan 15 11:19:03 2010
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 17 Reading mem 0
    Mem# 0 errs 0: /d01/oracle/PROD/db/apps_st/data/log02a.dbf
    Mem# 1 errs 0: /d01/oracle/PROD/db/apps_st/data/log02b.dbf
    Block recovery completed at rba 17.422.16, scn 1388.3960588427
    Fri Jan 15 11:19:03 2010
    Errors in file /d01/oracle/PROD/db/tech_st/10.2.0/admin/p1_prod1/bdump/p1_pmon_4728.trc:
    ORA-00600: internal error code, arguments: [4194], [23], [16], [], [], [], [], []
    Fri Jan 15 11:19:03 2010
    PMON: terminating instance due to error 472
    Instance terminated by PMON, pid = 4728

    The database gets up for just around 30 sec. there sufficient space available.
    database version is 10.2.0.
    Here is some of the contents from trace file may be it could help.
    Dump file /d01/oracle/PROD/db/tech_st/10.2.0/admin/p1_prod1/bdump/p1_j001_4774.trc
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    ORACLE_HOME = /d01/oracle/PROD/db/tech_st/10.2.0
    System name:     Linux
    Node name:     prod1.luckyerp
    Release:     2.6.9-42.0.0.0.1.ELsmp
    Version:     #1 SMP Sun Oct 15 15:13:57 PDT 2006
    Machine:     x86_64
    Instance name: p1
    Redo thread mounted by this instance: 1
    Oracle process number: 23
    Unix process pid: 4774, image: [email protected] (J001)
    *** SERVICE NAME:(SYS$USERS) 2010-01-15 11:18:53.962
    *** SESSION ID:(414.1) 2010-01-15 11:18:53.962
    *** ktuc_diag_dmp: dump of current change vector
    ktudb big redo: cnt: 1 um: 0x9d393b28 uba: 0x5ec01377.7984.10
    *** ktuc_diag_dmp: dump of block after image in hex
    Dump of memory from 0x0000000081C0C000 to 0x0000000081C0E000
    *** ktuc_diag_dmp: dump of buffer cache for rdba 0x00001fe8
    Dump of buffer cache at level 4 for tsn=368, rdba=8168
    *** ktuc_diag_dmp: dump of redo for rdba 0x00001fe8
    Dumping current redo log in thread 1
    DUMP OF REDO FROM FILE '/d01/oracle/PROD/db/apps_st/data/log02a.dbf'
    Opcodes *.*
    DBAs (file#, block#):
    (379, 8168)
    RBAs: 0x000000.00000000.0000 thru 0xffffffff.ffffffff.ffff
    SCNs: scn: 0x0000.00000000 thru scn: 0xffff.ffffffff
    Times: creation thru eternity
    FILE HEADER:
         Compatibility Vsn = 169869312=0xa200000
         Db ID=2206994534=0x838c1066, Db Name='P1'
         Activation ID=2206976614=0x838bca66
         Control Seq=481268=0x757f4, File size=2048000=0x1f4000
         File Number=2, Blksiz=512, File Type=2 LOG
    descrip:"Thread 0001, Seq# 0000000017, SCN 0x056cec11be57-0xffffffffffff"
    thread: 1 nab: 0xffffffff seq: 0x00000011 hws: 0x2 eot: 1 dis: 0
    resetlogs count: 0x2a17dba8 scn: 0x056c.eb6c5439 (5965364352057)
    resetlogs terminal rcv count: 0x0 scn: 0x0000.00000000
    prev resetlogs count: 0x2a17daae scn: 0x056c.eb6c3eb2 (5965364346546)
    prev resetlogs terminal rcv count: 0x0 scn: 0x0000.00000000
    Low scn: 0x056c.ec11be57 (5965375192663) 01/15/2010 11:17:25
    Next scn: 0xffff.ffffffff 01/01/1988 00:00:00
    Enabled scn: 0x056c.eb6c5439 (5965364352057) 12/21/2009 16:30:32
    Thread closed scn: 0x056c.ec11be57 (5965375192663) 01/15/2010 11:17:25
    Disk cksum: 0xa41e Calc cksum: 0xa41e
    Terminal recovery stop scn: 0x0000.00000000
    Terminal recovery 01/01/1988 00:00:00
    Most recent redo scn: 0x0000.00000000
    Largest LWN: 0 blocks
    End-of-redo stream : No
    Unprotected mode
    Miscellaneous flags: 0x0
    Thread internal enable indicator: thr: 0, seq: 0 scn: 0x0000.00000000
    REDO RECORD - Thread:1 RBA: 0x000011.00000002.0010 LEN: 0x0070 VLD: 0x05
    SCN: 0x056c.ec11be59 SUBSCN: 1 01/15/2010 11:17:26
    CHANGE #1 MEDIA RECOVERY MARKER SCN:0x0000.00000000 SEQ: 0 OP:17.3
    Crash Recovery at scn: 0x056c.ec11be56
    END OF REDO DUMP
    ----- Redo read statistics for thread 1 -----
    Read rate (ASYNC): 321Kb in 0.03s => 10.45 Mb/sec
    Total physical reads: 4096Kb
    Longest record: 9Kb, moves: 0/914 (0%)
    Change moves: 474/2047 (23%), moved: 0Mb
    Longest LWN: 135Kb, moves: 0/84 (0%), moved: 0Mb
    Last redo scn: 0x056c.ec11c8af (5965375195311)
    NO VALID LOG MEMBER FOR SEQ# 16 OF THREAD 1!
    *** 2010-01-15 11:18:54.087
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [4194], [23], [16], [], [], [], [], []
    ----- Call Stack Trace -----

  • ERP Sales Order : Performance issues with Product Proposal

    Hi
    we are working on CRM 2007 solution and are facing serious performance issues with the ERP Sales Order functionality provided in the ICWC of this version.
    In our development we are adding items in the ERP cart as soon as the user clicks on the 'New Sales Order' button of the sales order sreen. We get the items by very simple and optimized call to the ERP system and then add these entities in the Item Cart (Item collection ...in simple sense).
    For adding 10 items the application takes 10 seconds and this is too much for adding just 10 items.
    Can you please provide any Notes/alternative solution to resolve this issue.
    Regards
    Ajitabh

    Hi Ajithabh,
    Please apply the following SAP notes:
    1061423 - Interaction Center ERP Order Performance improvement
    1262277 - Performance: CRM value help causes dumps in ERP
    1292817 - Performance: Reduce RFC calls during creation of ERP order.
    1319885 - ERP sales order search with external reference
    1326527 - Reducing number of RFC calls in IC ERP Sales Order
    I hope it helps!
    Regards,
    Gabriel Santana

  • How to Stop Cookies & Other Devices Hammering Me with Repeated Ads?

    While researching this I see many people have many different issues with the various ads we are subjected to while surfing the web, but I could find nothing covering the current annoyance I am experiencing now. My apologies if this is old hat to everyone. I thought it was to me as well until I found deleting the annoying cookies did not solve my problem. It seems the world of online ads has moved on and left me in the dust. I have no gripes with Safari or OS X 10.6.4 which is what I am using. I would just like to better understand this boil on the a** of web browsing, so I might more effectively deal with it.
    This is the Reader's Digest Condensed version of the issue. While it's bugging the heck out of me, it doesn't warrant 3 pages of detailed observations and notes. A couple of weeks ago I was interested in a particular type of welding equipment, on a small home-hobby scale. I buy many, many items online. Most all my hobby equipment and supplies I get from online suppliers. What I was looking for was something I was not even sure existed in a small hobby version (a type of spot welding machine). So, I was searching online sellers' stock as well as technical info that might give me a clue to what, if anything, that existed in the scale I desired.
    I was searching using the Google bar on Safari 5.0.2. I sometimes found Google's auto completion of my search string to be a bit pushy, but sometimes it was also helpful so I just went with it. For the better part of a day I searched everywhere the browser and Google took me. I visited at least a hundred sites that popped up on my search results pages and / or were linked to a page I visited. I eventually learned there was no viable product out there for me but like most tool nuts I enjoyed the window shopping and even bookmarked some promising sites for another day. Just a typical day browsing the web. I was never directed to any overtly hostile site. I never saw a single pop up ad nor was I ever hijacked to some site I did not wish to visit. Like most, my Safari settings have pop up windows disabled, I only accept cookies from sites I visit, I don't bother with private browsing etc.
    OK, the point to all this. Every webpage I see since that day searching for a spot welder, has at least one ad for a welder on it. Most are specifically spot welders but not all. Most come from a Seller named Eastwood. They are an old school autobody repair supplies seller. I don't remember ever visiting their site as I know them well and they don't carry what I was looking for. Now I know this is all normal and I have not described anything close to a malfunction of software or hardware, but that's my issue. I thought it was kind of amusing for a day or two but seeing ads for welders on every single page I load is making me feel a tiny bit exploited. I thought I knew how to fix this. I searched my Cookies for any containing "weld" or "Eastwood." I found a total of about 10 and deleted them and emptied the trash. I figured this would solve the issue. It did not. I see welders everywhere. I feel like a spoof on a horror flick but instead of seeing dead people I'm stuck with seeing welders! Can someone tell me how this persists? Did Google sell me out (and are they still?) Did I just not dig deep enough into the Cookies? Or (and this is my biggest fear) is there some new super sophisticated way of serving these ads to me that bypasses my Cookies altogether? Something I never paid attention when (or if) someone was sounding the alarm? And, no I have never downloaded any questionable extensions, toolbars, helper apps etc. I am well versed in the usual Windows malware and tricks to manipulate someone's browser, it's nothing like that. It's not an evil app trying to take over, it's just a PITA Cookie or ??? that I don't know how or where to find to get rid of it. I hope that's all it is, or that you folks will point me in the right direction of whatever it is.
    If anyone has time to explain this a bit and suggest what I might do to stop the ads, I'd greatly appreciate your time and info. And if you ever need welding equipment, I can give you several sites, a minute. Thanks in advance.
    Jim

    Thanks for the help. Dumping Google cookies seems to have done it. I tried the responses in order and am grateful to Klaus1 also for the Glimmer Blocker suggestion but it was not needed. I wish I understood the "system" better and how Google gets around the only accept cookies from sites I visit setting. Seems Google is the 800 lb. gorilla and can do pretty much as it wishes. Thanks Andy.

Maybe you are looking for

  • Abap wp table stop reason rpc when  u0131 want login as turkish

    hi gurus anyone help me ; abap wp table is stopped reason rpc when ı want login turkish language please help me ı cant solve this problem.. trc file: "dev_w4", trc level: 1, release: "700" ACTIVE TRACE LEVEL           1 ACTIVE TRACE COMPONENTS      a

  • Public Sector Records Management Incoming Post Items

    My task is to create Incoming Post Items from SAP-Office Emails and automatically assign them to records. Now I'm at the point to automatically assign the Incoming Post Items to records. I need access to the content of the Post Items for automatic as

  • Can't add text

    I took a screenshot of something I like. I now want to add text. Can't do it. I even saved as psd from a jpeg. I click with text tool, but a new layer just wont happen. what doing wrong?

  • Satellite A50-532: Synchronization / Offline-files

    Hi, I am using a Satellite A50-532 and I want to make files available locally / offline that are stored on a server. I used to use the XP build-in Offline-files functionality with my old laptop which worked without any problems. Unfortunatley it does

  • Trouble printing on Epson Stylus c62

    I have a Epson C62, connected to my Airport express, Suddenly i am having problems printing, I unistall everything and install it again, but i'm still having the problem.