Stack corrupted around CNiPointers

Hi,
I'm trying to convert a Measurement Studio project from 6.0 to 8.1.1 for Visual Studio 2005. It's a LabView callable DLL which uses UI components. When I run it in debug mode I get numerous Run-Time Check Failures saying that the stack is corrupted around local CNiPointers objects. I also get corruption of locals on the stack near calls to CNiGraph::GetAxes() and GetPlots(). One common thing among all the problem areas is the use of .Item() on objects of type CNiPointers, CNiAxes, and CNiPlots. In release mode I have also seen evidence of stack corruption in those areas.
Is there a problem with those NI classes or do I have some project setting wrong?
Thanks.
Claus

Hi, Jonathon,
Thanks for the quick response. I am happy to give you more info, including tests I've done already, and to try your suggestions. Here are anwers to your points:
- Yes, everything worked fine in 6.0. When it came time to upgrade, I first tried to build it under Visual Studio 2005 with the original Meas. Studio 6.0 headers and libs but it wanted to link the old MFC libs and could not find them. So I installed Meas. Studio 8.1.1 (I was afraid to install 8.1.2 from the December CD set because of "risk of bodily injury") and deleted the old headers and libs from the project. It recompiled and linked just fine.
- Yes, the stack corruption breakpoints happened the first time I ran in debug mode. When I turned off the stack checker, I got some bogus failures warning of using uninitialized variables. I say "bogus" because when I step through the code, the variables are clearly initialized. I suspect that the unchecked stack corruption is confusing the variable checker. When I turned that off as well, the debug code worked correctly. However, the release build still failed. I added some tracing dumps to the release build and saw that a local variable called "bRet" was being clobbered by this unrelated line of code:
m_graph.GetAxes().Item(1).SetMinMax(m_dXAxisMin, m_dXAxisMax);
but only in release mode - the debug build did not change the value of bRet! I took that as more evidence of stack corruption.
- Yes, the stack check breakpoints always occur in the three places I mentioned in the first post and the release mode failure always occurs as above (given the same app test conditions). Another interesting test result is that, if I turn on speed optimization, then the release build does not fail as above. Rather, it causes the LabView app to abruptly exit completely without any dialog or warning!
- I will try to build and run a similar NI example. If that works fine, I'll try to strip down my project and demonstrate the failure.
- The error says "Run-Time Check Failure #2 - Stack around the variable 'pointers' was corrupted." The local variable declaration is:
CNiPointers pointers = m_sliderWnd.GetPointers();
If I stick a "return;" just after that line, I get the same message but if I put "return;" just before that line, I get no error there!
- I am calling the debug DLL from LabView. And the debug DLL is calling release builds of the Meas. Studio libraries. Is there any way to link in debug versions of these libs? It would be great to step through some of the NI code (at least the top, non-proprietary layers) like you can with MFC libraries.
So I hope you can see why I suspect true stack corruption within the calls into those NI classes. Maybe I have some build setting wrong. This project was automatically converted by Visual Studio 2005 from the old one. I also tried creating a new Meas. Studio project and compared its settings with mine. I then changed some of my settings to match but to no avail. The only one I did not change was the "Struct Member Alignment". The new project used "8 Bytes" but mine requires "1 Byte" because it must parse LabView arrays and clusters.
Thank you for your attention.
Claus

Similar Messages

  • Tools for root cause analysis of stack corruption?

    I'm experiencing extremely rare stack corruption that results in SEGV core dumps for a large and complex C++ program. Having run all the standard tools such as IBM Rational Purify, Sun mdb/libumem and dbx/rtc (although unfortunately using dbx check -access takes inordinately long and eventually crashes before the main() function is executed), I am no closer to discovering the root cause of the stack corruption. I'm confident based on the tools run and on the stack trace from the core dump that the problem is not heap corruption, but stack corruption.
    The environment is Sun Studio 12 (but not update 1) on Solaris 10 on SPARC. The program is compiled with minor optimisation (-xO2 -xbuiltin=%all).
    Is anyone aware of other tools or approaches that could help pinpoint the problem? Your help would be much appreciated!
    Thanks in advance,
    Simon

    If you are in fact having stack corruption issues, I don't think any of the tools you mentioned other than Purify would help you identify it.
    You may also be simply running out of stack space, and not having corruption issues. Is your app multi-threaded? If so, you could increase the stack size your threads use to something larger than the default.
    Another thing you can look for are syslog entries stating "no swap space to grow stack" for your process, you've run out of virtual memory. To avoid this, you can "pre-allocate" your stack memory with code similar to this:
    void growStack( size_t bytes )
        char *mem = ( char * ) alloca( bytes );
        memset( mem, 0, bytes );
        return;
    }That code, when called, will force the creation of stack memory virtual pages backed by swap, before your server gets into a situation where free memory might be in short supply.
    I also seem to recall that Solaris under certain circumstances will allocate stack memory with the MAP_NORESERVE option, which means swap space won't be reserved for your stack. If your process gets swapped out, its stack(s) will be lost and you'll probably get a SIGSEGV or SIGBUS. See this bug:
    [http://bugs.opensolaris.org/view_bug.do?bug_id=1221729|http://bugs.opensolaris.org/view_bug.do?bug_id=1221729]
    I remember working a similar issue for a customer running large apps on Sun E15Ks, maybe about 5 years ago. To work around this behavoir, I think you'll need to explicitly allocate stack memory for any threads you may be creating. I think that's what we had to do.

  • Debugging: Run-Time Check Failure #2 - Stack around the variable 'LoggerThread' was corrupted.

    I am getting:
    Run-Time Check Failure #2 - Stack around the variable 'LoggerThread' was corrupted.
    I have searched as much as I can for a description of how to diagnose, but I have not found anything. I don't know how to determine the specific address that is being corrupted. If I knew that, then I could of course set a breakpoint on the condition of that changing.
    I have found many answers about other instances of this error, but nothing that descibes how to diagnose this problem. All other problems were simple enough that the problem could be determined by looking at the code. I have looked at my code extensively and I don't see a problem. One of the previous answers I have found is Error: Stack corruption around the variable 'tm' but the current version of the program uses only default alignment.
    This particular problem is a symptom of a problem that has had various other symptoms, most of which would be more difficult to diagnose. Therefore the problem is probably more subtle than most. I initially encountered the problem in a DLL project, but I wrote a console program to use and test the relevant code. It is the console version that I am debugging.

     Sam Hobbs wrote:
     Holger Grund wrote:
    Hey, these data breakpoints are really not that hard to use ;-)
    Actually they are useless for me when I use my own system, which is only 350 MHz. On that system, even very simple programs run noticeably slow and any meaningful debugging is impossible. The problem I am encountering I am developing and debugging using a fast system, so the performance is not likely to be a probem, but that has been a problem for me in the past.
    You probably haven't set the breakpoints in the correct way (again you should calculate the address yourself and leave the context empty so that the hardware debug breakpoint registers can be used).
     Sam Hobbs wrote:
    One of us does not understand. First, I must correct what I said before; the stack is used in reverse of what I was thinking. I knew that but I forgot. In other words, for each item local appearing in a function, the addresses decrease. The processor's stack pointer register is decreased for each item put into it, which makes sense, because then the processor knows there is a problem when the register gets to zero or less.
    Yes, I certainly understand that the error message is referring to memory before and after LoggerThread.
    There is an important difference between stack memory before a function's allocations and after.
    So for example if we have:
    Code Snippet
    void Level3(int a) {
     char Local[4];
    std::cout << "In Level3 Local is at " << &Local << '\n';
    void Level2(int a) {
     char Local[4];
    std::cout << "In Level2 Local is at " << &Local << '\n';
    Level3(3);
    void Level1(int a) {
     char Local[4];
    std::cout << "In Level1 Local is at " << &Local << '\n';
    Level2(2);
    int main(int argc, char* argv[]) {
     (void)argc, argv;
     char Local[4]="321";
     unsigned *pStack;
    _asm {mov pStack, esp}
    std::cout << "The stack is at " << pStack << '\n';
    std::cout << "In main Local is at " << &Local << '\n';
    Level1(1);
    return 0;
    Then the ouput I get is:
    The stack is at 0012FF1C
    In main Local is at 0012FF6C
    In Level1 Local is at 0012FF0C
    In Level2 Local is at 0012FEB0
    In Level3 Local is at 0012FE54
    Note that the addresses decrease. If I create a breakpoint using "{main,,} *(Local-256)" for 256 elements, then that breakpoint breaks constantly due to normal use of the stack. That makes debugging more difficult; are you aware of that problem?
    Unsurprisingly the debugger will watch for modifications of 256 bytes if you tell it to do so. But I don't see why you would want to do it? It is obvious that this extends into callee stack space. There are only two bytes that you should be interested in: the one before the clobbered local and the one after. Of course, during its lifetime its allocated address will never change. And in debug stack frames its memory location is never shared with any other code. Any modification to it indicates a programming error.
    Also, do note that scoped data breakpoints have had some performance problems. Again, if you care about performance calculate the address manually and set a data breakpoint without a C++ scope and make sure you don't exceed the number of available hardware watchpoint registers (IIRC there are 4 HW breakpoint registers which can watch 1,2 or 4 bytes at a given (aligned?) address). With HW watchpoints you shouldn't see any performance degradation.
    -hg

  • Graphic corruption on Dashboard and Volume change

    Can anyone help identify this problem?
    http://imgur.com/XcuZT
    http://imgur.com/HBV34
    In addition to these, sometimes there's also a white block under the menu bar and weird graphic corruptions around shadows.
    I received a Wacom graphic tablet for Christmas but apart from that no new drivers have been installed. Also, Opera has been crashing when I press a down or backspace key (though only sometimes) but that's probably unrelated.

    A couple more examples:
    http://imgur.com/HC21M
    http://imgur.com/6Cz1P
    By the lack of responses can I assume this is fairly unique to me?

  • DV to m2v - Some frames become corrupted.

    After transcoding some DV files with white 'flash frames' to m2v using Compressor, i noticed that these same frames are green with lots of corruption around them.
    Any clue as to why this might happen?
    http://www.zen67493.zen.co.uk/corruption.jpg
    Is it anything to do with field dominance of DV as opposed to mpeg2?
    Thanks
    J

    I have just found that the same thing happens when I transcode to H.264. What's going on here!?
    J

  • Corruption when transcoding from DV to Mpeg to in FCP, QT and Compressor

    After transcoding some DV files (exported from FCP) with white 'flash frames' to m2v using Compressor, i noticed that these same frames are green with lots of corruption around them.
    Any clue as to why this might happen?
    http://www.zen67493.zen.co.uk/corruption.jpg
    Any help would be appreciated.
    Thanks
    J

    Thanks for the help and tips.
    Ok so when I turn on the chroma and luma range check I get an "!" in the window, so there is clearly too much of something!
    However when I lower the 'Max Luma' level on the filter I'm using (Too Much Too Soon Flashframe), I still get the same problem when converting to m2v.
    I am begining to think that it's filter itself is causing the problem rather that the compression. The DV codec seems to handle the out of range luma but as soon as I convert it to m2v, the problem is back.
    So....deep breath, can anyone recommend a filter that will give me similar results to the 'Too Much Too Soon - Flashframe' transition? It increases Luma whilst blurring either the out going or incoming clip and it looks great.
    Thanks again for all your help. Unfortunately I am in the UK Michael and unable to pop of to your edit suite. Thanks for the kind offer though.

  • X64 (64 bit) C API bug

    I am trying to get the 64 bit C API up and running.  I have the 32 bit API running and it is working correctly.  It appears that any API call in the 64 bit environment that returns more than a single data type overwrites an area of memory it doesn't own. 
    I am working in VB.NET and wrapping the calls with marshaling.  The simplest example of a call that doesn't work correctly is querying the active channels on the scope:
    From the C header:
    niVB_Status NIVB_DECL niVB_MSO_QueryEnabledAnalogChannels(
       niVB_MSO_InstrumentHandle instrumentHandle,
       char* channels,
       size_t channelsSize,
       size_t* channelsSizeOut);
    There are several different ways to code a managed to unmanaged translation for this.  One is to use an allocation to construct a pointer to a buffer area:
    Pointer = Marshal.AllocHGlobal(MAX_CSTRING_LENGTH)
    The declaration then looks like this:
          <DllImport(niVirtualBenchModuleName64, EntryPoint:="niVB_MSO_QueryEnabledAnalogChannels", CallingConvention:=CallingConvention.Cdecl)> _
          Public Shared Function niVB_MSO_QueryEnabledAnalogChannels_64(ByVal instrumentHandle As IntPtr, ByVal channels As IntPtr, ByVal channelsSize As UInteger, ByRef channelsSizeOut As UInteger) As niVB_Status
          End Function
    When the call is made, the channelsSizeOut call returns 23 characters (which is correct).  The channels IntPtr is zeroed out however (this should never happen, it suggests the stack is getting corrupted.  If I put a huge array locally around the pointer, sometimes it's not corrupted. 
    Or you can call into the function using a stringbuilder call.  It basically replaces the IntPtr parameter with a string builder using marshaling to get a pointer:
            Dim bufChannels As New StringBuilder(MAX_CSTRING_LENGTH)
    then the call looks like this:
          <DllImport(niVirtualBenchModuleName64, EntryPoint:="niVB_MSO_QueryEnabledAnalogChannels", CallingConvention:=CallingConvention.Cdecl)> _
          Public Shared Function niVB_MSO_QueryEnabledAnalogChannels_64(ByVal instrumentHandle As IntPtr, <MarshalAs(UnmanagedType.LPStr)> ByVal channels As StringBuilder, ByVal channelsSize As UInteger, ByRef channelsSizeOut As UInteger) As niVB_Status
          End Function
    Again, calling into this function causes the stringbuilder class to be set to (nothing) which is essentially showing that the stack space where the pointer to the stringbuilder class resides is getting corrupted.
    It is important to note that this code works perfectly with the 32 bit version of the DLL (using either programming construct). 
    Solved!
    Go to Solution.

    I don't think this is a C API bug; I can do the following on both x86 and x64 without triggering any of MSVC's stack canaries. (Note that for brevity there's no error-checking in this snippet.)
    #include <stdlib.h>
    #include <stdio.h>
    #include "nivirtualbench/nivirtualbench.h"
    int main(int argc, char* argv[])
    niVB_LibraryHandle libHandle = NULL;
    niVB_MSO_InstrumentHandle msoHandle = NULL;
    size_t channelsSizeOut = 0;
    char* enabledChannels = NULL;
    niVB_Initialize(NIVB_LIBRARY_VERSION, &libHandle);
    niVB_MSO_Initialize(libHandle, "brandonbench", false, &msoHandle);
    niVB_MSO_QueryEnabledAnalogChannels(msoHandle, NULL, 0, &channelsSizeOut);
    enabledChannels = (char*)calloc(channelsSizeOut, sizeof(char));
    niVB_MSO_QueryEnabledAnalogChannels(msoHandle, enabledChannels, channelsSizeOut, &channelsSizeOut);
    printf("Enabled channels: %s\n", enabledChannels);
    free(enabledChannels);
    niVB_MSO_Close(msoHandle);
    niVB_Finalize(libHandle);
    I suspect the problem is in your marshaling. The size_t parameters are probably best represented using System.UIntPtr, and not the UInteger type; size_t is 32-bit on 32-bit platforms and 64-bit on 64-bit platforms, but UIntegers are 32-bit on both. Trying to write channelsSizeOut is probably what's triggering the stack corruption.
    Brandon Streiff
    National Instruments
    Software Engineer

  • Error run time  DYNPRO_FIELD_CONVERSION

    I have a dump:
    Errore run-time        DYNPRO_FIELD_CONVERSION
           Verific. il     28.11.2007 h  02:12:16
    A conversion error occurred.
    Causa dell'errore
    The current screen processing was terminated, since a situation
    occurred from which it could not continue processing.
    This is probably due to an error in the current screen of the ABAP
    program.
    Possibili soluzioni
    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.
    Analisi errori
    The program flow was interrupted and could not be resumed.
    Program "SAPMM06B" tried to display fields on screen 0106. However, an
    error occurred while this data was being converted.
    Indic. per la correzione
    A conversion error occurred while the program was trying to
    display data on the screen.
    The ABAP output field and the screen field may not have the
    same format.
    Some field types require more characters on the screen than
    in the ABAP program. For example, a date field on a screen needs
    two characters more than it would in the program. When attempting to
    display the date on the screen, an error will occur that triggers the
    error message.
                  Screen name.............. "SAPMM06B"
                  Screen number............ 0106
                  Screen field............. "EBAN-MENGE"
                  Error text............... "FX015: Sign lost."
    Further data:
    If you cannot solve the problem yourself, please send the
    following documents to SAP:
    1. A hard copy print describing the problem.
       To obtain this, select the "Print" function on the current screen.
    2. A suitable hardcopy prinout of the system log.
       To obtain this, call the system log with Transaction SM21
       and select the "Print" function to print out the relevant
       part.
    3. If the programs are your own programs or modified SAP programs,
       supply the source code.
       To do this, you can either use the "PRINT" command in the editor or
       print the programs using the report RSINCL00.
    4. Details regarding the conditions under which the error occurred
       or which actions and input led to the error.
    It is probably not possible to eliminate the system error
    with ABAP alone.
    If you have access to SAPnet, you can search for a relevant note
    using the following keywords:
    "DYNPRO_FIELD_CONVERSION" " "
    "SAPMM06B" bzw. "MM06BO0R_RM06B-EPSTP"
    "RM06B-EPSTP"
    Ambiente sistema
    SAP Release.............. "620"
    Application server....... "assapoa"
    Network address.......... "10.58.19.23"
    Operating system......... "AIX"
    Release.................. "5.2"
    Hardware type............ "00CB585E4C00"
    Character length......... 8 Bits
    Pointer length........... 64 Bits
    Work process number...... 26
    Short dump setting....... "full"
    Database server.......... "ars005sapdb"
    Database type............ "ORACLE"
    Database name............ "PRD"
    Database owner........... "SAPR3"
    Character set............ "it_IT.ISO8859-1"
    SAP kernel............... "640"
    Created on............... "Jul 16 2006 20:40:53"
    Created in............... "AIX 1 5 00538A4A4C00"
    Database version......... "OCI_920 "
    Patch level.............. "139"
    Patch text............... " "
    Supported environment....
    Database................. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE
    10.2.0.."
    SAP database version..... "640"
    Operating system......... "AIX 1 5, AIX 2 5, AIX 3 5"
    Utente, transazione.....
    Client.............. 300
    User................ "CONSULENTI"
    Language key........ "I"
    Transaction......... "ME52 "
    Program............. "SAPMM06B"
    Screen.............. "SAPMM06B 0106"
    Screen line......... 26
    Informazioni punto di interr.
    The termination occurred in the ABAP program "SAPMM06B" in "RM06B-EPSTP".
    The main program was "SAPMM06B ".
    The termination occurred in line 14 of the source code of the (Include)
    program "MM06BO0R_RM06B-EPSTP"
    of the source code of program "MM06BO0R_RM06B-EPSTP" (when calling the editor
    140).
    The program "SAPMM06B" was started as a background job.
    Errore verificatosi durante un'elaborazione Batch-Input
    Dettaglio cd. sorgente
    000010   *eject
    000020   *----
    000030   * Positionstyp aufbereiten                                             *
    000040   *----
    000050   MODULE RM06B-EPSTP OUTPUT.
    000060
    000070   CALL FUNCTION 'ME_ITEM_CATEGORY_OUTPUT'
    000080        EXPORTING
    000090             PSTYP = EBAN-PSTYP
    000100        IMPORTING
    000110             EPSTP = RM06B-EPSTP
    000120             PTEXT = T163Y-PTEXT.
    000130
      ENDMODULE.
    Contenuto campi sistema
    Cmpo SY  Contenuto.................... Cmpo SY  Contenuto....................
    SY-SUBRC 0                             SY-INDEX 0
    SY-TABIX 1                             SY-DBCNT 1
    SY-FDPOS 1                             SY-LSIND 0
    SY-PAGNO 0                             SY-LINNO 1
    SY-COLNO 1                             SY-PFKEY VU
    SY-UCOMM
    SY-TITLE Richiesta d'acquisto mod.: Riepilogo pos.
    SY-MSGTY                               SY-MSGID
    SY-MSGNO 000                           SY-MSGV1
    SY-MSGV2                               SY-MSGV3
    SY-MSGV4
    Richiami/eventi attivi
    N..... Tipo........ Nome..........................
           Programma
           Include                                  Riga
           Classe
         1 MODULE (PBO) RM06B-EPSTP
           SAPMM06B
           MM06BO0R_RM06B-EPSTP                        14
    Variabili selezionate
         1 MODULE (PBO) RM06B-EPSTP
           SAPMM06B
           MM06BO0R_RM06B-EPSTP                        14
    DIEN                           DIEN
                                   4444
                                   495E
    EBAN-PSTYP                     0
                                   3
                                   0
    LIM                            LIM
                                   4442
                                   C9D0
    RM06B-EPSTP
                                   2
                                   0
    POTE                           TXP
                                   5552
                                   4800
    T163Y-PTEXT                    Standard
                                   57666676222222222222
                                   341E4124000000000000
    Chiamate applicazione
    Il dump non riporta informazioni relative
    Informazioni applicazione
    Il dump non riporta informazioni relative
    Note interne
    The termination occurred in the function "dynpconv.c" of the SAP
    Basis System, specifically in line 701 of the module
    "//bas/640_REL/src/krn/dynp/dybas.c#4".
    The internal operation just processed is "ENDM".
    The internal session was started at 20071128021215.
    Application server....... "assapoa"
    Network address.......... "10.58.19.23"
    Operating system ........ "AIX"
    Release.................. "5.2"
    Hardware type............ "00CB585E4C00"
    Database server.......... "ars005sapdb"
    Database type............ "ORACLE"
    Database name............ "PRD"
    Database user ID......... "SAPR3"
    Rich. attivi nel nucleo SAP
    => 64 bit R/3 Kernel
    => 64 bit AIX Kernel
    => Heap limit      = unlimited
    => Stack limit     = unlimited
    => Core limit      = 1073741312
    => File size limit = unlimited
    => Heap address  = 0x11dd952a0
    => Stack address = 0xfffffffffffa920
    => Stack low     =  0xfffffffffffa920
    => Stack high    =  0xffffffffffff910
    => Stack Trace:
         AixStack() at 0x1000206bc
         CTrcStack2() at 0x1000207b4
         rabax_CStackSave__Fv() at 0x1001520d4
         ab_rabax() at 0x10014ef04
         dyHandleError() at 0x1005a6850
         dypcnvoXt() at 0x100cbd6cc
         dynplend() at 0x1010cf268
         dynpmcal() at 0x1010c6f60
         dynppbo0() at 0x1010c5134
         dynprctl() at 0x1010ce40c
         dynpen00() at 0x100bd0c30
         Thdynpen00() at 0x1000a1f7c
         TskhLoop() at 0x1000a5298
         tskhstart() at 0x1000bb0d8
         DpMain() at 0x101579ca0
         nlsui_main() at 0x10154d428
         __start() at 0x1000002fc
    !!! Invalid stack address encountered: 0x0
    !!! Stack corrupted.
    Lista dei programmi ABAP in oggetto
    Tipo
    Programma
    DataGen   Ora
    Dim.car.
    Prg
    SAPMM06B
    25.09.2007 16:07:55
    514048
    Prg
    SAPMSSYD
    05.06.2002 17:09:33
    16384
    Prg
    SAPFSYSCALLS
    14.02.2002 14:22:47
    6144
    Typ
    T160
    12.05.1997 15:22:15
    2048
    Prg
    SAPFMMEX
    18.11.2007 09:34:59
    177152
    Typ
    TSTCT
    14.02.1998 14:31:34
    2048
    Typ
    TMED
    27.08.1994 21:59:16
    2048
    Typ
    TPRG
    14.02.1998 14:06:12
    2048
    Typ
    T160D
    11.02.2000 14:20:36
    5120
    Typ
    T160V
    14.05.1998 22:44:11
    6144
    Typ
    T168T
    28.08.1997 09:05:04
    2048
    Prg
    SAPLMEXF
    18.11.2007 09:35:00
    166912
    Typ
    T162
    02.10.2001 13:56:13
    2048
    Prg
    SAPLSTUP
    17.06.2004 12:05:43
    65536
    Prg
    SAPLCNDP
    17.06.2004 15:06:47
    163840
    Prg
    SAPFGUICNTL
    09.01.2003 17:18:52
    20480
    Prg
    SAPLOLEA
    17.06.2004 15:12:42
    78848
    Prg
    SAPLSGUI
    09.01.2003 17:15:12
    31744
    Prg
    SAPLSTTM
    17.06.2004 15:08:30
    75776
    Prg
    SAPLSBDC
    07.01.2003 18:31:25
    38912
    Prg
    SAPLSFES
    17.06.2004 15:15:58
    174080
    Prg
    SAPLURFC
    17.06.2004 14:25:28
    16384
    Prg
    SAPLSPLUGIN
    14.02.2002 14:22:48
    6144
    Typ
    SWCBCONT
    15.11.2000 17:55:11
    3072
    Typ
    OLE_VERBS
    04.04.1995 16:02:20
    2048
    Typ
    OLE_PA
    04.04.1995 16:02:19
    2048
    Prg
    SAPLSCNT
    14.02.2002 14:22:47
    24576
    Prg
    SAPSHDTV
    17.06.2004 11:46:16
    28672
    Typ
    EBANW
    17.06.2004 15:55:16
    21504
    Prg
    CL_CONTEXTFIELD_MM============CP
    25.09.2007 16:07:49
    9216
    Prg
    /1BCDWBEN/SAPLMEN0000
    18.11.2007 09:35:16
    237568
    Prg
    SAPLSENA
    17.06.2004 14:19:40
    28672
    Typ
    EBAN
    13.11.2006 11:19:59
    20480
    Prg
    CL_PROCESS_STATE_MM===========CP
    25.09.2007 16:07:50
    16384
    Prg
    SAPLSWUG
    17.06.2004 14:22:25
    53248
    Typ
    SWCONT
    04.04.1995 16:18:01
    2048
    Typ
    OBJ_RECORD
    14.02.1998 08:30:43
    2048
    Typ
    SWOTOBJID
    04.05.1995 15:20:52
    2048
    Typ
    SWHACTOR
    04.04.1995 16:18:07
    2048
    Prg
    CL_GOS_MANAGER================CP
    11.04.2001 13:02:00
    17408
    Prg
    CL_GOS_VIEW_MANAGER===========CP
    24.01.2002 20:31:22
    22528
    Typ
    SIBFLPOR
    15.11.2000 17:53:54
    2048
    Typ
    SGOS_MVOBJ
    24.07.2001 09:18:06
    3072
    Typ
    BORIDENT
    28.08.1997 08:38:50
    2048
    Prg
    SAPLSUU1
    17.06.2004 15:13:06
    165888
    Typ
    USR02
    17.06.2004 15:05:37
    7168
    Typ
    USREFUS
    07.01.2003 18:24:17
    2048
    Typ
    SIBFLPORB
    15.11.2000 17:53:55
    2048
    Prg
    CL_GOS_TOOLBOX_MODEL==========CP
    17.06.2004 15:04:37
    38912
    Typ
    SGOS_MODL
    24.07.2001 09:18:05
    4096
    Typ
    OBJ_RECORD
    14.02.1998 08:30:43
    2048
    Prg
    SAPLSWOR
    17.06.2004 15:08:55
    270336
    Typ
    SWOTRI
    03.01.1996 15:29:13
    2048
    Typ
    SWOTRETURN
    20.08.1998 10:59:29
    3072
    Prg
    SAPLSWOH
    14.02.2002 14:22:48
    7168
    Typ
    SWOTENV
    11.02.2000 14:20:34
    4096
    Typ
    TOJTD
    15.11.1995 03:08:46
    2048
    Prg
    SAPLRHS0
    14.02.2002 14:22:47
    11264
    Prg
    SAPLSDIFRUNTIME
    17.06.2004 14:20:44
    82944
    Typ
    DFIES
    09.11.2000 14:07:05
    8192
    Typ
    X031L
    15.11.2000 18:03:28
    5120
    Prg
    SAPLSDNT
    17.06.2004 12:06:43
    199680
    Prg
    SAPLSUGS
    21.11.2002 10:20:02
    29696
    Typ
    TOJTD
    15.11.1995 03:08:46
    2048
    Typ
    TOJTB
    14.02.1998 14:02:55
    8192
    Typ
    SWOTLI
    04.04.1995 17:30:59
    2048
    Typ
    T100
    28.08.1997 09:04:45
    2048
    Prg
    CL_EXITHANDLER================CP
    17.06.2004 15:04:37
    26624
    Prg
    CL_ABAP_TYPEDESCR=============CP
    17.06.2004 14:19:33
    21504
    Prg
    CL_ABAP_ELEMDESCR=============CP
    17.06.2004 14:19:13
    18432
    Prg
    CL_ABAP_DATADESCR=============CP
    17.06.2004 14:19:13
    14336
    Prg
    CL_ABAP_REFDESCR==============CP
    17.06.2004 14:19:33
    16384
    Prg
    CL_ABAP_STRUCTDESCR===========CP
    17.06.2004 14:19:33
    19456
    Prg
    CL_ABAP_COMPLEXDESCR==========CP
    17.06.2004 14:19:13
    13312
    Prg
    CL_ABAP_TABLEDESCR============CP
    17.06.2004 14:19:33
    17408
    Prg
    CL_ABAP_CLASSDESCR============CP
    17.06.2004 14:19:33
    23552
    Prg
    CL_ABAP_OBJECTDESCR===========CP
    17.06.2004 14:19:33
    25600
    Prg
    CL_ABAP_INTFDESCR=============CP
    17.06.2004 14:19:13
    19456
    Prg
    CL_ABAP_SOFT_REFERENCE========CP
    29.03.2001 16:42:12
    7168
    Prg
    CL_ABAP_REFERENCE=============CP
    14.02.2002 14:22:46
    6144
    Prg
    IF_EX_GOS_SRV_SELECT==========IP
    04.12.2000 16:22:18
    4096
    Prg
    %_CABAP
    07.01.2003 18:31:23
    23552
    Typ
    SXS_INTER
    30.11.1998 15:55:16
    2048
    Prg
    SAPLSEXV
    17.06.2004 15:04:40
    106496
    Prg
    CL_BADI_FLT_DATA_TRANS_AND_DB=CP
    17.06.2004 15:04:37
    33792
    Typ
    SXS_ATTR
    20.08.2001 12:23:27
    4096
    Typ
    V_EXT_ACT
    09.11.2000 14:27:05
    2048
    Typ
    SXC_EXIT
    09.11.2000 14:23:43
    2048
    Prg
    CL_EX_GOS_SRV_SELECT==========CP
    17.06.2004 15:04:37
    13312
    Prg
    %_CSXRT
    17.06.2004 15:04:37
    11264
    Prg
    CL_EXIT_MASTER================CP
    17.06.2004 15:04:37
    13312
    Typ
    V_EXT_IMP
    09.11.2000 14:27:05
    2048
    Typ
    V_EXT_IMP
    09.11.2000 14:27:05
    2048
    Prg
    SAPLBDLS
    17.06.2004 11:45:48
    176128
    Typ
    T000
    11.09.1997 10:17:18
    4096
    Typ
    SWOTRTIME
    14.02.1998 10:19:46
    3072
    Prg
    %_CSWOB
    14.02.2002 14:22:46
    13312
    Typ
    SWOTINVOKE
    14.02.1998 10:18:40
    6144
    Typ
    SWOTLV
    04.12.2000 14:59:45
    10240
    Prg
    SAPLSWCD
    17.06.2004 15:06:55
    78848
    Prg
    RBUS2105
    13.11.2006 11:20:02
    57344
    Prg
    CL_GOS_PUBLICATION============CP
    13.11.2000 16:31:37
    15360
    Prg
    SAPLSGOSHIST
    17.06.2004 14:23:50
    46080
    Typ
    EBKN
    16.06.2004 13:09:57
    9216
    Typ
    T161
    16.06.2004 13:14:35
    5120
    Typ
    T161T
    14.02.1998 10:55:58
    2048
    Typ
    CMMDA
    18.09.2001 10:02:31
    4096
    Prg
    SAPLMMDA
    04.09.2006 11:00:54
    65536
    Typ
    TWLAD
    13.08.1997 14:04:45
    2048
    Typ
    TTXID
    27.08.1999 17:40:33
    3072
    Prg
    SAPLSTXD
    17.06.2004 15:06:22
    347136
    Typ
    STEXTNAME
    18.09.2001 10:03:52
    1024
    Typ
    STXDRID
    26.02.1999 14:48:42
    2048
    Typ
    STXDRLANG
    26.02.1999 14:48:42
    2048
    Typ
    STXDRNAME
    26.02.1999 14:48:42
    2048
    Typ
    STXDROBJ
    26.02.1999 14:48:42
    2048
    Typ
    THEAD
    09.11.2000 14:15:08
    6144
    Prg
    CL_ABAP_CHAR_UTILITIES========CP
    07.01.2003 18:31:23
    11264
    Typ
    STXH
    17.06.2004 14:15:46
    6144
    Typ
    TCATALOG
    25.05.1998 12:19:20
    3072
    Typ
    T168F
    27.05.1992 20:16:27
    3072
    Typ
    T168
    27.05.1992 17:53:38
    3072
    Prg
    SAPLMECCP
    25.09.2007 16:07:53
    39936
    Prg
    CL_BADI_MM====================CP
    08.01.2003 16:43:11
    9216
    Prg
    %_CCXTAB
    14.02.2002 14:22:46
    6144
    Prg
    SAPLEINH
    25.09.2007 16:07:53
    56320
    Typ
    T001W
    16.06.2004 13:14:17
    9216
    Prg
    SAPLVDAT
    19.02.2002 12:59:51
    25600
    Typ
    T163Y
    28.08.1997 09:05:01
    2048
    Prg
    SAPCNVE
    14.02.2002 14:22:47
    6144
    Prg
    SAPLOMCV
    17.06.2004 10:54:26
    16384
    Prg
    CL_EX_BADI_MATN1==============CP
    17.06.2004 10:27:52
    22528
    Prg
    IF_EX_BADI_MATN1==============IP
    17.06.2004 10:53:59
    4096
    Typ
    TMCNV
    24.02.1999 03:33:25
    3072
    Typ
    RM06B
    17.06.1998 03:23:02
    10240
    Lista tabelle interne
    Il dump non riporta informazioni relative
    Indice delle tabelle applicative
    Programma
      Nome................ Contenuto..1.......2........3........4........5....+....
    SAPMM06B
      SYST                 |00000000000x010000000000000000
      EBAN                 |300001100895000010NB  B  NB           1  Elena Varett20071
      *EBAN                |             00000                                   00000
      EBKN                 |             0000000 00000000            000000x0C
      AEBAN                |3000011008950NB     BBEUR  |
      EBANW                |300001100895000010NB  B  NB           1  Elena Varett20071
      RM06B                |                           00000000000000000010       00
      *RM06B               |                           00000000000000000000       00
      RM06E                |          000000000000000    00000000          00000
      TPRG                 |300IW2Formato settimana   Sett. |
      T001W                |3006   PIATTAFORMA DI LEINI'         6   CEDI6     0000000
      T023                 |
      T024                 |
      T160                 |300ME52                VB        B |
      T160V                |300C1XX A              XX X                   X   |
      T161                 |300BNB   000100102NBB                 NB         00000
      T161T                |300INB  BRichiesta d'acquisto|
      T168                 |300B AB  ***   1 106       0x0C0x0C0x0C0x0C|
      T168F                |300B AB  XXX                                |
      T168T                |300IB0106002 |
      TTXID                |EBAN      B04        X
      T163K                |                       |
      T163Y                |     Standard             |
      T001L                |
      T160D                |     XXXXXXXXXXXXXXXXXXXXXX
      T161E                |                         |
    SAPFMMEX
      TMED                 |300BB     |
    SAPLMEXF
      T161                 |300BNB   000100102NBB                 NB         00000
      T162                 |300PT0B                ...................................
    SAPLSUU1
      USR02                |300CONSULENTI  ÷x9Fw'x97[æÆ0000000000000000A
      USREFUS              |300CONSULENTI
    SAPLSWOR
      TOJTB                |BUS2105   XI          RBUS2105
      SWOTLV               |BUS2105   EXISTENCECHECK                  M
      TOJTD                |                                 |
    SAPLBDLS
      T000                 |300Mandante produzione      Arenzano                 EUR
    SAPMM06B
      *RM06E               |          000000000000000    00000000          00000
      MARA                 |                      00000000            00000000
      T006                 |        00          00000000000000x0C 0
    SAPLVDAT
      TPRG                 |300IW2Formato settimana   Sett. |
    SAPLOMCV
      TMCNV                |300MATCONV  0x120000000x12
    Directory delle tabelle applicative (inf. di gestione)
    Programma
      Nome.......................... tempo..........lungh....
    SAPLOMCV
      SYST                           20010612125650 00002404
      EBAN                           20061113111959 00000892
      *EBAN                          20061113111959 00000892
      EBKN                                          00000421
      AEBAN                          20000323224119 00000027
      EBANW                                         00000896
      RM06B                          20000323224119 00000529
      *RM06B                         20000323224119 00000529
      RM06E                          20020124202505 00001154
      TPRG                           20000323231030 00000032
      T001W                          20040617141548 00000338
      T023                           20040616131428 00000102
      T024                           20040616131429 00000352
      T160                                          00000035
      T160V                                         00000050
      T161                           20040616131435 00000095
      T161T                                         00000029
      T168                                          00000035
      T168F                                         00000044
      T168T                                         00000013
      TTXID                                         00000058
      T163K                          20000323230840 00000023
      T163Y                                         00000026
      T001L                          20000323230832 00000069
      T160D                                         00000069
      T161E                          20000323230840 00000025
    SAPFMMEX
      TMED                                          00000010
    SAPLMEXF
      T161                                          00000095
      T162                                          00000234
    SAPLSUU1
      USR02                                         00000226
      USREFUS                                       00000067
    SAPLSWOR
      TOJTB                                         00000453
      SWOTLV                                        00000701
      TOJTD                                         00000033
    SAPLBDLS
      T000                                          00000107
    SAPMM06B
      *RM06E                         20020124202505 00001154
      MARA                           20071118093457 00001118
      T006                           20001109142345 00000080
    SAPLVDAT
      TPRG                                          00000032
    SAPLOMCV
      TMCNV                                         00000062
    Blocchi di contr. CONT ABAP
    Include                                 Riga  Codice sorg.
    Ind.  Nome FI Co Par01 Par2. Par3. Par4. Tab.
    MM06BO0R_RM06B-EEIND                       25 EXIT.
    2502 BRAX 00
    MM06BO0R_RM06B-EEIND                       27 ENDSELECT.
    2503 BRAX 00
    2504 SQLS 08
    MM06BO0R_RM06B-EEIND                       31 ENDMODULE.
    2505 ENDM 00
    2506 -
    MM06BO0R_RM06B-EPSTP                        7 CALL FUNCTION 'ME_ITEM_CATEGOR
    2507 FUNC 00
    2508 FUNC 00
    2509 PAR2 02     0336
    2511 FUNC 10
    2512 PAR2 01     03B9
    2514 PAR2 01     03BA
    2516 FUNC FF
    MM06BO0R_RM06B-EPSTP                       14 ENDMODULE.
    >>>>> ENDM 00
    2518 -
    MM06BO0V_VRTKZ                              6 CASE EBAN-VRTKZ.
    2519 BREL 04
    MM06BO0V_VRTKZ                              7 WHEN '1'.
    2520 when 00 02  0090
    2522 BRAN 02
    2523 BRAX 00
    MM06BO0V_VRTKZ                              8 RM06B-MKNTW = '3 '. "3 Nachkom
    2524 MOVL 00 02  0136
    MM06BO0V_VRTKZ                              9 WHEN '2'.
    2526 BRAX 00
    Fine dell'analisi err. run-time
    Help me.
    Thank you

    Hello Maurizio,
    Thre screen field EBAN-MENGE is unable to handle a sign along with the value.
    Regards,
    Ammey Kesarkar

  • The SAP Instance JC00 fails to start on aIX box

    Hi,
    I am installing SAP Netweaver on AIX box.
    The instalaltion process fails at the phase 33 of 34
    the SAP Instance JC00 fails to start
    if i chek the error fiel
    Trace of system startup/check of SAP System DON on Tue Dec 26 16:00:51 CST 2006
    Called command: /usr/sap/DON/SYS/exe/run/startsap
    Starting SAP Instance JC00
    SAP-R/3-Startup Program Rel 640 V1.8 (2003/04/24)
    Starting at 2006/12/26 16:00:51
    Startup Profile: "/usr/sap/DON/SYS/profile/START_JC00_pun-lpar-idm03"
    (655470) SETENV LD_LIBRARY_PATH=/usr/sap/DON/JC00/j2ee/os_libs:
    Setup Environment Variables
    (655470) SETENV SHLIB_PATH=/usr/sap/DON/JC00/j2ee/os_libs:
    (655470) SETENV LIBPATH=/usr/sap/DON/JC00/j2ee/os_libs:/usr/lib:/lib:/usr/sap/DON/SYS/exe/run:/oracle///instantclient
    Execute Pre-Startup Commands
    (655470) Local: rm -f jc.sapDON_JC00
    (655470) Local: ln -s -f /usr/sap/DON/JC00/j2ee/os_libs/jcontrol jc.sapDON_JC00
    Starting Programs
    (651450) Starting: local jc.sapDON_JC00 pf=/usr/sap/DON/SYS/profile/DON_JC00_pun-lpar-idm03
    (655470) Waiting for Child Processes to terminate.
    (655470) **** 2006/12/26 16:00:56 Child 651450 terminated with Status 255 . ****
    (655470) **** No more Child Processes to wait for.
    (655470) Parent Shutdown at 2006/12/26 16:00:56
    Execute Post-Shutdown Commands
    (655470) Exiting with Return-Code 3. (No more child processes)
    Startup of Instance failed
    What can be the problem here
    Regards
    Manoj

    Hi Siddesh,
    Thanks for the response
    The trace is form the file dev_jcontrol located in "/usr/sap/DON/JC00/work" directory
    "dev_jcontrol" 111 lines, 5297 characters
    trc file: "/usr/sap/DON/JC00/work/dev_jcontrol", trc level: 1, release: "640"
    node name   : jcontrol
    pid         : 610394
    system name : DON
    system nr.  : 00
    started at  : Tue Dec 26 19:12:38 2006
    arguments   :
        arg[00] : jc.sapDON_JC00
        arg[01] : pf=/usr/sap/DON/SYS/profile/DON_JC00_pun-lpar-idm03
    JStartupReadInstanceProperties: read instance properties [/usr/sap/DON/JC00/j2ee/cluster/instance.properties:/usr/sap/DON/JC00/SDM/p
    rogram/config/sdm_jstartup.properties]
    -> ms host    : pun-lpar-idm03
    -> ms port    : 3601
    -> OS libs    : /usr/sap/DON/JC00/j2ee/os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : /usr/sap/DON/JC00/j2ee/cluster/instance.properties
    -> files [01] : /usr/sap/DON/JC00/SDM/program/config/sdm_jstartup.properties
    Instance properties
    -> ms host    : pun-lpar-idm03
    -> ms port    : 3601
    -> os libs    : /usr/sap/DON/JC00/j2ee/os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    :$
    trc file: "/usr/sap/DON/JC00/work/dev_jcontrol", trc level: 1, release: "640"
    node name   : jcontrol
    pid         : 610394
    system name : DON
    system nr.  : 00
    started at  : Tue Dec 26 19:12:38 2006
    arguments   :
        arg[00] : jc.sapDON_JC00
        arg[01] : pf=/usr/sap/DON/SYS/profile/DON_JC00_pun-lpar-idm03
    JStartupReadInstanceProperties: read instance properties [/usr/sap/DON/JC00/j2ee/cluster/instance.properties:/usr/sap/DON/JC00/SDM/p
    rogram/config/sdm_jstartup.properties]
    -> ms host    : pun-lpar-idm03
    -> ms port    : 3601
    -> OS libs    : /usr/sap/DON/JC00/j2ee/os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : /usr/sap/DON/JC00/j2ee/cluster/instance.properties
    -> files [01] : /usr/sap/DON/JC00/SDM/program/config/sdm_jstartup.properties
    Instance properties
    -> ms host    : pun-lpar-idm03
    -> ms port    : 3601
    -> os libs    : /usr/sap/DON/JC00/j2ee/os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : /usr/sap/DON/JC00/j2ee/cluster/instance.properties
    Worker nodes
    -> [00] sdm                  : /usr/sap/DON/JC00/SDM/program/config/sdm_jstartup.properties
    [Thr  1] Tue Dec 26 19:12:38 2006
    [Thr  1] SigISetDefaultAction : default handling for signal 20
    [Thr  1] JControlExecuteBootstrap: execute bootstrap process [bootstrap]
    [Thr  1] [Node: bootstrap] java home is set by profile parameter
            Java Home: /usr/java14_64
    JStartupIReadSection: read node properties [bootstrap]
    -> node name       : bootstrap
    -> node type       : bootstrap
    -> java path       : /usr/java14_64
    -> java parameters : -Djco.jarm=1 -Djco.jarm=1
    -> java vm version : J2RE 1.4.2 IBM AIX 5L for PowerPC (64 bit JVM) build caix64142ifx-20060209 (SR4-1) (JIT enabled: jitc)
    -> java vm vendor  : Classic VM (IBM Corporation)
    -> java vm type    : <default>
    -> java vm cpu     : ppc64
    -> heap size       : 128M
    -> root path       : /usr/sap/DON/JC00/j2ee/cluster
    -> class path      : ./bootstrap/launcher.jar
    -> OS libs path    : /usr/sap/DON/JC00/j2ee/os_libs
    -> main class      : com.sap.engine.offline.OfflineToolStart
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : /usr/sap/DON/JC00/j2ee/os_libs/jstartup.jar
    -> parameters      : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID0035316
    -> debuggable      : yes
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    JStartupStartJLaunch: program = /usr/sap/DON/JC00/j2ee/os_libs/jlaunch
    -> arg[00] = /usr/sap/DON/JC00/j2ee/os_libs/jlaunch
    -> arg[01] = pf=/usr/sap/DON/SYS/profile/DON_JC00_pun-lpar-idm03
    -> arg[02] = -DSAPINFO=DON_00_bootstrap
    -> arg[03] = -file=/usr/sap/DON/JC00/j2ee/cluster/instance.properties
    -> arg[04] = -nodeName=bootstrap
    -> arg[05] = -nodeId=-1
    -> arg[06] = -syncSem=9437188
    -> arg[07] = -jvmOutFile=/usr/sap/DON/JC00/work/jvm_bootstrap.out
    -> arg[08] = -stdOutFile=/usr/sap/DON/JC00/work/std_bootstrap.out
    -> arg[09] = -locOutFile=/usr/sap/DON/JC00/work/dev_bootstrap
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=/usr/sap/DON/SYS/profile/DON_JC00_pun-lpar-idm03
    -> lib path = LIBPATH=/usr/java14_64/jre/bin:/usr/java14_64/jre/bin/classic:/usr/java14_64/jre/bin:/usr/sap/DON/JC00/j2ee/os_libs:/u
    sr/sap/DON/SYS/exe/run:/usr/sap/DON/SYS/exe/run:/usr/sap/DON/SYS/exe/run:/tmp/sapinst_exe.360486.1167110312:/usr/lib:/usr/sap/DON/JC
    00/j2ee/os_libs:/usr/sap/DON/JC00/j2ee/os_libs:/usr/lib:/lib:/usr/sap/DON/SYS/exe/run:/oracle///instantclient
    -> exe path = PATH=/usr/java14_64/bin:/usr/sap/DON/JC00/j2ee/os_libs:/oracle/DON/102_64/bin:/usr/java14_64/bin:/home/donadm:/usr/sap
    /DON/SYS/exe/run:/usr/bin:/etc:/usr/sbin:/usr/ucb:/home/donadm/bin:/usr/bin/X11:/sbin:.
    [Thr  1] JStartupICreateProcess: fork process (pid 274544)
    [Thr  1] Tue Dec 26 19:12:55 2006
    [Thr  1] *** ERROR => invalid return code of process [bootstrap] (exitcode=-1) [jstartxx_mt. 1433]
    [Thr  1] JControlExecuteBootstrap: error executing bootstrap node [bootstrap] (rc=-1)
    [Thr  1] JControlCloseProgram: started (exitcode = -1)
    [Thr  1] JControlCloseProgram: good bye... (exitcode=-1)
    :q
    pun-lpar-idm03:donadm 68> ls -lt
    total 128
    -rw-rr   1 donadm   sapsys          329 Dec 26 19:12 INSTSTAT
    -rw-rr   1 donadm   sapsys         1323 Dec 26 19:12 sapstart.log
    -rw-rr   1 donadm   sapsys         5297 Dec 26 19:12 dev_jcontrol
    -rw-rr   1 donadm   sapsys         7556 Dec 26 19:12 dev_bootstrap
    -rw-rr   1 donadm   sapsys          615 Dec 26 19:12 std_bootstrap.out
    -rw-rr   1 donadm   sapsys          158 Dec 26 19:12 sapstart0.trc
    -rw-rr   1 donadm   sapsys          158 Dec 26 19:12 stderr0
    -rw-rr   1 donadm   sapsys            0 Dec 26 19:12 stdout0
    -rw-rr   1 donadm   sapsys          240 Dec 26 19:12 dev_sapstart
    -rw-rr   1 donadm   sapsys            0 Dec 26 19:12 dev_tp
    lrwxrwxrwx   1 donadm   sapsys           39 Dec 26 19:12 jc.sapDON_JC00 -> /usr/sap/DON/JC00/j2ee/os_libs/jcontrol
    -rw-rr   1 donadm   sapsys            0 Dec 26 19:11 dev_tp.old
    -rw-rr   1 donadm   sapsys         5519 Dec 26 17:32 dev_jcontrol.old
    -rw-rr   1 donadm   sapsys         7568 Dec 26 17:32 dev_bootstrap.old
    -rw-rr   1 donadm   sapsys         1045 Dec 26 17:32 dev_jcmon
    -rw-rr   1 donadm   sapsys         1045 Dec 26 17:32 dev_jcmon.old
    pun-lpar-idm03:donadm 69> vi dev_bootstrap
    "dev_bootstrap" 176 lines, 7556 characters
    trc file: "/usr/sap/DON/JC00/work/dev_bootstrap", trc level: 1, release: "640"
    node name   : bootstrap
    pid         : 274544
    system name : DON
    system nr.  : 00
    started at  : Tue Dec 26 19:12:38 2006
    arguments   :
        arg[00] : /usr/sap/DON/JC00/j2ee/os_libs/jlaunch
        arg[01] : pf=/usr/sap/DON/SYS/profile/DON_JC00_pun-lpar-idm03
        arg[02] : -DSAPINFO=DON_00_bootstrap
        arg[03] : pf=/usr/sap/DON/SYS/profile/DON_JC00_pun-lpar-idm03
    JStartupReadInstanceProperties: read instance properties [/usr/sap/DON/JC00/j2ee/cluster/instance.properties]
    -> ms host    : pun-lpar-idm03
    -> ms port    : 3601
    -> OS libs    : /usr/sap/DON/JC00/j2ee/os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : /usr/sap/DON/JC00/j2ee/cluster/instance.properties
    Instance properties
    -> ms host    : pun-lpar-idm03
    -> ms port    : 3601
    -> os libs    : /usr/sap/DON/JC00/j2ee/os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    :$
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    [Thr 772] JLaunchIStartFunc: Thread 772 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [bootstrap]
    -> stack   : 1048576 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: -Djco.jarm=1
    -> arg[  3]: -Djco.jarm=1
    -> arg[  4]: -Dsys.global.dir=/sapmnt/DON/global
    -> arg[  5]: -Dapplication.home=/usr/sap/DON/JC00/j2ee/os_libs
    -> arg[  6]: -Djava.class.path=/usr/sap/DON/JC00/j2ee/os_libs/jstartup.jar:./bootstrap/launcher.jar
    -> arg[  7]: -Djava.library.path=/usr/java14_64/jre/bin:/usr/java14_64/jre/bin/classic:/usr/java14_64/jre/bin:/usr/sap/DON/JC00/j2ee
    /os_libs:/usr/sap/DON/SYS/exe/run:/usr/sap/DON/SYS/exe/run:/usr/sap/DON/SYS/exe/run:/tmp/sapinst_exe.360486.1167110312:/usr/lib:/usr
    /sap/DON/JC00/j2ee/os_libs:/usr/sap/DON/JC00/j2ee/os_libs:/usr/lib:/lib:/usr/sap/DON/SYS/exe/run:/oracle///instantclient
    -> arg[  8]: -Dmemory.manager=128M
    -> arg[  9]: -Xmx128M
    -> arg[ 10]: -DLoadBalanceRestricted=no
    -> arg[ 11]: -Djstartup.mode=BOOTSTRAP
    -> arg[ 12]: -Djstartup.ownProcessId=274544
    -> arg[ 13]: -Djstartup.ownHardwareId=F0052428966
    -> arg[ 14]: -Djstartup.whoami=bootstrap
    -> arg[ 15]: -Djstartup.debuggable=yes
    -> arg[ 16]: -DSAPINFO=DON_00_bootstrap
    -> arg[ 17]: -DSAPSTARTUP=1
    -> arg[ 18]: -DSAPSYSTEM=00
    -> arg[ 19]: -DSAPSYSTEMNAME=DON
    -> arg[ 20]: -DSAPMYNAME=pun-lpar-idm03_DON_00
    -> arg[ 21]: -DSAPDBHOST=
    -> arg[ 22]: -Dj2ee.dbhost=pun-lpar-idm03
    Signal 6 encountered.
    => 64 bit R/3 Kernel
    => 64 bit AIX Kernel
    => Heap limit      = unlimited
    => Stack limit     = unlimited
    => Core limit      = unlimited
    => File size limit = unlimited
    => Heap address  = 0x0x111179f20
    => Stack address = 0x111151b00
    => Stack low     =  0x11114f200
    => Stack high    =  0xffffffffffff470
    => Stack Trace:
            pthread_kill() at 0x90000000040d2b4
            praise() at 0x90000000040ccec
            raise() at 0x900000000049c50
            abort() at 0x900000000073eb0
            GetPropertiesMD() at 0x900000004267774
            ciCreateJVM() at 0x9000000042ff824
            JNI_CreateJavaVM() at 0x90000000429329c
            JHVM_LoadJavaVM() at 0x1000918d4
            JLaunchIStartFunc() at 0x10008bb14
            pthreadbody() at 0x9000000003f92d8
    !!! Invalid stack address encountered: 0x0
    !!! Stack corrupted.
    => CPU Registers:
         msr = 0xa00000000000d032     iar = 0x090000000040d2b4
         ctr = 0xffffffff00418400      lr = 0xffffffffffffffff
         xer = 0x00000000ffffffff      cr = 0x0000000000000000
         r00 = 0xffffffffffffffff     r01 = 0x0000000111151b00
         r02 = 0xffffffffffffffff     r03 = 0x0000000000000000
         r04 = 0xffffffffffffffff     r05 = 0xffffffffffffffff
         r06 = 0xffffffffffffffff     r07 = 0xffffffffffffffff
         r08 = 0xffffffffffffffff     r09 = 0xffffffffffffffff
         r10 = 0xffffffffffffffff     r11 = 0xffffffffffffffff
         r12 = 0xffffffffffffffff     r13 = 0x0000000111153994
         r14 = 0x0000000000000000     r15 = 0x0000000000000000
         r16 = 0x0000000000000000     r17 = 0x0000000000000000
         r18 = 0x0000000000000000     r19 = 0x0000000000000000
         r20 = 0x0000000000000000     r21 = 0x0000000000000000
         r22 = 0x0000000000000000     r23 = 0x0000000000000000
         r24 = 0x0000000000000000     r25 = 0x0000000000000000
         r26 = 0x0000000000000000     r27 = 0x09001000a1c9ea40
         r28 = 0x0000000111153994     r29 = 0x0000000000000006
         r30 = 0x0000000000000304     r31 = 0x0000000000000006
    [Thr 772] ***LOG Q0E=> SigIGenAction, signal ( 6) [sigux_mt.c   836]
    :q
    pun-lpar-idm03:donadm 70> /usr/sbin/lsattr -E -l sys0 -a realmem
    realmem 1048576 Amount of usable physical memory in Kbytes False
    pun-lpar-idm03:donadm 71>
    pun-lpar-idm03:donadm 71>
    pun-lpar-idm03:donadm 71> pwd
    /usr/sap/DON/JC00/work
    pun-lpar-idm03:donadm 72> ls
    INSTSTAT           dev_jcmon          dev_jcontrol.old   dev_tp.old         sapstart0.trc      stdout0
    dev_bootstrap      dev_jcmon.old      dev_sapstart       jc.sapDON_JC00     std_bootstrap.out
    dev_bootstrap.old  dev_jcontrol       dev_tp             sapstart.log       stderr0
    pun-lpar-idm03:donadm 73> vi dev_jcontrol
    "dev_jcontrol" 111 lines, 5297 characters
    trc file: "/usr/sap/DON/JC00/work/dev_jcontrol", trc level: 1, release: "640"
    node name   : jcontrol
    pid         : 610394
    system name : DON
    system nr.  : 00
    started at  : Tue Dec 26 19:12:38 2006
    arguments   :
        arg[00] : jc.sapDON_JC00
        arg[01] : pf=/usr/sap/DON/SYS/profile/DON_JC00_pun-lpar-idm03
    JStartupReadInstanceProperties: read instance properties [/usr/sap/DON/JC00/j2ee/cluster/instance.properties:/usr/sap/DON/JC00/SDM/p
    rogram/config/sdm_jstartup.properties]
    -> ms host    : pun-lpar-idm03
    -> ms port    : 3601
    -> OS libs    : /usr/sap/DON/JC00/j2ee/os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : /usr/sap/DON/JC00/j2ee/cluster/instance.properties
    -> files [01] : /usr/sap/DON/JC00/SDM/program/config/sdm_jstartup.properties
    Instance properties
    -> ms host    : pun-lpar-idm03
    -> ms port    : 3601
    -> os libs    : /usr/sap/DON/JC00/j2ee/os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    :$
    -> arg[04] = -nodeName=bootstrap
    -> arg[05] = -nodeId=-1
    -> arg[06] = -syncSem=9437188
    -> arg[07] = -jvmOutFile=/usr/sap/DON/JC00/work/jvm_bootstrap.out
    -> arg[08] = -stdOutFile=/usr/sap/DON/JC00/work/std_bootstrap.out
    -> arg[09] = -locOutFile=/usr/sap/DON/JC00/work/dev_bootstrap
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=/usr/sap/DON/SYS/profile/DON_JC00_pun-lpar-idm03
    -> lib path = LIBPATH=/usr/java14_64/jre/bin:/usr/java14_64/jre/bin/classic:/usr/java14_64/jre/bin:/usr/sap/DON/JC00/j2ee/os_libs:/u
    sr/sap/DON/SYS/exe/run:/usr/sap/DON/SYS/exe/run:/usr/sap/DON/SYS/exe/run:/tmp/sapinst_exe.360486.1167110312:/usr/lib:/usr/sap/DON/JC
    00/j2ee/os_libs:/usr/sap/DON/JC00/j2ee/os_libs:/usr/lib:/lib:/usr/sap/DON/SYS/exe/run:/oracle///instantclient
    -> exe path = PATH=/usr/java14_64/bin:/usr/sap/DON/JC00/j2ee/os_libs:/oracle/DON/102_64/bin:/usr/java14_64/bin:/home/donadm:/usr/sap
    /DON/SYS/exe/run:/usr/bin:/etc:/usr/sbin:/usr/ucb:/home/donadm/bin:/usr/bin/X11:/sbin:.
    [Thr  1] JStartupICreateProcess: fork process (pid 274544)
    [Thr  1] Tue Dec 26 19:12:55 2006
    [Thr  1] *** ERROR => invalid return code of process [bootstrap] (exitcode=-1) [jstartxx_mt. 1433]
    [Thr  1] JControlExecuteBootstrap: error executing bootstrap node [bootstrap] (rc=-1)
    [Thr  1] JControlCloseProgram: started (exitcode = -1)
    [Thr  1] JControlCloseProgram: good bye... (exitcode=-1)

  • App crash when using JAVA callbacks from native threads in solaris

    Hi all,
    Sorry for putting the thread here. I did use the native methods forum, I wasnt lucky. I Hope more people would look into this forum, which brings me here.
    I have a solaris application which crashes when I try to callback the JAVA methods and variables from the native code. The description of the problem is below
    Written a native library, the library is multithreaded (i.e) I create a thread using pthread_create() in the native code which performs the operation of calling a JAVA method from the native code. The routine of calling the JAVA method works perfectly elsewhere outside the new thread.
    There are two scenarios I've tested it in
    1. I created a thread (say X) from the main thread (say Y) and made the y to wait until the X is complete using the pthread_join(). The JAVA callbacks works fine when called from Y but the app crashes if done from X.
    2. Did not make the Y to wait until the X is complete, hoping that both will run paralelly and even the the App crashes.
    And to be precise the Y is the thread where the native method is called from JAVA.
    I have tested for any memory leaks or stack corruption by removing the JAVA callbacks and bulding a executable and using purify, the report doesnot hint any such occurances.
    The linker options used for building the shared library is as follows
    ${GPP} ${INC} -G ${LIB} -mt -g -lCstd -lCrun -lpthread ${OBJS} -o <lib-name>
    I wonder if we can create threads in the native code when using JAVA callbacks and even if we can whether it would be appropiate to use the callbacks with in the threads
    Looking forward for any help.
    Regards,
    Vamsi

    Guys... can't any one help me with this problem :(

  • App crash when using JNI callbacks

    Hi all,
    I have a solaris application which crashes when I try to callback the JNI methods from the native code. The description of the problem is below
    Written a native library, the library is multithreaded (i.e) I create a thread using pthread_create() in the native code which performs the operation of calling a JAVA method from the native code. The routine of calling the JAVA method works perfectly from elsewhere.
    There are two scenarios I've tested it in
    1. I created a thread (say X) from the main thread (say Y) and made the y to wait until the X is complete using the pthread_join(). The JAVA callbacks work fine when called from Y but the app crashes if done from X.
    2. Did not make the Y to wait until the X is complete, hoping that both will run paralelly and even the the App crashes.
    And to be precise the Y is the thread where the native method is called from JAVA.
    I have tested for any memory leaks or stack corruption by removing the JAVA callbacks and bulding a executable and using purify, the report doesnot hint any such occurances.
    The linker options used for building the shared library is as follows
    ${GPP} ${INC} -G ${LIB} -mt -g -lCstd -lCrun -lpthread ${OBJS} -o <lib-name>
    I wonder if we can create threads in the native code when using JAVA callbacks and even if we can whether it would be appropiate to use the callbacks with in the threads
    Looking forward for any help.
    Regards,
    Vamsi

    Guys... can't any one help me with this problem :(

  • Subreport instrumented for javaflow

    Hi all,
    while running a report in OIA,i am getting the following error
    stack corruption. Is class net.sf.jasperreports.engine.fill.JRContinuationSubreportRunner instrumented for javaflow?. Do i need to add anything in header inorder to sove this error??

    Hi Tintin,
    Is this a custom report you're creating or OOTB?
    If it's custom, simply copy an OOTB with the header info already existing and start skinning and applying what you wish within the report
    Regards,
    Daniel Redfern
    Technicalconfessions.com

  • Error in Gate Entry

    Hi,
        can any one guide me in soving this issue. The issue is when i executing the gate entry table in se16 in getting dump error "DBIF RSQLSQL_ERROR"
    Runtime Error       DBIF_RSQL_SQL_ERROR
    Except.                CX_SY_OPEN_SQL_DB
    Date and Time      28.04.2008 11:03:32
    ShrtText
    An SQL error occurred when accessing a table.
    What can you do?
    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.
    How to correct the error
    Database error text........: "Column COMINV not in specified tables. MSGID=
    Job=055461/BDP00/WP00"
    Internal call code.........: "[RSQL/OPEN//CVS/TA_GTHDR ]"
    Please check the entries in the system log (Transaction SM21).
    You may able to find an interim solution to the problem
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:
    "DBIF_RSQL_SQL_ERROR" CX_SY_OPEN_SQL_DBC
    "/1BCDWB/DB/CVS/TA_GTHDR" or "/1BCDWB/DB/CVS/TA_GTHDR"
    "START-OF-SELECTION"
    If you cannot solve the problem yourself and you wish to send
    an error message to SAP, include the following documents:
    1. A printout of the problem description (short dump)
    To obtain this, select in the current display "System->List->
    Save->Local File (unconverted)".
    2. A suitable printout of the system log
    To obtain this, call the system log through transaction SM21.
    Limit the time interval to 10 minutes before and 5 minutes
    after the short dump. In the display, then select the function
    "System->List->Save->Local File (unconverted)".
    3. If the programs are your own programs or modified SAP programs,
    supply the source code.
    To do this, select the Editor function "Further Utilities->
    Upload/Download->Download".
    4. Details regarding the conditions under which the error occurred
    or which actions and input led to the error.
    System environment
    SAP Release.............. "640"
    Application server....... "PRDSAPBD"
    Network address.......... "131.0.0.15"
    Operating system......... "OS400"
    Release.................. "5.3"
    Hardware type............ "0065000655EC"
    Character length......... 8 Bits
    Pointer length........... 64 Bits
    Work process number...... 0
    Short dump setting....... "full"
    Database server.......... "PRDSAPBD"
    Database type............ "DB400"
    Database name............ "BDP"
    Database owner........... "R3BDPDATA"
    Character set............ "en_US.ISO8859-1"
    SAP kernel............... "640"
    Created on............... "Jul 9 2006 22:10:13"
    Created in............... "AIX 1 5 00538A4A4C00 (iSeries)"
    Database version......... "DB4_52"
    Patch level.............. "137"
    Patch text............... " "
    Supported environment....
    Database................. "V5R2, V5R3, V5R4"
    SAP database version..... "640"
    Operating system......... "OS400 2 5, OS400 3 5, OS400 4 5"
    Memory usage.............
    Roll..................... 16128
    EM....................... 12569784
    Heap..................... 0
    Page..................... 49152
    MM Used.................. 1508288
    MM Free.................. 2679120
    SAP Release.............. "640"
    User and Transaction
    Client.............. 009
    User................ "INTBASIS"
    Language key........ "E"
    Transaction......... "SE16 "
    Program............. "/1BCDWB/DB/CVS/TA_GTHDR"
    Screen.............. "SAPMSSY0 1000"
    Screen line......... 6
    Information on where terminated
    The termination occurred in the ABAP program "/1BCDWB/DB/CVS/TA_GTHDR" in
    "START-OF-SELECTION".
    The main program was "/1BCDWB/DB/CVS/TA_GTHDR ".
    The termination occurred in line 547 of the source code of the (Include)
    program "/1BCDWB/DB/CVS/TA_GTHDR"
    of the source code of program "/1BCDWB/DB/CVS/TA_GTHDR" (when calling the
    editor 5470).
    Source Code Extract
    Line
    SourceCde
    517
    RSEUMOD-TBMAXSEL = MAX_SEL.
    518
    ELSEIF MAX_SEL = 0.
    519
    CLEAR RSEUMOD-TBMAXSEL.
    520
    ENDIF.
    521
    IMPORT G_DATA_EXIT FROM MEMORY ID MEM_ID.
    522
    IF SY-BATCH IS INITIAL AND G_DATA_EXIT IS INITIAL.
    523
    IMPORT ACTION FROM MEMORY ID MEM_ID.
    524
    ELSE.
    525
    ACTION = 'ANZE'.
    526
    concatenate '/1BCDWB/DB' '/CVS/TA_GTHDR' into g_dbdatakey-eu_name.
    527
    g_dbdatakey-username = c_all.
    528
    import sort_NAME_TAB to %_TAB2_sort
    529
    field_name_tab to %_TAB2_field
    530
    from database dbdata(DB) id g_dbdatakey.
    531
    if sy-subrc = 0.
    532
    delete from dbdata
    533
    where relid    = 'DB' and
    534
    eu_name  = g_dbdatakey-eu_name and
    535
    username = c_all.
    536
    describe table %_tab2_field lines %_l_lines.
    537
    if not %_l_lines is initial.
    538
    %_TAB2[] = %_tab2_field[].
    539
    endif.
    540
    endif.
    541
    ENDIF.
    542
    CASE ACTION.
    543
    WHEN 'ANZE'.
    544
    try.
    545
    SELECT * FROM /CVS/TA_GTHDR                     "client specified
    546
    APPENDING TABLE I/CVS/TA_GTHDR
    >>>>>
    UP TO RSEUMOD-TBMAXSEL ROWS BYPASSING BUFFER
    548
    WHERE GTNUM IN I1
    549
    AND   MJAHR IN I2.
    550
    551
    CATCH CX_SY_DYNAMIC_OSQL_SEMANTICS INTO xref.
    552
    IF xref->kernel_errid = 'SAPSQL_ESCAPE_WITH_POOLTABLE'.
    553
    message i412(mo).
    554
    exit.
    555
    ELSE.
    556
    RAISE EXCEPTION xref.
    557
    ENDif.
    558
    ENDTRY.
    559
    IF NOT G_DATA_EXIT IS INITIAL.
    560
      DATEN NICHT ANZEIGEN, SONDERN NACH AUßEN GEBEN
    561
    CALL FUNCTION G_DATA_EXIT
    562
    EXPORTING
    563
    TABNAME = /CVS/TA_GTHDR
    564
    TABLES
    565
    DATA    = I/CVS/TA_GTHDR.
    566
    LEAVE.
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    0
    SY-INDEX
    0
    SY-TABIX
    1
    SY-DBCNT
    1
    SY-FDPOS
    0
    SY-LSIND
    0
    SY-PAGNO
    0
    SY-LINNO
    1
    SY-COLNO
    1
    SY-PFKEY
    SY-UCOMM
    SY-TITLE
    SY-MSGTY
    I
    SY-MSGID
    SF
    SY-MSGNO
    616
    SY-MSGV1
    /1BCDWB/DB/CVS/TA_GTHDR
    SY-MSGV2
    RE
    SY-MSGV3
    EN
    SY-MSGV4
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    1 EVENT        /1BCDWB/DB/CVS/TA_GTHDR             /1BCDWB/DB/CVS/TA_GTHDR               547
    START-OF-SELECTION
    Chosen variables
    Name
    Val.
    No.       1 Ty.          EVENT
    Name  START-OF-SELECTION
    %_SPACE
    2
    0
    SY-REPID
    /1BCDWB/DB/CVS/TA_GTHDR
    2344454244245525454544522222222222222222
    F123472F42F363F41F7484200000000000000000
    RSEUMOD-TBMAXSEL
    200
    000C
    0008
    /CVS/TA_GTHDR
    0000                       000000000000000000000000000000000000
    2222222222222333322222222222222222222222333333333333333333333333333333333333222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    <%_TABLE_/CVS/TA_GTHDR>
    ENTRIES
    0
    0000
    0000
    SYST-REPID
    /1BCDWB/DB/CVS/TA_GTHDR
    2344454244245525454544522222222222222222
    F123472F42F363F41F7484200000000000000000
    %_DUMMY$$
    2222
    0000
    INPUT_ENTRY
    2
    0
    I1[]
    Table IT_105[0x23]
    PROGRAM=/1BCDWB/DB/CVS/TA_GTHDRDATA=I1[]
    Table reference: 22
    TABH+  0(20) = 0000000000000000000000000000000000000000
    TABH+ 20(20) = 00000016000000690000000000000017FFFFFFFF
    TABH+ 40(16) = 0400000000002830000A249001000000
    store        = 0x0000000000000000
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 22    (0x00000016)
    label        = 105   (0x00000069)
    fill         = 0     (0x00000000)
    leng         = 23    (0x00000017)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000174
    occu         = 10    (0x0000000A)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 0
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = Not allocated
    pghook       = Not allocated
    idxPtr       = Not allocated
    refCount     = Not allocated
    tstRefCount  = Not allocated
    lineAdmin    = Not allocated
    lineAlloc    = Not allocated
    store_id     = Not allocated
    shmIsReadOnly = Not allocated
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    SUBRC
    0
    0000
    0000
    I2[]
    Table IT_107[0x11]
    PROGRAM=/1BCDWB/DB/CVS/TA_GTHDRDATA=I2[]
    Table reference: 24
    TABH+  0(20) = 0000000000000000000000000000000000000000
    TABH+ 20(20) = 000000180000006B000000000000000BFFFFFFFF
    TABH+ 40(16) = 04000000000028D8000A249001000000
    store        = 0x0000000000000000
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 24    (0x00000018)
    label        = 107   (0x0000006B)
    fill         = 0     (0x00000000)
    leng         = 11    (0x0000000B)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000177
    occu         = 10    (0x0000000A)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 0
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = Not allocated
    pghook       = Not allocated
    idxPtr       = Not allocated
    refCount     = Not allocated
    tstRefCount  = Not allocated
    lineAdmin    = Not allocated
    lineAlloc    = Not allocated
    store_id     = Not allocated
    shmIsReadOnly = Not allocated
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    C_ALL
    %_ALL
    254442222222
    5F1CC0000000
    ULINE_LENGTH
    0
    0000
    0000
    I3[]
    Table IT_108[0x23]
    PROGRAM=/1BCDWB/DB/CVS/TA_GTHDRDATA=I3[]
    Table reference: 25
    TABH+  0(20) = 0000000000000000000000000000000000000000
    TABH+ 20(20) = 000000190000006C0000000000000017FFFFFFFF
    TABH+ 40(16) = 0400000000002948000A249001000000
    store        = 0x0000000000000000
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 25    (0x00000019)
    label        = 108   (0x0000006C)
    fill         = 0     (0x00000000)
    leng         = 23    (0x00000017)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000179
    occu         = 10    (0x0000000A)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 0
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = Not allocated
    pghook       = Not allocated
    idxPtr       = Not allocated
    refCount     = Not allocated
    tstRefCount  = Not allocated
    lineAdmin    = Not allocated
    lineAlloc    = Not allocated
    store_id     = Not allocated
    shmIsReadOnly = Not allocated
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    I/CVS/TA_GTHDR[]
    Table IT_124[0x834]
    PROGRAM=/1BCDWB/DB/CVS/TA_GTHDRDATA=I/CVS/TA_GTHDR[]
    Table reference: 44
    TABH+  0(20) = 0000000000000000000000000000000000000000
    TABH+ 20(20) = 0000002C0000007C0000000000000342FFFFFFFF
    TABH+ 40(16) = 04000000000017C8001024C401000000
    store        = 0x0000000000000000
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 44    (0x0000002C)
    label        = 124   (0x0000007C)
    fill         = 0     (0x00000000)
    leng         = 834   (0x00000342)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000099
    occu         = 16    (0x00000010)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = Not allocated
    pghook       = Not allocated
    idxPtr       = Not allocated
    refCount     = Not allocated
    tstRefCount  = Not allocated
    lineAdmin    = Not allocated
    lineAlloc    = Not allocated
    store_id     = Not allocated
    shmIsReadOnly = Not allocated
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    XREF
    F0000000
    F0000000
    XREF->KERNEL_ERRID
    SY-XPROG
    SAPCNVE
    5454454222222222222222222222222222222222
    3103E65000000000000000000000000000000000
    SY-MSGID
    SF
    54222222222222222222
    36000000000000000000
    PAGNO
    0
    0000
    0000
    Internal notes
    The termination occurred in the function "HandleRsqlErrors" of the SAP
    Basis System, specifically in line 759 of the module
    "//bas/640_REL/src/krn/runt/absapsql.c#16".
    The internal operation just processed is "SQLS".
    The internal session was started at 20080428110327.
    Internal call code.........: "[RSQL/OPEN//CVS/TA_GTHDR ]"
    Active Calls in SAP Kernel
    Lines of C Stack in Kernel (Structure Differs on Each Platform)
    => 64 bit R/3 Kernel
    => 64 bit OS400 Kernel
    => Heap limit      = unlimited
    => Stack limit     = unlimited
    => Core limit      = unlimited
    => File size limit = unlimited
    => Heap address  = 0x40000000000000009DF46B87C8DACBA0
    => Stack address = 0xfffffffffffb4a0
    => Stack low     =  0xfffffffffffb4a0
    => Stack high    =  0xffffffffffffa10
    => Stack Trace:
         AixStack() at 0x10008ca60
         CTrcStack2() at 0x10008cb58
         rabax_CStackSave__Fv() at 0x100071c74
         ab_rabax() at 0x10006eaa4
         ab_rsqlerr__FPCciT1P11RS_HEADER94T1Pv() at 0x10086d218
         HandleRsqlErrors__F9RsqlError9CloseMode() at 0x100ff8810
         SqlsExecuteCall__FUcP11DynCallInfo() at 0x100ff6fac
         ab_jsqls__Fv() at 0x100ff17dc
         ab_extri__Fv() at 0x10090bb68
         ab_xevent__FPCc() at 0x100928be4
         ab_trigg__Fv() at 0x10092872c
         ab_run() at 0x10108211c
         N_ab_run() at 0x10107539c
         dynpmcal() at 0x1010740e4
         dynppai0() at 0x1010719e4
         dynprctl() at 0x10107b590
         dynpen00() at 0x10022b2c4
         Thdynpen00() at 0x1000a71d0
         TskhLoop() at 0x1000aba14
         tskhstart() at 0x1000c046c
         DpMain() at 0x10174f654
         nlsui_main() at 0x101722dc8
         __start() at 0x100000344
    !!! Invalid stack address encountered: 0x0
    !!! Stack corrupted.
    Mon Apr 28 11:03:32 2008
    Library
    (SRV)PGM
    Module
    Function/Statement No.
    QSYS
    QP2USER
    QP2API
    __Qp2Fork  13
    QSYS
    QP2USER
    QP2API
    runpase_common__FiPvT2  5
    R3640AOPT
    O4PRTLIBC
    AS4STACK
    As4Stack_From_PASE  3
    R3640AOPT
    O4PRTLIBC
    AS4STACK
    As4StackOut  10
    R3640AOPT
    O4PRTLIBC
    AS4STACK
    MATINVS2_8O4_StackFv  8
    List of ABAP programs affected
    Index
    Ty.
    Program
    Group
    Date
    Time
    Size
    Lang.
    0
    Prg
    /1BCDWB/DB/CVS/TA_GTHDR
    0
    25.04.2008
    17:54:15
    114688
    E
    1
    Prg
    SAPMSSY0
    1
    24.01.2007
    03:59:44
    68608
    E
    2
    Prg
    SAPMSSYD
    1
    24.01.2007
    03:59:44
    17408
    E
    3
    Prg
    SAPFSYSCALLS
    1
    06.11.2003
    20:52:59
    6144
    E
    4
    Prg
    RSDBRUNT
    0
    24.01.2007
    03:59:32
    227328
    E
    5
    Typ
    RSSCR
    0
    : m:15
    5120
    6
    Prg
    RSDBSPBL
    0
    06.11.2003
    20:56:48
    59392
    E
    7
    Prg
    SAPDBD$S
    0
    06.11.2003
    20:52:58
    16384
    E
    8
    Typ
    VARID
    0
    12.05.1997
    16:51:30
    4096
    9
    Prg
    %_CSYDB0
    0
    06.11.2003
    20:52:42
    28672
    E
    10
    Prg
    RSDBSPVA
    0
    24.01.2007
    03:38:36
    112640
    E
    11
    Typ
    RSVAMEMKEY
    0
    07.05.1997
    13:07:49
    2048
    12
    Prg
    RSDBSPMC
    0
    24.01.2007
    03:38:36
    66560
    E
    13
    Typ
    DDSHDESCR
    0
    03.09.1997
    03:05:16
    3072
    14
    Typ
    SPPARAMS
    0
    07.05.1997
    13:10:38
    2048
    15
    Typ
    SPPARAMS
    0
    07.05.1997
    13:10:38
    2048
    16
    Prg
    SAPLICON
    16
    12.11.2004
    13:50:21
    23552
    E
    17
    Prg
    %_CICON
    16
    16.03.2004
    20:13:52
    73728
    E
    18
    Prg
    SAPLSABE
    18
    06.11.2003
    20:53:04
    11264
    E
    19
    Prg
    SAPLSECU
    19
    24.01.2007
    03:30:48
    66560
    E
    20
    Typ
    RSSUBINFO
    0
    14.10.1999
    22:01:03
    3072
    21
    Prg
    SAPLSETB
    21
    24.01.2007
    03:51:50
    259072
    E
    22
    Prg
    SAPLSLDB
    22
    31.08.2006
    16:14:51
    70656
    E
    23
    Prg
    SAPLSDIFRUNTIME
    23
    12.11.2004
    13:45:30
    82944
    E
    24
    Typ
    DDFIXVALUE
    0
    27.08.1999
    18:04:56
    2048
    25
    Typ
    X031L
    0
    15.11.2000
    18:03:28
    5120
    26
    Typ
    DFIES
    0
    09.11.2000
    14:07:05
    8192
    27
    Prg
    SAPLSDNT
    27
    31.08.2006
    14:37:01
    201728
    E
    28
    Prg
    SAPLSUGS
    28
    30.08.2006
    19:31:11
    29696
    E
    29
    Typ
    DDFTX
    0
    05.11.1997
    02:52:59
    4096
    30
    Typ
    X031L
    0
    15.11.2000
    18:03:28
    5120
    31
    Typ
    DD03L
    0
    19.11.2001
    15:49:29
    5120
    32
    Prg
    SAPLSDIF
    32
    12.11.2004
    13:45:30
    180224
    E
    33
    Typ
    DD03P
    0
    19.11.2001
    15:46:27
    11264
    34
    Typ
    DD08V
    0
    20.08.1998
    11:35:49
    3072
    35
    Typ
    DD12V
    0
    20.08.1998
    11:35:57
    4096
    36
    Typ
    DD17V
    0
    20.08.1998
    10:50:57
    2048
    37
    Typ
    DD35V
    0
    01.03.2001
    12:21:53
    2048
    38
    Typ
    DD36M
    0
    01.03.2001
    12:38:06
    4096
    39
    Typ
    DD02V
    0
    19.11.2001
    15:50:56
    6144
    40
    Typ
    DD09V
    0
    27.08.1999
    18:04:52
    4096
    41
    Prg
    SAPLSDTB
    41
    31.08.2006
    14:13:30
    386048
    E
    42
    Typ
    DDCACHE
    0
    30.03.1995
    13:12:06
    2048
    43
    Typ
    DCTABDGET
    0
    13.05.1997
    12:49:28
    2048
    44
    Prg
    SAPLSDSG
    44
    12.11.2004
    13:45:30
    112640
    E
    45
    Prg
    RADBTDDO
    44
    12.11.2004
    13:45:30
    34816
    E
    46
    Prg
    RADBTDDF
    44
    12.11.2004
    13:45:30
    237568
    E
    47
    Typ
    DD02L
    0
    19.11.2001
    15:49:25
    6144
    48
    Typ
    DD02T
    0
    05.11.1997
    02:52:47
    2048
    49
    Typ
    DDSTATE
    0
    07.05.1997
    12:49:07
    2048
    50
    Typ
    DD05M
    0
    09.11.2000
    14:06:49
    3072
    51
    Typ
    DD08L
    0
    05.11.1997
    02:52:51
    3072
    52
    Typ
    DD08T
    0
    05.11.1997
    02:52:51
    2048
    53
    Prg
    SAPLSDFK
    53
    06.11.2003
    20:53:04
    23552
    E
    54
    Typ
    DD05S
    0
    05.11.1997
    02:52:51
    3072
    55
    Typ
    DD05V
    0
    05.11.1997
    02:52:51
    2048
    56
    Typ
    DD03K
    0
    09.11.2000
    14:25:24
    2048
    57
    Typ
    DCTABLGET
    0
    04.06.1997
    19:16:24
    2048
    58
    Typ
    DD05Q
    0
    20.08.1998
    11:35:44
    2048
    59
    Typ
    DD05Q
    0
    20.08.1998
    11:35:44
    2048
    60
    Typ
    DD02V
    0
    19.11.2001
    15:50:56
    6144
    61
    Typ
    DD02V
    0
    19.11.2001
    15:50:56
    6144
    62
    Typ
    RSEUMOD
    0
    06.11.2003
    20:36:53
    36864
    63
    Prg
    SAPLALDB
    63
    31.08.2006
    16:20:50
    264192
    E
    64
    Typ
    NODE_STRUC
    0
    10.11.1999
    17:41:51
    2048
    65
    Typ
    TRDIR
    0
    02.11.1998
    09:59:17
    5120
    66
    Typ
    RSEL_PARAS
    0
    05.09.1997
    16:13:02
    2048
    67
    Prg
    SAPLDSYA
    67
    06.11.2003
    20:53:01
    39936
    E
    68
    Prg
    SAPFSDS1
    67
    06.11.2003
    20:53:24
    47104
    E
    69
    Typ
    TDCLD
    0
    02.11.1998
    09:51:35
    5120
    70
    Prg
    SAPLSDOD
    70
    31.08.2006
    16:19:53
    39936
    E
    71
    Typ
    DOKIL
    0
    12.05.1997
    16:46:17
    3072
    72
    Prg
    SAPCNVE
    72
    06.11.2003
    20:52:58
    6144
    E
    73
    Prg
    SAPLLANG
    73
    06.11.2003
    20:53:03
    8192
    E
    74
    Typ
    T002
    0
    14.02.1998
    10:24:58
    2048
    75
    Typ
    RSEXFCODE
    0
    13.08.1997
    12:52:57
    1024
    76
    Prg
    SAPFSPOR
    0
    31.08.2006
    19:27:43
    12288
    E
    77
    Typ
    RSSELINT
    0
    04.04.1995
    16:12:37
    2048
    78
    Prg
    SAPLKGJH
    78
    06.11.2003
    20:53:03
    8192
    E
    79
    Typ
    RSPARINT
    0
    10.04.1995
    09:58:38
    1024
    80
    Prg
    SAPLSCNT
    80
    06.11.2003
    20:53:04
    24576
    E
    81
    Typ
    DYCBOX
    0
    20.08.1998
    11:16:53
    2048
    82
    Prg
    SAPLSVSM
    82
    31.08.2006
    16:12:13
    24576
    E
    83
    Prg
    SAPLSGUI
    83
    12.11.2004
    13:59:56
    61440
    E
    84
    Prg
    SAPLSTTM
    84
    31.08.2006
    14:23:56
    75776
    E
    85
    Prg
    SAPLSBDC
    85
    31.08.2006

    Hi,
    as described in the error message:
    The column COMINV is missing in table /CVS/TA_GTHDR !
    You should check this table in SE11 for consistency of the DB object and the nametab - one of them will be wrong ...
    Regards
    Volker Gueldenpfennig, consolut international ag
    http://www.consolut.de - http://www.4soi.de - http://www.easymarketplace.de

  • Stop error in phase START_SHDI_FIRST

    hi,
    we are upgrading from 4.6c to ecc6.in the phase START_SHDI_FIRST shadow instance is not starting.
    below is the dev_trc
    trc file: "dev_disp.new", trc level: 1, release: "700"
    sysno      04
    sid        DEV
    systemid   324 (IBM iSeries with OS400)
    relno      7000
    patchlevel 0
    patchno    117
    intno      20050900
    make:      single threaded, ASCII, 64 bit, optimized
    pid        2001
    Thu Feb 14 23:13:50 2008
    kernel runs with dp version 232(ext=109) (@(#) DPLIB-INT-VERSION-232)
    length of sys_adm_ext is 364 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (04 2001) [dpxxdisp.c   1239]
         shared lib "dw_xml.so" version 117 successfully loaded
         shared lib "dw_xtc.so" version 117 successfully loaded
         shared lib "dw_stl.so" version 117 successfully loaded
         shared lib "dw_gui.so" version 117 successfully loaded
         shared lib "dw_mdm.so" version 117 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >devqas_DEV_04                           <
    DpShMCreate: sizeof(wp_adm)          20592     (936)
    DpShMCreate: sizeof(tm_adm)          4986408     (24808)
    DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/548040/548048
    DpShMCreate: sizeof(comm_adm)          548048     (1088)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0     (104)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1616)
    DpShMCreate: sizeof(wall_adm)          (22440/36712/56/104)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 700000080000000, size: 5645608)
    DpShMCreate: allocated sys_adm at 700000080000000
    DpShMCreate: allocated wp_adm at 700000080001ba0
    DpShMCreate: allocated tm_adm_list at 700000080006c10
    DpShMCreate: allocated tm_adm at 700000080006c70
    DpShMCreate: allocated wp_ca_adm at 7000000804c8298
    DpShMCreate: allocated appc_ca_adm at 7000000804cc8e8
    DpShMCreate: allocated comm_adm at 7000000804ce058
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 700000080553d28
    DpShMCreate: allocated gw_adm at 700000080553da8
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 700000080553dd8
    DpShMCreate: allocated wall_adm at 700000080553de0
    Thu Feb 14 23:13:51 2008
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 4096 kByte.
    Using implementation std
    <ES> Info: use normal pages (no huge table support available)EsStdUnamFileMapInit: ES base = 0x7000000d0000000
    EsStdInit: Extended Memory 8192 MB allocated
    <ES> 2047 blocks reserved for free list.
    ES initialized.
    Thu Feb 14 23:13:56 2008
    WARNING => System running without ICM - check rdisp/start_icman [dpxxdisp.c   12480]
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:13:57 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:13:57 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:13:58 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:13:58 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:13:58 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:13:59 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:13:59 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:14:00 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:14:00 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:14:01 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:14:12 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:14:14 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:14:15 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:14:18 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:14:23 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:14:31 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:14:37 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:15:02 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:15:08 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:15:15 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:15:21 2008
    rdisp/http_min_wait_dia_wp : 1 -> 1
    Thu Feb 14 23:15:22 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Feb 14 23:15:22 2008
    ***LOG Q0I=> NiIWrite: writev (32: Broken pipe) [nixxi.cpp 3803]
    ERROR => NiIWrite: SiSendV failed for hdl 2 / sock 9
        (SI_ECONN_BROKEN/32; UD; ST; 157.116.126.249:3604) [nixxi.cpp    3803]
    ERROR => MsINiWrite: NiBufSend (rc=NIECONN_BROKEN) [msxxi.c      2480]
    ERROR => MsIDetach: MsINiWrite (rc=NIECONN_BROKEN) [msxxi.c      1146]
    LOCATION    SAP-Dispatcher devqas_DEV_04 on host devqas.krc
    ERROR       mserrno received (MSEACCESSDENIED)
    TIME        Thu Feb 14 23:15:22 2008
    RELEASE     700
    COMPONENT   MS (message handling interface)
    VERSION     4
    RC          -24
    MODULE      msxxi.c
    LINE        810
    COUNTER     7
    ERROR => not allowed to connect to message server via port sapmsSHDDEV [dpxxdisp.c   11757]
    ERROR => Please check your configuration (profile parameter rdisp/msserv_internal) [dpxxdisp.c   11758]
    DpHalt: shutdown server >devqas_DEV_04                           < (normal)
    Stop work processes
    Thu Feb 14 23:16:03 2008
    SoftCancel request for T0 U1 M0 received from DISPATCHER
    SoftCancel request for T1 U2 M0 received from DISPATCHER
    SoftCancel request for T2 U3 M0 received from DISPATCHER
    SoftCancel request for T3 U4 M0 received from DISPATCHER
    SoftCancel request for T4 U5 M0 received from DISPATCHER
    SoftCancel request for T5 U6 M0 received from DISPATCHER
    SoftCancel request for T6 U7 M0 received from DISPATCHER
    SoftCancel request for T7 U8 M0 received from DISPATCHER
    SoftCancel request for T8 U9 M0 received from DISPATCHER
    SoftCancel request for T9 U10 M0 received from DISPATCHER
    SoftCancel request for T14 U15 M0 received from DISPATCHER
    SoftCancel request for T17 U18 M0 received from DISPATCHER
    SoftCancel request for T19 U20 M0 received from DISPATCHER
    DpHdlSoftCancel: wp 19 inside critical section, do not interrupt now
    Thu Feb 14 23:17:11 2008
    Stop gateway
    Terminate gui connections
    wait for end of work processes
    waiting for termination of work processes ...
    Thu Feb 14 23:17:15 2008
    wait for end of gateway
    not attached to the message server
    cleanup EM
    cleanup event management
    cleanup shared memory/semaphores
    Thu Feb 14 23:17:17 2008
    ERROR => e=2 semctl(50,0,IPC_RMID,..) (2: No such file or directory) [semux.c      2098]
    removing request queue
    ***LOG Q05=> DpHalt, DPStop ( 2001) [dpxxdisp.c   10674]
    shutdown completed - server stopped ***
    trc file: "dev_ms", trc level: 1, release: "700"
    [Thr 01] Thu Feb 14 23:13:43 2008
    [Thr 01] MsSOsPrivInit: Run priority adjusted to 12
    [Thr 01] MsSSetTrcLog: trc logging active, max size = 20971520 bytes
    systemid   324 (IBM iSeries with OS400)
    relno      7000
    patchlevel 0
    patchno    116
    intno      20050900
    make:      multithreaded, ASCII, 64 bit, optimized
    pid        2000
    [Thr 01] ***LOG Q01=> MsSInit, MSStart (Msg Server 1 2000) [msxxserv_mt. 1824]
    [Thr 01] SigISetDefaultAction : default handling for signal 20
    [Thr 01] load acl file = /usr/sap/put/DEV/SYS/global/ms_acl_info
    [Thr 01] MsGetOwnIpAddr: my host addresses are :
    [Thr 01]   1 : [157.116.126.249] devqas (HOSTNAME)
    [Thr 01]   2 : [127.0.0.1] LOOPBACK (LOCALHOST)
    [Thr 01]   3 : [10.10.10.3] ETHVRTDEV (NILIST)
    [Thr 01]   4 : [192.168.100.249] 192.168.100.249 (NILIST)
    [Thr 01] MsHttpInit: full qualified hostname = devqas.krc
    [Thr 01] HTTP logging is switch off
    [Thr 01] MsHttpOwnDomain: own domain[1] = krc
    [Thr 01] ms/icf_info_server : deleted
    [Thr 01] *** I listen to port sapmsSHDDEV (3604) ***
    [Thr 01] CUSTOMER KEY: >Y0512714837<
    [Thr 01] Thu Feb 14 23:15:22 2008
    [Thr 01] *** ERROR => MsSLoginClient: client devqas_DEV_04 (127.0.0.1) is not in acl list, access denied [msxxserv_mt. 3794]
    trc file: "dev_rd", trc level: 1, release: "700"
    Thu Feb 14 23:14:00 2008
    ***LOG S00=> GwInitReader, gateway started ( 2007) [gwxxrd.c     1691]
    systemid   324 (IBM iSeries with OS400)
    relno      7000
    patchlevel 0
    patchno    116
    intno      20050900
    make:      single threaded, ASCII, 64 bit, optimized
    pid        2007
    gateway runs with dp version 232(ext=109) (@(#) DPLIB-INT-VERSION-232)
    gateway (version=700.2007.06.01)
    gw/local_addr : 0.0.0.0
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    Thu Feb 14 23:14:01 2008
    CCMS: Initalizing shared memory of size 40000000 for monitoring segment.
    Thu Feb 14 23:14:03 2008
    Bind service sapgw04 (socket) to port 3304
    GwPrintMyHostAddr: my host addresses are :
      1 : [157.116.126.249] devqas (HOSTNAME)
      2 : [127.0.0.1] LOOPBACK (LOCALHOST)
      3 : [10.10.10.3] ETHVRTDEV (NILIST)
      4 : [192.168.100.249] 192.168.100.249 (NILIST)
    Thu Feb 14 23:14:04 2008
    DpSysAdmExtCreate: ABAP is active
    DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    Thu Feb 14 23:14:11 2008
    DpShMCreate: sizeof(wp_adm)          20592     (936)
    DpShMCreate: sizeof(tm_adm)          4986408     (24808)
    DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/548040/548048
    DpShMCreate: sizeof(comm_adm)          548048     (1088)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0     (104)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1616)
    DpShMCreate: sizeof(wall_adm)          (22440/36712/56/104)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 700000090000000, size: 5645608)
    DpShMCreate: allocated sys_adm at 700000090000000
    DpShMCreate: allocated wp_adm at 700000090001ba0
    DpShMCreate: allocated tm_adm_list at 700000090006c10
    DpShMCreate: allocated tm_adm at 700000090006c70
    DpShMCreate: allocated appc_ca_adm at 7000000904cc8e8
    DpShMCreate: allocated comm_adm at 7000000904ce058
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 700000090553d28
    DpShMCreate: allocated gw_adm at 700000090553da8
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 700000090553dd8
    MtxInit: -2 0 0
    Thu Feb 14 23:17:11 2008
    caught SIGINT (2)
    Thu Feb 14 23:17:14 2008
    ***LOG S30=> GwStopGateway, gateway stopped () [gwxxrd.c     14549]
    thanks
    ajai kumar

    hi thomas
    below is the dev_ms log
    trc file: "dev_ms", trc level: 1, release: "700"
    Thu Feb 14 23:13:43 2008
    MsSOsPrivInit: Run priority adjusted to 12
    MsSSetTrcLog: trc logging active, max size = 20971520 bytes
    systemid   324 (IBM iSeries with OS400)
    relno      7000
    patchlevel 0
    patchno    116
    intno      20050900
    make:      multithreaded, ASCII, 64 bit, optimized
    pid        2000
    ***LOG Q01=> MsSInit, MSStart (Msg Server 1 2000)
    SigISetDefaultAction : default handling for signal 20
    load acl file = /usr/sap/put/DEV/SYS/global/ms_acl_info
    MsGetOwnIpAddr: my host addresses are :
       1 : 157.116.126.249 devqas (HOSTNAME)
       2 : 127.0.0.1 LOOPBACK (LOCALHOST)
       3 : 10.10.10.3 ETHVRTDEV (NILIST)
       4 : 192.168.100.249 192.168.100.249 (NILIST)
    MsHttpInit: full qualified hostname = devqas.krc
    HTTP logging is switch off
    MsHttpOwnDomain: own domain[1] = krc
    ms/icf_info_server : deleted
    *** I listen to port sapmsSHDDEV (3604) ***
    CUSTOMER KEY: >Y0512714837<
    Thu Feb 14 23:15:22 2008
    *** ERROR => MsSLoginClient: client devqas_DEV_04 (127.0.0.1) is not in acl list, access denied
    Thu Feb 14 23:27:37 2008
    *** ERROR => MsSCheckConnections: no response from client C0 (127.0.0.1) after 300 secs received
    *** ERROR => MsSCheckConnections: disconnect now 127.0.0.1
    Signal 15 encountered.
    => 64 bit R/3 Kernel
    => 64 bit OS400 Kernel
    => Heap limit      = unlimited
    => Stack limit     = unlimited
    => Core limit      = unlimited
    => File size limit = unlimited
    => Heap address  = 0x4000000000000000998D6A87C06A4460
    => Stack address = 0xfffffffffffebe0
    => Stack low     =  0xfffffffffffcf20
    => Stack high    =  0xffffffffffff5c0
    => Stack Trace:
         Unknown at 0x90000000005f004
         ÿÿN€ at 0x36d0
    !!! Invalid stack address encountered: 0x0
    !!! Stack corrupted.
    => CPU Registers:
         msr = 0x800000004000f032     iar = 0x090000000005f004
         ctr = 0x0000000000003610      lr = 0x090000000004e748
         xer = 0x0000000004000000      cr = 0x000000002240484b
         r00 = 0x0000000000000000     r01 = 0x0fffffffffffebe0
         r02 = 0x09001000a005a170     r03 = 0x0fffffffffffed00
         r04 = 0x0fffffffffffffe0     r05 = 0x0000000000004e20
         r06 = 0x0000000000000001     r07 = 0x0fffffffffffeeb0
         r08 = 0x0000000010048031     r09 = 0x0000000010048031
         r10 = 0xb00050000df14000     r11 = 0x0000000000000000
         r12 = 0x0900000000001ec0     r13 = 0x0000000180204c90
         r14 = 0xffffffffc86c1370     r15 = 0x0000000000000000
         r16 = 0xb00050000df14e80     r17 = 0xb00050000df14d00
         r18 = 0xfeac0fee99000100     r19 = 0xb00050000df14000
         r20 = 0xb00050000df14bc0     r21 = 0xfffffffffffffbff
         r22 = 0x0000000000000002     r23 = 0x0000000000000000
         r24 = 0x8000000000000000     r25 = 0x0000000000008c24
         r26 = 0xd38d51aea6004380     r27 = 0xfe8d8496e50015c0
         r28 = 0xfe8d8496e5001520     r29 = 0x0000000000000000
         r30 = 0xd38d51aea60044a0     r31 = 0x0000000000000000
    Fri Feb 15 12:06:56 2008
    Library   |(SRV)PGM  |Module    |Function/Statement No.
    |----
    |----
    |----
    QSYS      |QP2USER2  |QP2API    |__Qp2Fork  8
    QSYS      |QP2USER2  |QP2API    |runpase_main__FPi  6
    QSYS      |QP2USER2  |QP2API    |runpase_common__FiPvT2  2
    QSYS      |QP2FORK   |QP2FORK   |signalPaseImmediate__Fi  2
    QSYS      |QP2USER2  |QP2DL     |__Qp2errnop  24
    QSYS      |QP2USER2  |QP2API    |__Qp2CallPase2  9
    QSYS      |QP2USER2  |QP2API    |runpase_common__FiPvT2  2
    R3DEV700  |O4PRTLIB  |AS4STACK  |As4Stack_From_PASE  4
    R3DEV700  |O4PRTLIB  |AS4STACK  |As4StackOut  14
    R3DEV700  |O4PRTLIB  |AS4STACK  |_MATINVS2__8O4_StackFv  12
    Fri Feb 15 12:06:56 2008
    ***LOG Q0E=> SigIGenAction, signal ( 15)
    ***LOG Q02=> MsSHalt, MSStop (Msg Server 2000)
    Signal 6 encountered.
    => 64 bit R/3 Kernel
    => 64 bit OS400 Kernel
    => Heap limit      = unlimited
    => Stack limit     = unlimited
    => Core limit      = unlimited
    => File size limit = unlimited
    => Heap address  = 0x4000000000000000998D6A87C06A4460
    => Stack address = 0xfffffffffffebe0
    => Stack low     =  0xfffffffffffcf20
    => Stack high    =  0xffffffffffff5c0
    => Stack Trace:
         Unknown at 0x90000000005f004
         ÿÿN€ at 0x36d0
    !!! Invalid stack address encountered: 0x0
    !!! Stack corrupted.
    => CPU Registers:
         msr = 0xa00000000000c032     iar = 0x090000000005f004
         ctr = 0x0000000000003610      lr = 0x090000000004e748
         xer = 0x0000000004000000      cr = 0x000000002240484b
         r00 = 0x0000000000000000     r01 = 0x0fffffffffffebe0
         r02 = 0x09001000a005a170     r03 = 0x0fffffffffffed00
         r04 = 0x0fffffffffffffe0     r05 = 0x0000000000004e20
         r06 = 0x0000000000000001     r07 = 0x0fffffffffffeeb0
         r08 = 0x0000000010048031     r09 = 0x0000000010048031
         r10 = 0xb00050000df14000     r11 = 0x0000000000000000
         r12 = 0x0900000000001ec0     r13 = 0x0000000180204c90
         r14 = 0xffffffffc86c1370     r15 = 0x0000000000000000
         r16 = 0xb00050000df14e80     r17 = 0xb00050000df14d00
         r18 = 0xfeac0fee99000100     r19 = 0xb00050000df14000
         r20 = 0xb00050000df14bc0     r21 = 0xfffffffffffffbff
         r22 = 0x0000000000000002     r23 = 0x0000000000000000
         r24 = 0x8000000000000000     r25 = 0x0000000000008c24
         r26 = 0xd38d51aea6004380     r27 = 0xfe8d8496e50015c0
         r28 = 0xfe8d8496e5001520     r29 = 0x0000000000000000
         r30 = 0xd38d51aea60044a0     r31 = 0x0000000000000000
    Library   |(SRV)PGM  |Module    |Function/Statement No.
    |----
    |----
    |----
    QSYS      |QP2USER2  |QP2API    |__Qp2Fork  8
    QSYS      |QP2USER2  |QP2API    |runpase_main__FPi  6
    QSYS      |QP2USER2  |QP2API    |runpase_common__FiPvT2  2
    QSYS      |QP2FORK   |QP2FORK   |signalPaseImmediate__Fi  2
    QSYS      |QP2USER2  |QP2DL     |__Qp2errnop  24
    QSYS      |QP2USER2  |QP2API    |__Qp2CallPase2  9
    QSYS      |QP2USER2  |QP2API    |runpase_common__FiPvT2  2
    R3DEV700  |O4PRTLIB  |AS4STACK  |As4Stack_From_PASE  4
    R3DEV700  |O4PRTLIB  |AS4STACK  |As4StackOut  14
    R3DEV700  |O4PRTLIB  |AS4STACK  |_MATINVS2__8O4_StackFv  12
    ***LOG Q0E=> SigIGenAction, signal ( 6)
    ***LOG Q02=> MsSHalt, MSStop (Msg Server 2000)
    thanks
    ajai

  • MaxDB 7.6.00.18 Couldn't be Started on Windows 2003

    Hi,
    Because of problem "SAP DBTech JDBC: Cannot connect to jdbc:sapdb://LOCALHOST/PRT [Task limit]." i decided to increase the value of MAXUSERTASKS to 1000 which has default value 50. After setting parameter via Database Manager GUI, I restarted the DB. But the DB did not come up.
    Although I've setted the parameter back to 50 result is same.
    Here is the log file <b>knldiag.err</b> content:
    2006-09-05 00:35:03                               --- Starting GMT 2006-09-04 21:35:03           7.6.00   Build 018-123-119-055
    2006-09-05 00:35:16      0xDD4 ERR 18876 FIBER    Could not create fiber, rc = 8
    2006-09-05 00:35:16      0xDD4 ERR 18197 DBCRASH  RTE Abort exception
    2006-09-05 00:35:16      0xE08 ERR 54008 MEMORY   RTEMem_RteAllocator  : could not allocat
    2006-09-05 00:35:16      0xE08 ERR 54008 MEMORY   e memory
    2006-09-05 00:35:16      0xE08 ERR 54008 MEMORY   required   : 671120
    2006-09-05 00:35:16      0xE08 ERR 54008 MEMORY   allocated  : 12328960
    2006-09-05 00:35:16      0xE08 ERR 54008 MEMORY   supplement : 1048576
    2006-09-05 00:35:16      0xE08 ERR 54008 MEMORY   limit      : -1
    2006-09-05 00:35:16      0xD64 ERR 18008 TASKING  Could not create thread: 'UKT', rc = 8
    2006-09-05 00:35:16      0xD64 ERR 18197 DBCRASH  RTE Abort exception
    2006-09-05 00:35:17      0x37C ERR 18176 CONSOLE  Wrong REQUESTOR thread request
    2006-09-05 00:35:18                               ___ Stopping GMT 2006-09-04 21:35:18           7.6.00   Build 018-123-119-055
    2006-09-05 00:36:50                               --- Starting GMT 2006-09-04 21:36:50           7.6.00   Build 018-123-119-055
    2006-09-05 00:37:03      0xF10 ERR 18876 FIBER    Could not create fiber, rc = 8
    2006-09-05 00:37:03      0xF10 ERR 18197 DBCRASH  RTE Abort exception
    2006-09-05 00:37:03      0xE5C ERR 54008 MEMORY   RTEMem_RteAllocator  : could not allocat
    2006-09-05 00:37:03      0xE5C ERR 54008 MEMORY   e memory
    2006-09-05 00:37:03      0xE5C ERR 54008 MEMORY   required   : 671120
    2006-09-05 00:37:03      0xE5C ERR 54008 MEMORY   allocated  : 12328960
    2006-09-05 00:37:03      0xE5C ERR 54008 MEMORY   supplement : 1048576
    2006-09-05 00:37:03      0xE5C ERR 54008 MEMORY   limit      : -1
    2006-09-05 00:37:03      0xB6C ERR 18008 TASKING  Could not create thread: 'UKT', rc = 8
    2006-09-05 00:37:03      0xB6C ERR 18197 DBCRASH  RTE Abort exception
    2006-09-05 00:37:04      0xE3C ERR 18176 CONSOLE  Wrong REQUESTOR thread request
    2006-09-05 00:37:05                               ___ Stopping GMT 2006-09-04 21:37:05           7.6.00   Build 018-123-119-055
    and also <b>knldiag</b>
    Date       Time       TID(hex) Typ MsgID Label    Message-Text
    2006-09-05 00:36:50      0xB6C     19705 CONNECT  Loading default TCPIP-DLL, ( 'sqltcp.dll')
    2006-09-05 00:36:50      0xB6C     19707 CONNECT  WINSOCK: 2.0, SQLTCP-DLL: 7.6.0
    2006-09-05 00:36:50      0xB6C     20233 RTE      Dump of all kernel parameters start
    2006-09-05 00:36:51      0xB6C     20206 RTE      Using mode NORMAL for data volume 1
    2006-09-05 00:36:51      0xB6C     20206 RTE      Using mode NORMAL for data volume 2
    2006-09-05 00:36:51      0xB6C     20206 RTE      Using mode NORMAL for data volume 3
    2006-09-05 00:36:51      0xB6C     20206 RTE      Using mode NORMAL for data volume 4
    2006-09-05 00:36:51      0xB6C     20206 RTE      Using mode NORMAL for data volume 5
    2006-09-05 00:36:51      0xB6C     20234 RTE       ADMIN=1
    2006-09-05 00:36:51      0xB6C     20234 RTE       AKDUMP_ALLOWED=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       ALLOW_MULTIPLE_SERVERTASK_UKTS=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       AUTHENTICATION_ALLOW=
    2006-09-05 00:36:51      0xB6C     20234 RTE       AUTHENTICATION_DENY=
    2006-09-05 00:36:51      0xB6C     20234 RTE       AUTOSAVE=1
    2006-09-05 00:36:51      0xB6C     20234 RTE       AUTO_RECREATE_BAD_INDEXES=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       BACKUPRESULT=1
    2006-09-05 00:36:51      0xB6C     20234 RTE       BACKUP_BLOCK_CNT=8
    2006-09-05 00:36:51      0xB6C     20234 RTE       BACKUPHISTFILE=dbm.knl
    2006-09-05 00:36:51      0xB6C     20234 RTE       BACKUPMED_DEF=dbm.mdf
    2006-09-05 00:36:51      0xB6C     20234 RTE       CACHE_SIZE=200000
    2006-09-05 00:36:51      0xB6C     20234 RTE       CALLSTACKLEVEL=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       CATCACHE_MINSIZE=262144
    2006-09-05 00:36:51      0xB6C     20234 RTE       CAT_CACHE_SUPPLY=64064
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECKDATA=1
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECK_BACKUP=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECK_COMMON=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECK_CONVERTER=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECK_DATACACHE=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECK_DATAPAGELOG=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECK_FBM=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECK_IOMAN=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECK_KB_REGIONS=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECK_LOCK_SUPPLY=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECK_LOCK=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECK_LOGHISTORY=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECK_LOGPAGE=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECK_LOGTRANS=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECK_LOGVOLUME=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECK_REGIONS=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECK_SRVTASKS=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECK_TABLE_WIDTH=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECK_TASK_SPECIFIC_CATALOGCACHE=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECK_TRANSLIST=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECK_TREE_LOCKS=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       CHECK_TREE=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       CLUSTERED_IO=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       COLUMNCOMPRESSION=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       _COMMENT=
    2006-09-05 00:36:51      0xB6C     20234 RTE       CONTROLPASSWORD=***
    2006-09-05 00:36:51      0xB6C     20234 RTE       CONTROLUSERID=CONTROL
    2006-09-05 00:36:51      0xB6C     20234 RTE       CONVERTER_REGIONS=8
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATABASEFULL=1
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATACACHE_RGNS=64
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATA_VOLUME_GROUPS=1
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATA_VOLUME_MODE_0001=NORMAL
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATA_VOLUME_MODE_0002=NORMAL
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATA_VOLUME_MODE_0003=NORMAL
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATA_VOLUME_MODE_0004=NORMAL
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATA_VOLUME_MODE_0005=NORMAL
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATA_VOLUME_NAME_0001=D:\sapdb\PRT\sapdata\DISKD0001
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATA_VOLUME_NAME_0002=D:\sapdb\PRT\sapdata\DISKD0002
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATA_VOLUME_NAME_0003=D:\sapdb\PRT\sapdata\DISKD0003
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATA_VOLUME_NAME_0004=D:\sapdb\PRT\sapdata\DISKD0004
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATA_VOLUME_NAME_0005=D:\sapdb\PRT\sapdata\DISKD0005
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATA_VOLUME_SIZE_0001=512000
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATA_VOLUME_SIZE_0002=512000
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATA_VOLUME_SIZE_0003=512000
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATA_VOLUME_SIZE_0004=512000
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATA_VOLUME_SIZE_0005=512000
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATA_VOLUME_TYPE_0001=F
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATA_VOLUME_TYPE_0002=F
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATA_VOLUME_TYPE_0003=F
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATA_VOLUME_TYPE_0004=F
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATA_VOLUME_TYPE_0005=F
    2006-09-05 00:36:51      0xB6C     20234 RTE       DATE_TIME_FORMAT=INTERNAL
    2006-09-05 00:36:51      0xB6C     20234 RTE       DBFILLINGABOVELIMIT=70L80M85M90H95H96H97H98H99H
    2006-09-05 00:36:51      0xB6C     20234 RTE       DBFILLINGBELOWLIMIT=70L80L85L90L95L
    2006-09-05 00:36:51      0xB6C     20234 RTE       DDLTRIGGER=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       DEADLOCK_DETECTION=4
    2006-09-05 00:36:51      0xB6C     20234 RTE       DEFAULT_CODE=ASCII
    2006-09-05 00:36:51      0xB6C     20234 RTE       DELAYCOMMIT=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       DELAYLOGWRITER=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       DIAG_HISTORY_NUM=2
    2006-09-05 00:36:51      0xB6C     20234 RTE       DIAG_HISTORY_PATH=d:\sapdb\data\wrk\PRT\DIAGHISTORY
    2006-09-05 00:36:51      0xB6C     20234 RTE       DIAGSEM=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       DWIO_AREA_FLUSH=50
    2006-09-05 00:36:51      0xB6C     20234 RTE       DWIO_AREA_SIZE=50
    2006-09-05 00:36:51      0xB6C     20234 RTE       DWLRU_TAIL_FLUSH=25
    2006-09-05 00:36:51      0xB6C     20234 RTE       ENABLE_CHECK_INSTANCE=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       ENABLE_SYSTEM_TRIGGERS=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       ERROR=3
    2006-09-05 00:36:51      0xB6C     20234 RTE       _EVENTFILE=knldiag.evt
    2006-09-05 00:36:51      0xB6C     20234 RTE       _EVENTSIZE=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       EVENT=1
    2006-09-05 00:36:51      0xB6C     20234 RTE       EXPAND_COM_TRACE=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       EXTERNAL_DUMP_REQUEST=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       FBMLOW_IO_RATE=10
    2006-09-05 00:36:51      0xB6C     20234 RTE       FBM_VOLUME_BALANCE=10
    2006-09-05 00:36:51      0xB6C     20234 RTE       FBM_VOLUME_COMPRESSION=50
    2006-09-05 00:36:51      0xB6C     20234 RTE       FILEDIR_SPINLOCKPOOL_SIZE=10
    2006-09-05 00:36:51      0xB6C     20234 RTE       FORBID_LOAD_BALANCING=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       FORMATTING_MODE=PARALLEL
    2006-09-05 00:36:51      0xB6C     20234 RTE       FORMAT_DATAVOLUME=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       HASHED_RESULTSET_CACHESIZE=262144
    2006-09-05 00:36:51      0xB6C     20234 RTE       HASHED_RESULTSET=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       HEAP_CHECK_LEVEL=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       HIRES_TIMER_TYPE=CPU
    2006-09-05 00:36:51      0xB6C     20234 RTE       HS_STORAGE_DLL=libhsscopy
    2006-09-05 00:36:51      0xB6C     20234 RTE       HS_SYNC_INTERVAL=50
    2006-09-05 00:36:51      0xB6C     20234 RTE       IDXFILELIST_SIZE=2048
    2006-09-05 00:36:51      0xB6C     20234 RTE       INIT_ALLOCATORSIZE=237568
    2006-09-05 00:36:51      0xB6C     20234 RTE       INSTANCE_TYPE=OLTP
    2006-09-05 00:36:51      0xB6C     20234 RTE       IOPROCSFOR_PRIO=1
    2006-09-05 00:36:51      0xB6C     20234 RTE       IOPROCSPER_DEV=1
    2006-09-05 00:36:51      0xB6C     20234 RTE       IOPROCSSWITCH=2
    2006-09-05 00:36:51      0xB6C     20234 RTE       JOIN_MAXTAB_LEVEL4=64
    2006-09-05 00:36:51      0xB6C     20234 RTE       JOIN_MAXTAB_LEVEL9=5
    2006-09-05 00:36:51      0xB6C     20234 RTE       JOIN_SEARCH_LEVEL=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       JOIN_TABLEBUFFER=128
    2006-09-05 00:36:51      0xB6C     20234 RTE       _KERNELDIAGFILE=knldiag
    2006-09-05 00:36:51      0xB6C     20234 RTE       KERNELDIAGSIZE=800
    2006-09-05 00:36:51      0xB6C     20234 RTE       _KERNELDUMPFILE=knldump
    2006-09-05 00:36:51      0xB6C     20234 RTE       _KERNELTRACEFILE=knltrace
    2006-09-05 00:36:51      0xB6C     20234 RTE       KERNELTRACESIZE=5844
    2006-09-05 00:36:51      0xB6C     20234 RTE       KERNELVERSION=KERNEL    7.6.00   BUILD 018-123-119-055
    2006-09-05 00:36:51      0xB6C     20234 RTE       LOAD_BALANCING_CHK=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       LOAD_BALANCING_DIF=10
    2006-09-05 00:36:51      0xB6C     20234 RTE       LOAD_BALANCING_EQ=5
    2006-09-05 00:36:51      0xB6C     20234 RTE       LOCAL_REDO_LOG_BUFFER_SIZE=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       LOCKSUPPLY_BLOCK=100
    2006-09-05 00:36:51      0xB6C     20234 RTE       LOGABOVELIMIT=50L75L90M95M96H97H98H99H
    2006-09-05 00:36:51      0xB6C     20234 RTE       LOGFULL=1
    2006-09-05 00:36:51      0xB6C     20234 RTE       LOGSEGMENTFULL=1
    2006-09-05 00:36:51      0xB6C     20234 RTE       LOG_BACKUP_TO_PIPE=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       LOG_IO_QUEUE=200
    2006-09-05 00:36:51      0xB6C     20234 RTE       LOG_MIRRORED=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       LOG_QUEUE_COUNT=1
    2006-09-05 00:36:51      0xB6C     20234 RTE       LOG_SEGMENT_SIZE=170666
    2006-09-05 00:36:51      0xB6C     20234 RTE       LOG_VOLUME_NAME_001=C:\sapdb\PRT\saplog\DISKL001
    2006-09-05 00:36:51      0xB6C     20234 RTE       LOG_VOLUME_SIZE_001=512000
    2006-09-05 00:36:51      0xB6C     20234 RTE       LOG_VOLUME_TYPE_001=F
    2006-09-05 00:36:51      0xB6C     20234 RTE       LRU_FOR_SCAN=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       MAXBACKUPDEVS=2
    2006-09-05 00:36:51      0xB6C     20234 RTE       MAXCPU=1
    2006-09-05 00:36:51      0xB6C     20234 RTE       MAXDATAVOLUMES=11
    2006-09-05 00:36:51      0xB6C     20234 RTE       _MAXEVENTS=100
    2006-09-05 00:36:51      0xB6C     20234 RTE       _MAXEVENTTASKS=2
    2006-09-05 00:36:51      0xB6C     20234 RTE       MAXGARBAGECOLL=1
    2006-09-05 00:36:51      0xB6C     20234 RTE       MAXLOCKS=300000
    2006-09-05 00:36:51      0xB6C     20234 RTE       MAXLOGVOLUMES=2
    2006-09-05 00:36:51      0xB6C     20234 RTE       MAXPAGER=64
    2006-09-05 00:36:51      0xB6C     20234 RTE       MAXRGN_REQUEST=-1
    2006-09-05 00:36:51      0xB6C     20234 RTE       MAXSERVERTASKS=1023
    2006-09-05 00:36:51      0xB6C     20234 RTE       MAXTASKSTACK=1024
    2006-09-05 00:36:51      0xB6C     20234 RTE       _MAXTRANS=4104
    2006-09-05 00:36:51      0xB6C     20234 RTE       MAXUSERTASKS=50
    2006-09-05 00:36:51      0xB6C     20234 RTE       MAXVOLUMES=14
    2006-09-05 00:36:51      0xB6C     20234 RTE       MAX_HASHTABLE_MEMORY=5120
    2006-09-05 00:36:51      0xB6C     20234 RTE       MAX_LOG_QUEUE_COUNT=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       MAXMESSAGE_FILES=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       MAX_MESSAGE_LIST_LENGTH=100
    2006-09-05 00:36:51      0xB6C     20234 RTE       MAX_RETENTION_TIME=480
    2006-09-05 00:36:51      0xB6C     20234 RTE       MAX_SERVERTASK_STACK=150
    2006-09-05 00:36:51      0xB6C     20234 RTE       MAX_SINGLE_HASHTABLE_SIZE=512
    2006-09-05 00:36:51      0xB6C     20234 RTE       MAX_SPECIALTASK_STACK=200
    2006-09-05 00:36:51      0xB6C     20234 RTE       MBLOCKDATA_SIZE=32768
    2006-09-05 00:36:51      0xB6C     20234 RTE       MBLOCKQUAL_SIZE=16384
    2006-09-05 00:36:51      0xB6C     20234 RTE       MBLOCKSTACK_SIZE=32768
    2006-09-05 00:36:51      0xB6C     20234 RTE       MBLOCKSTRAT_SIZE=8192
    2006-09-05 00:36:51      0xB6C     20234 RTE       MCOD=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       MEMORY_ALLOCATION_LIMIT=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       MEM_ENHANCE_LIMIT=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       MINI_DUMP=NORMAL
    2006-09-05 00:36:51      0xB6C     20234 RTE       MINREPLYSIZE=4096
    2006-09-05 00:36:51      0xB6C     20234 RTE       MINSERVERTASKS=73
    2006-09-05 00:36:51      0xB6C     20234 RTE       MIN_RETENTION_TIME=60
    2006-09-05 00:36:51      0xB6C     20234 RTE       MONITOR_READ=2147483647
    2006-09-05 00:36:51      0xB6C     20234 RTE       MONITOR_ROWNO=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       MONITOR_SELECTIVITY=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       MONITOR_TIME=2147483647
    2006-09-05 00:36:51      0xB6C     20234 RTE       MPDISP_LOOPS=1
    2006-09-05 00:36:51      0xB6C     20234 RTE       MPDISP_PRIO=DEFAULT
    2006-09-05 00:36:51      0xB6C     20234 RTE       MPRGN_BUSY_WAIT=DEFAULT
    2006-09-05 00:36:51      0xB6C     20234 RTE       MPRGN_DIRTY_READ=DEFAULT
    2006-09-05 00:36:51      0xB6C     20234 RTE       MP_RGN_LOOP=-1
    2006-09-05 00:36:51      0xB6C     20234 RTE       MPRGN_PRIO=DEFAULT
    2006-09-05 00:36:51      0xB6C     20234 RTE       MPRGN_QUEUE=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       MULTIO_BLOCK_CNT=4
    2006-09-05 00:36:51      0xB6C     20234 RTE       OFFICIAL_NODE=
    2006-09-05 00:36:51      0xB6C     20234 RTE       OMS_HEAP_BLOCKSIZE=10000
    2006-09-05 00:36:51      0xB6C     20234 RTE       OMS_HEAP_COUNT=1
    2006-09-05 00:36:51      0xB6C     20234 RTE       OMS_HEAP_LIMIT=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       OMS_HEAP_THRESHOLD=100
    2006-09-05 00:36:51      0xB6C     20234 RTE       OMSREGIONS=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       OMSRGNS=7
    2006-09-05 00:36:51      0xB6C     20234 RTE       OMS_RUN_IN_UDE_SERVER=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       OMS_STREAM_TIMEOUT=30
    2006-09-05 00:36:51      0xB6C     20234 RTE       OMS_VERS_THRESHOLD=2097152
    2006-09-05 00:36:51      0xB6C     20234 RTE       ONLINE=1
    2006-09-05 00:36:51      0xB6C     20234 RTE       OPTIMIZE_AGGREGATION=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       OPTIMIZE_FETCH_REVERSE=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       OPTIMIZE_FIRST_ROWS=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       OPTIMIZE_JOIN_HASHTABLE=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       OPTIMIZE_JOIN_HASH_MINIMAL_RATIO=1
    2006-09-05 00:36:51      0xB6C     20234 RTE       OPTIMIZE_JOIN_ONEPHASE=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       OPTIMIZE_JOIN_OPERATOR_SORT=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       OPTIMIZE_JOIN_OUTER=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       OPTIMIZE_JOIN_PARALLEL_MINSIZE=1000000
    2006-09-05 00:36:51      0xB6C     20234 RTE       OPTIMIZE_JOIN_PARALLEL_SERVERS=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       OPTIMIZE_MIN_MAX=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       OPTIMIZE_OPERATOR_JOIN_COSTFUNC=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       OPTIMIZE_OPERATOR_JOIN=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       OPTIMIZE_QUAL_ON_INDEX=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       OPTIMIZE_QUERYREWRITE=STATEMENT
    2006-09-05 00:36:51      0xB6C     20234 RTE       OPTIM_CACHE=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       OPTIM_INV_ONLY=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       OPTIM_JOIN_FETCH=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       OPTIM_MAX_MERGE=500
    2006-09-05 00:36:51      0xB6C     20234 RTE       OUTOFSESSIONS=2
    2006-09-05 00:36:51      0xB6C     20234 RTE       PACKETSIZE=131072
    2006-09-05 00:36:51      0xB6C     20234 RTE       PAGESIZE=8192
    2006-09-05 00:36:51      0xB6C     20234 RTE       PRIOBASE_COM=10
    2006-09-05 00:36:51      0xB6C     20234 RTE       PRIOBASE_IOC=80
    2006-09-05 00:36:51      0xB6C     20234 RTE       PRIOBASE_RAV=80
    2006-09-05 00:36:51      0xB6C     20234 RTE       PRIOBASE_REX=40
    2006-09-05 00:36:51      0xB6C     20234 RTE       PRIOBASE_U2U=100
    2006-09-05 00:36:51      0xB6C     20234 RTE       PRIOFACTOR=80
    2006-09-05 00:36:51      0xB6C     20234 RTE       PROTECT_DATACACHE_MEMORY=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       READAHEADBLOBS=32
    2006-09-05 00:36:51      0xB6C     20234 RTE       REQUEST_TIMEOUT=5000
    2006-09-05 00:36:51      0xB6C     20234 RTE       RESTARTTIME=600
    2006-09-05 00:36:51      0xB6C     20234 RTE       ROWRGNS=8
    2006-09-05 00:36:51      0xB6C     20234 RTE       _RTEDUMPFILE=rtedump
    2006-09-05 00:36:51      0xB6C     20234 RTE       RTE_TEST_REGIONS=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       RUNDIRECTORY=d:\sapdb\data\wrk\PRT
    2006-09-05 00:36:51      0xB6C     20234 RTE       SEQUENCE_CACHE=1
    2006-09-05 00:36:51      0xB6C     20234 RTE       SERVERDBFOR_SAP=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       SESSION_TIMEOUT=900
    2006-09-05 00:36:51      0xB6C     20234 RTE       SET_VOLUME_LOCK=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       SHAREDSQL_COMMANDCACHESIZE=32768
    2006-09-05 00:36:51      0xB6C     20234 RTE       SHAREDSQL_EXPECTEDSTATEMENTCOUNT=1500
    2006-09-05 00:36:51      0xB6C     20234 RTE       SHAREDSQL=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       SHOW_MAX_KB_STACK_USE=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       SHOW_MAX_STACK_USE=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       STANDBY=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       SUBTREE_LOCKS=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       SYMBOL_DEMANGLING=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       SYMBOL_RESOLUTION=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       SYSTEMERROR=3
    2006-09-05 00:36:51      0xB6C     20234 RTE       TABRGNS=8
    2006-09-05 00:36:51      0xB6C     20234 RTE       TASKCLUSTER01=tw;al;ut;2000sv,100bup;10ev,10gc;
    2006-09-05 00:36:51      0xB6C     20234 RTE       TASKCLUSTER02=ti,100dw;30000us;
    2006-09-05 00:36:51      0xB6C     20234 RTE       TASKCLUSTER03=compress
    2006-09-05 00:36:51      0xB6C     20234 RTE       TIME_MEASUREMENT=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_AK=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_ALLOCATOR=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_CATALOG=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_CLIENTKERNELCOM=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_COMMON=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_COMMUNICATION=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_CONVERTER=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_DATACHAIN=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_DATAPAM=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_DATATREE=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_DBPROC=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_DEFAULT=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_DELETE=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_FBM=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_FILEDIR=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_FRAMECTRL=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_INDEX=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_INSERT=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_IOMAN=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_IPC=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_JOIN=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_KSQL=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_LOCK=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_LOGACTION=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_LOGHISTORY=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_LOGPAGE=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_LOGTRANS=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_LOGVOLUME=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_LONG=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_MEMORY=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_MESSAGES=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_OBJECTCONTAINER=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_OBJECT_ADD=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_OBJECT_ALTER=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_OBJECT_FREE=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_OBJECT_GET=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_OBJECT=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_OMS_CONTAINERDIR=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_OMS_CONTEXT=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_OMS_ERROR=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_OMS_FLUSHCACHE=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_OMS_INTERFACE=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_OMS_KEYRANGE=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_OMS_KEY=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_OMS_LOCK=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_OMS_MEMORY=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_OMS_NEWOBJ=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_OMS_SESSION=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_OMS_STREAM=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_OMS_VAROBJECT=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_OMS_VERSION=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_OPTIMIZE=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_ORDER_STANDARD=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_ORDER=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_PAGER=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_PAGES_BUP=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_PAGES_EV=2
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_PAGES_GC=20
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_PAGES_LW=5
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_PAGES_PG=3
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_PAGES_SV=5
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_PAGES_TI=2
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_PAGES_US=10
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_PAGES_UT=5
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_PAGES=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_PRIMARY_TREE=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_QUERYREWRITE=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_RUNTIME=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_SELECT=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_SHAREDSQL=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_SQLMANAGER=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_SRVTASKS=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_STOP_ERRORCODE=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_SYNCHRONISATION=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_SYSVIEW=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_TABLE=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_TIME=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_UPDATE=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRACE_VOLUME=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRANS_HISTORY_SIZE=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRANSRGNS=8
    2006-09-05 00:36:51      0xB6C     20234 RTE       TRANS_THRESHOLD_VALUE=60
    2006-09-05 00:36:51      0xB6C     20234 RTE       UKT_CPU_RELATIONSHIP=NONE
    2006-09-05 00:36:51      0xB6C     20234 RTE       _UNICODE=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       UPDATESTAT_PARALLEL_SERVERS=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       UPDSTATWANTED=1
    2006-09-05 00:36:51      0xB6C     20234 RTE       USED_MAX_LOG_QUEUE_COUNT=1
    2006-09-05 00:36:51      0xB6C     20234 RTE       USESELECTFETCH=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       USEVARIABLEINPUT=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       USEASYNC_IO=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       USE_COROUTINES=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       USE_FIBERS=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       USEIOPROCS_ONLY=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       USE_MEM_ENHANCE=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       USE_OPEN_DIRECT=NO
    2006-09-05 00:36:51      0xB6C     20234 RTE       USE_SYSTEM_PAGE_CACHE=YES
    2006-09-05 00:36:51      0xB6C     20234 RTE       UTILITYPROTFILE=dbm.utl
    2006-09-05 00:36:51      0xB6C     20234 RTE       UTILITY_PROTSIZE=100
    2006-09-05 00:36:51      0xB6C     20234 RTE       VOLUMENO_BIT_COUNT=8
    2006-09-05 00:36:51      0xB6C     20234 RTE       WORKDATASIZE=8192
    2006-09-05 00:36:51      0xB6C     20234 RTE       WORKSTACKSIZE=8192
    2006-09-05 00:36:51      0xB6C     20234 RTE       XP_CONVERTER_REGIONS=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       XP_DATA_CACHE_RGNS=0
    2006-09-05 00:36:51      0xB6C     20234 RTE       XP_MAXPAGER=0
    2006-09-05 00:36:51      0xB6C     20235 RTE      Dump of all kernel parameters done
    2006-09-05 00:36:51      0xB6C     19841 DIAGHIST Backup of diagnostic files is in progress
    2006-09-05 00:36:51      0xB6C     19842 DIAGHIST Backup of diagnostic files has finished
    2006-09-05 00:36:51      0xB6C     19600 VERSION  'Kernel    7.6.00   Build 018-123-119-055'
    2006-09-05 00:36:51      0xB6C     19600 VERSION  'W32/INTEL 7.6.00   Build 018-123-119-055'
    2006-09-05 00:36:51      0xB6C     19769 INFO     Starting SERVERDB:      'PRT'
    2006-09-05 00:36:51      0xB6C     19770 INFO              SERVERNODE:    'bayiportal.ipragaz.com.tr'
    2006-09-05 00:36:51      0xB6C     19771 INFO              Process ID:    3768
    2006-09-05 00:36:51      0xB6C     19773 INFO              Date:          2006-09-05
    2006-09-05 00:36:51      0xB6C     19772 INFO              Owner:         'SYSTEM'
    2006-09-05 00:36:51      0xB6C     19774 INFO              Product suite: 'Enterprise'
    2006-09-05 00:36:51      0xB6C     19783 INFO              Processors:    1 ( logical: 2 )
    2006-09-05 00:36:51      0xB6C     19782 INFO              Fiber:         'YES'
    2006-09-05 00:36:51      0xB6C     19776 INFO              Max virtual memory:        2047 MB
    2006-09-05 00:36:51      0xB6C     19777 INFO              Total physical memory:     3070 MB
    2006-09-05 00:36:51      0xB6C     19778 INFO              Available physical memory: 2630 MB
    2006-09-05 00:36:51      0xB6C     20219 RTE      Memory allocation not limited
    2006-09-05 00:36:51      0xB6C     20220 RTE      System page cache usage enabled
    2006-09-05 00:36:51      0xB6C     19692 TCLUSTER tw;al;ut;2000sv,100bup;10ev,10gc;ti,100dw;30000us;compress
    2006-09-05 00:36:51      0xB6C     19693 TCLUSTER number of 'BUP':   0
    2006-09-05 00:36:51      0xB6C     19693 TCLUSTER number of ' DW':  64
    2006-09-05 00:36:51      0xB6C     19693 TCLUSTER number of ' US':  50
    2006-09-05 00:36:51      0xB6C     19693 TCLUSTER number of ' SV': 1023
    2006-09-05 00:36:51      0xB6C     19693 TCLUSTER number of ' EV':   2
    2006-09-05 00:36:51      0xB6C     19693 TCLUSTER number of ' GC':   1
    2006-09-05 00:36:51      0xB6C     19692 TCLUSTER Total Number of UKT 7
    2006-09-05 00:36:51      0xB6C     19692 TCLUSTER Number of UKT with User Tasks 1
    2006-09-05 00:36:52      0xB6C     19860 MEMORY   I/O buffer cache: 200000 Pages allocated
    2006-09-05 00:36:52      0xB6C     19811 EVENTING Suppressing output to 'knldiag.evt' 0 pages
    2006-09-05 00:36:52      0xB6C     19812 EVENTING Eventbuffer 100 events 2 tasks
    2006-09-05 00:36:52      0xEC4     19821 TASKING  Thread 3780 starting
    2006-09-05 00:36:52      0xB6C     19831 TRACE_IO Configured MAXMESSAGE_FILES:0
    2006-09-05 00:36:52      0xB6C     19832 TRACE_IO Disabled: No TraceMessagefiles wanted
    2006-09-05 00:36:52      0xEA8     19688 THREAD   CLOCK thread started
    2006-09-05 00:36:52      0xACC     20213 RTE      CONSOLE thread started
    2006-09-05 00:36:52      0xE38     19821 TASKING  Thread 3640 starting
    2006-09-05 00:36:52      0xE50     19821 TASKING  Thread 3664 starting
    2006-09-05 00:36:52      0xE1C     19688 THREAD   TIMER thread started
    2006-09-05 00:36:52      0xEF0     19688 THREAD   ASYNC0 thread started
    2006-09-05 00:36:52      0xE5C     19821 TASKING  Thread 3676 starting
    2006-09-05 00:36:52      0xE3C     19688 THREAD   REQUESTOR thread started
    2006-09-05 00:37:03      0xB6C     19649 CONNECT  Kernel threads initialization timeout
    2006-09-05 00:37:03      0xEF8     19821 TASKING  Thread 3832 starting
    2006-09-05 00:37:03      0xF58     19627 TASKING  UKT started, TID:0xF58
    2006-09-05 00:37:03      0xF54     19821 TASKING  Thread 3924 starting
    2006-09-05 00:37:03      0xF08     19821 TASKING  Thread 3848 starting
    2006-09-05 00:37:03      0xCDC     19821 TASKING  Thread 3292 starting
    2006-09-05 00:37:03      0xF5C     19627 TASKING  UKT started, TID:0xF5C
    2006-09-05 00:37:03      0xF68     19627 TASKING  UKT started, TID:0xF68
    2006-09-05 00:37:03      0xF7C     19627 TASKING  UKT started, TID:0xF7C
    2006-09-05 00:37:03      0xF00     19627 TASKING  UKT started, TID:0xF00
    2006-09-05 00:37:03      0xF10 ERR 18876 FIBER    Could not create fiber, rc = 8
    2006-09-05 00:37:03      0xF10 ERR 18197 DBCRASH  RTE Abort exception
    2006-09-05 00:37:03      0xE5C ERR 54008 MEMORY   RTEMem_RteAllocator  : could not allocat
    2006-09-05 00:37:03      0xE5C ERR 54008 MEMORY   e memory
    2006-09-05 00:37:03      0xE5C ERR 54008 MEMORY   required   : 671120
    2006-09-05 00:37:03      0xE5C ERR 54008 MEMORY   allocated  : 12328960
    2006-09-05 00:37:03      0xE5C ERR 54008 MEMORY   supplement : 1048576
    2006-09-05 00:37:03      0xE5C ERR 54008 MEMORY   limit      : -1
    2006-09-05 00:37:03      0xE5C     54000 MEMORY   free blocks size 20384 : 1
    2006-09-05 00:37:03      0xE5C     54000 MEMORY   free blocks size 323080 : 1
    2006-09-05 00:37:03      0xE5C     54000 MEMORY   free blocks size 416832 : 5
    2006-09-05 00:37:03      0xB6C ERR 18008 TASKING  Could not create thread: 'UKT', rc = 8
    2006-09-05 00:37:03      0xB6C ERR 18197 DBCRASH  RTE Abort exception
    2006-09-05 00:37:04      0xB6C     19890 DIAGHIST Backup of diagnostic files will be forced at next restart
    2006-09-05 00:37:04      0xB6C     19600 VERSION  'Kernel    7.6.00   Build 018-123-119-055'
    2006-09-05 00:37:04      0xB6C     19654 DBSTATE  SERVERDB 'PRT' has stopped
    2006-09-05 00:37:04      0xE3C ERR 18176 CONSOLE  Wrong REQUESTOR thread request
    current write position -
    any idea?

    Hi,
    my colleague, Henrik, is correct, in these older MaxDB 7.6 versions an increase of the parameter MAXUSERTASKS will automatically increase other parameters too, but a decrease will not automatically decrease those same dependent parameters.
    I'd also suggest you to change back the setting of parameter MAXSERVERTASKS to its original value.
    Just fyi: with your current
    TASK_STACK size (1024), every UserTask will use around 1MB of stack. If you increase your amount of usertasks from 50 to 1000, you increase the memory used by stack from around 50mb to a 1gb!
    Regards,
    Roland

Maybe you are looking for

  • Error while reading CPS file in jar

    Hi, I am getting error :- Error while initializing CAZM Factory : CardAuthorizationManagerFactory : getFactory : in one of my class in WSAD Root cause i guess its not reading CPS file which is there in one of the jar file. Please help me to get solut

  • 2 Dimensions and a Fact - Join Paths

    I have a scenario and I have been racking my brains out as to if what I am looking for could be set up. I have two dimenisions - Region and System - each System belongs to a Region. So the System Dimenison contains a Region_Key. I have a Fact table t

  • Transfer of files not possible!!!

    I just bought a new Imac core duo. I am following the instructions re: transfering files from my old computer (g4 os10.2.8) during the set up. I connected the two cpus using firewire, restart the old one pressing t and I get a message from the imac s

  • Restore original Sony firmware on Xperia Z with Linux tools

    Hello, I tried Cyanogenmod 10.2 Milestone and after that my IMEI was gone and I could not make calls any longer. I now would like to restore the original Sony firmware for my Xperia Z. But, I do not use and do not have MS Windows. I have the Android

  • Why is QT not playing my movies which have been exported from FCPX?

    Nov 11, 2012 1:07 AM Hello there. I have posted this post in Mac intel forums but have been redirected to post this post in FCPX forums and hence I am posting this thread here. Hope I will be given the proper answer to my problem/s which seem to be g