Assert error in __memp_fget under OS X/Linux using TXN_SNAPSHOT

Hi all,
Hopefully this is a good place to file a bug report. I've been hunting down the cause of a core dump for a couple of weeks and have finally reduced it to a [small example|http://home.comcast.net/~jonathanmeredith/bugrpt.tar.gz] (I couldn't find a way to attach it to the message).
README from the tarball:
The code sample enclosed causes BDB to die with an assertion error. This is the minimal
code that causes the bug, stripped down from an Erlang port driver. It may look strange
and ugly, but it only exists to reproduce the bug.
To reproduce expand the tarball into a directory containing the BDB tarball and run make.
It will compile the library and test code then start looping through the test code. The
assertion usually occurs anywhere between 1 and 50 iterations through the test code.
The bug occurs under Mac OS X 10.5.7 (9J61) running on an 8 core [email protected] mac pro,
8Gb RAM, compiled with i686-apple-darwin9-gcc-4.2.1 and under Debianl Lenny on
4 core Xeon 5160 @ 3.00GHz, 8Gb RAM, libc 2.7-18, gcc (Debian 4.3.2-1.1) 4.3.2.
Expected output:
assert failure: ../dist/../mp/mp_fget.c/257: "bhp != NULL"
0 bugrpt 0x001284c1 __os_stack + 38
1 bugrpt 0x00124bce __os_abort + 17
2 bugrpt 0x000ba786 __db_assert + 66
3 bugrpt 0x0010f365 __memp_fget + 2274
4 bugrpt 0x0000acff __bamc_rget + 4421
5 bugrpt 0x0000923f __bam_bulk_duplicates + 5534
6 bugrpt 0x000b229d __dbc_put + 4515
7 bugrpt 0x000a0d9f __db_put + 639
8 bugrpt 0x000bf7c1 __db_put_pp + 606
9 bugrpt 0x000023bf start + 723
10 bugrpt 0x00002492 bug200 + 70
11 libSystem.B.dylib 0x91e37155 pthreadstart + 321
12 libSystem.B.dylib 0x91e37012 thread_start + 34
./loopbug: line 20: 52562 Abort trap ../bugrpt
Removing the TXN_SNAPSHOT options makes the bug go away. So does changing the size of the 'put' value.
Reducing the number of the THREADS #define increases the number of iterations required to hit the assert.
On the 4-core Debian box it took 377 reps with THREADS=2

Hi Jon,
Thanks for a great test case, this made our job a little easier! If you could please send me an email to: michael dot brey at oracle dot com, I will respond to you with a patch of this issue for 4.7.
Regards,
Mike Brey, Oracle Berkeley DB

Similar Messages

  • Getting an error to order a VM for Linux using a Template

    Hi All,
    I have tried to submit the order  a VM for Linux RHEL6.1.
    Portal page is not showing the Administrator Password's   "Enter and Renter" tabs on the page and the message showing on the the tab space is as follows:
    Important: To set the root password on  your virtual machine, please refer to the appropriate restrictions for your  Linux operating system flavor.
    I have created root password on the RHEL OS itself
    I submitted the order after that it is showing the error as follows:
    Can any one help me on this how isolate this issue..?
    Thank in Advance.
    -Noor.

    Hello,
    Unfortunately there is not enough information here. It is possible that some of the configuration steps have not completed successfully. Without seeing adding screenshots or XMLs it might be hard to answer this question.
    Could you please open TAC case? They woudl be able to answer it quickly.
    Also, is this question about Cloud Solution or Workplace Solution?
    Thanks,
    Max.

  • Assert error/hangs running the performance sample code

    Hi,
    I'm doing some work to understand how fast I can expect Berkeley DB to run and I found the 2006 white paper on [Performance Metrics and Benchmarks|http://www.oracle.com/technology/products/berkeley-db/pdf/berkeley-db-perf.pdf] so I downloaded the [sample code|http://www.oracle.com/technology/products/berkeley-db/files/perf.zip] and made a couple of fixes to make it run with 4.7.25 (shown at the end).
    When I run 'make test' it frequently hangs on the "Transactional Data Store (write, in-memory logging)" test under OS X 10.5.7 and under Debian lenny (kernel 2.6.26-1-amd64).
    If I rebuild BDB with --enable-diagnostic I get this assertion error.
    jmeredith@op:~/src/perf$ rm -rf TESTDIR ; ./t
    Using Berkeley DB 4.7.25 - ops: 1000000; keysize: 8; datasize: 32
    Data Store (read):
    elapsed time: 0.392573 seconds : 2.5473e+06 key/data pairs per sec
    Data Store (bulk read):
    elapsed time: 1.615233 seconds : 2.66339e+07 key/data pairs per sec
    Data Store (write):
    elapsed time: 0.629771 seconds : 1.58788e+06 key/data pairs per sec
    Transactional Data Store (read):
    elapsed time: 2.413665 seconds : 414308 key/data pairs per sec
    assert failure: ../dist/../txn/txn_region.c/451: "td->mvcc_ref > 0"
    [0x4f431d]
    [0x4f41a9]
    [0x44cdff]
    [0x4f2e1e]
    [0x42f0d3]
    [0x4f3faf]
    [0x4fddee]
    [0x4f8dde]
    [0x4d975c]
    [0x4c9991]
    [0x4e417d]
    [0x40137c]
    [0x40198e]
    [0x52613b]
    [0x4001b9]
    Aborted (core dumped)
    Here are the changes to get the code to build.
    --- perf/t.c 2006-06-28 17:15:47.000000000 -0600
    +++ perf-fixed/t.c 2009-07-06 09:44:43.000000000 -0600
    @@ -1,4 +1,5 @@
    #include <sys/types.h>
    +#include <sys/time.h>
    #include <stdio.h>
    #include <stdlib.h>
    @@ -38,7 +39,15 @@
    char *progname;
    -extern void __os_clock(DB_ENV *, u_int32_t *, u_int32_t *);
    +void
    +__os_clock(DB_ENV e, u_int32_t secs_ptr, u_int32_t *usecs_ptr)
    +{
    + struct timeval t;
    +
    + gettimeofday(&t, NULL);
    + *secs_ptr = (u_int32_t) t.tv_sec;
    + *usecs_ptr = (u_int32_t) t.tv_usec;
    +}
    void cleanup(void);
    void op_ds(u_int, int);
    @@ -364,7 +373,7 @@
    op_tds(ops, 0, 0);
    res("Transactional Data Store (read):", ops);
    - op_tds(ops, 1, DB_LOG_INMEMORY);
    + op_tds(ops, 1, DB_LOG_IN_MEMORY);
    res("Transactional Data Store (write, in-memory logging):", ops);
    op_tds(ops, 1, DB_TXN_NOSYNC);

    Hi,
    I reproduced your problem on Ubuntu 4.2.3 with db 4.7.25 and saw the same assert error as you. From the error message, the program asserts error/hangs at the "Transactional Data Store (write, in-memory logging)", that is calling op_tds() with DB_LOG_IN_MEMORY as the flags.
    The problem comes from your change on the sample code that the DB_LOG_IN_MEMORY is set with wrong API. The DB_LOG_IN_MEMORY should be set in DB_ENV->log_set_config(). Please refer to [DB_ENV->log_set_config|http://www.oracle.com/technology/documentation/berkeley-db/db/api_c/env_log_set_config.html] and its flag DB_LOG_IN_MEMORY.
    I change env's setting flags in op_tds() as follows. In this way, the error I saw is eliminated and the program works as expected.
    The original code is:
    PERF_CHECK(
            dbenv->set_flags(dbenv, DB_AUTO_COMMIT | txn_flags, 1) == 0);"
    {code}
    I change it to:
    {code}
    if (txn_flags == DB_LOG_IN_MEMORY) {
            PERF_CHECK(
               dbenv->log_set_config(dbenv, DB_LOG_IN_MEMORY, 1) == 0);
            txn_flags = 0;
    PERF_CHECK(
            dbenv->set_flags(dbenv, DB_AUTO_COMMIT | txn_flags, 1) == 0);
    {code}
    Please apply the change and l*et us know if it works on your machine.
    Regards,
    Emily Fu, Oracle Berkeley DB                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Assert error

    Hi everyone,
    i have a screen with four drop down by keys and an alv...i get a dump saying ASSERT error on every third click on the screen.This click could just be scrolling the alv.Also note the dump happens only when the ALV has some data in it.No of hits for ALV is 10,000.
    Any ideas regarding this issue?
    PS:helpful answers will be rewarded with points

    Runtime Errors         ASSERTION_FAILED
    Date and Time          07.06.2007 05:54:00
    Short text
    The ASSERT condition was violated.
    What happened?
    In the running application program, the ASSERT statement recognized a
    situation that should not have occurred.
    The runtime error was triggered for one of these reasons:
    - For the checkpoint group specified with the ASSERT statement, the
    activation mode is set to "abort".
    - Via a system variant, the activation mode is globally set to "abort"
    for checkpoint groups in this system.
    - The activation mode is set to "abort" on program level.
    - The ASSERT statement is not assigned to any checkpoint group.
    What can you do?
    Take note of the actions and inputs that lead to the error.
    Contact your SAP administrator for further processing of the problem.
    Using transaction ST22 for ABAP short dump analysis you can see and
    administrate termination messages and retain them for a longer period.
    Error analysis
    The following checkpoint group was used: "No checkpoint group specified"
    If in the ASSERT statement the addition FIELDS was used, you can find
    the content of the first 8 specified fields in the following overview:
    " (not used) "
    " (not used) "
    " (not used) "
    " (not used) "
    " (not used) "
    " (not used) "
    " (not used) "
    " (not used) "
    How to correct the error
    Probably the only way to eliminate the error is to correct the program.
    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,
    please use the following search criteria:
    "ASSERTION_FAILED" " "
    "/1WDA/L8STANDARD==============CP" bzw.
    "/1WDA/L8STANDARD==============CCIMP"
    "IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT"
    If you cannot solve the problem yourself, please send the
    following documents to SAP:
    1. A hard copy print describing the problem (short dump).
    To obtain this, select "System->List->Save->Local File (unconverted)"
    on the current screen.
    2. A suitable hardcopy printout of the system log.
    To obtain this, call the system log with Transaction SM21
    and set the time interval to 10 minutes before and 5 minutes after
    the short dump. In the display choose "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, choose "More Utilities->Upload/Download->Download" in the
    Editor.
    4. Details regarding the conditions under which the error occurred
    or which actions and input led to the error.
    System environment
    SAP-Release 710
    Application server... "pwdf6276"
    Network address...... "10.66.70.146"
    Operating system..... "Windows NT"
    Release.............. "5.2"
    Hardware type........ "4x AMD64 Level"
    Character length.... 16 Bits
    Pointer length....... 64 Bits
    Work process number.. 3
    Shortdump setting.... "full"
    Database server... "PWDF6276"
    Database type..... "MSSQL"
    Database name..... "BUZ"
    Database user ID.. "buz"
    Char.set.... "C"
    SAP kernel....... 710
    created (date)... "May 29 2007 01:15:47"
    create on........ "NT 5.2 3790 Service Pack 1 x86 MS VC++ 14.00"
    Database version. "SQL_Server_9.00 "
    Patch level. 0
    Patch text.. " "
    Database............. "MSSQL 7.00.699 or higher, MSSQL 8.00.194"
    SAP database version. 710
    Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2, Windows
    NT 6.0, , Development system build information:,
    , Release: 710, Pltfrm : NTAMD64, Host :
    pwdfm153, Srcdir : d:depot asBCO22src, Gendir : D:depot"
    Memory consumption
    Roll.... 16192
    EM...... 29328768
    Heap.... 0
    Page.... 0
    MM Used. 24246112
    MM Free. 5078672
    User and Transaction
    Client.............. 000
    User................ "C5091327"
    Language Key........ "E"
    Transaction......... " "
    Transaction ID...... "87AA14DC037BF1638FDD0017A4A73AEA"
    Program............. "/1WDA/L8STANDARD==============CP"
    Screen.............. "SAPMHTTP 0010"
    Screen Line......... 2
    Debugger Active..... "none"
    Information on Caller ofr "HTTP" Connection:
    Plug-in Type.......... "HTTP"
    Caller IP............. "10.53.138.131"
    Caller Port........... 50010
    Universal Resource Id. "/sap/bc/webdynpro/sap/smmw_central_inbox/"
    Information on where terminated
    Termination occurred in the ABAP program "/1WDA/L8STANDARD==============CP" -
    in "IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT".
    The main program was "SAPMHTTP ".
    In the source code you have the termination point in line 353
    of the (Include) program "/1WDA/L8STANDARD==============CCIMP".
    Source Code Extract
    Line
    SourceCde
    323
    method if_wdr_view_element_adapter~set_content.
    324
    assert m_is_alive = abap_true.
    325
    data wd_FLOW_DATA type ref to CL_WD_FLOW_DATA. "#EC NEEDED
    326
    data imagetooltip type string. "#EC NEEDED
    327
    data _srclen  type i. "#EC NEEDED
    328
    329
      cast it to the more specific view element
    330
    wd_FLOW_DATA ?= m_view_element. "#EC NEEDED
    331
    332
    333
    if env-showverbose_ids = abap_true.
    334
    if m_context_element is not initial.
    335
    m_id = m_context_element->get_path( withoutcontroller = abap_true ).
    336
    concatenate m_view_element->_component->id '.' m_view_element->view->name '.' m_view
    337
    else.
    338
    concatenate m_view_element->_component->id '.' m_view_element->view->name '.' m_view
    339
    endif.
    340
    if if_wdr_view_element_adapter~m_suffix is not initial.
    341
    concatenate m_id '__' if_wdr_view_element_adapter~m_suffix into m_id. "#EC NOTEXT
    342
    endif.
    343
    endif.
    344
    endmethod.
    345
    346
    method finalize.
    347
    super->finalize( reusable ).
    348
    endmethod.
    349
    endclass.
    350
    351
    class cl_FLOW_LAYOUT_NOWRAP implementation.
    352
    method if_wdr_view_element_adapter~set_content.
    >>>>>
    assert m_is_alive = abap_true.
    354
    data wd_FLOW_DATA type ref to CL_WD_FLOW_DATA. "#EC NEEDED
    355
    data imagetooltip type string. "#EC NEEDED
    356
    data _srclen  type i. "#EC NEEDED
    357
    IF IFUR_NW5_FLOWLAYOUT~FLOWLAYOUTITEMS IS NOT BOUND.
    358
    GET REFERENCE OF MU__FLOWLAYOUTITEMS INTO IFUR_NW5_FLOWLAYOUT~FLOWLAYOUTITEMS.
    359
    ENDIF.
    360
    data temp_id                      type string. "#EC NEEDED
    361
    data temp_namespace               type string. "#EC NEEDED
    362
    data is_reused                    type abap_bool. "#EC NEEDED
    363
    364
      cast it to the more specific view element
    365
    wd_FLOW_DATA ?= m_view_element. "#EC NEEDED
    366
    367
    368
    if env-showverbose_ids = abap_true.
    369
    if m_context_element is not initial.
    370
    m_id = m_context_element->get_path( withoutcontroller = abap_true ).
    371
    concatenate m_view_element->_component->id '.' m_view_element->view->name '.' m_view
    372
    else.
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    0
    SY-INDEX
    20
    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
    HTTP Control
    SY-MSGTY
    E
    SY-MSGID
    MMW_ADM_MON
    SY-MSGNO
    034
    SY-MSGV1
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    SY-MODNO
    0
    SY-DATUM
    20070607
    SY-UZEIT
    055356
    SY-XPROG
    SY-XFORM
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    33 METHOD       /1WDA/L8STANDARD==============CP    /1WDA/L8STANDARD==============CCIMP   353
    CL_FLOW_LAYOUT_NOWRAP=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    32 METHOD       /1WDA/L8STANDARD==============CP    /1WDA/L8STANDARD==============CCIMP   171
    CL_FLOW_LAYOUT=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    31 METHOD       /1WDA/L7STANDARD==============CP    /1WDA/L7STANDARD==============CCIMP   751
    CL_TRANSPARENT_CONTAINER=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    30 METHOD       /1WDA/L8STANDARD==============CP    /1WDA/L8STANDARD==============CCIMP   650
    CL_GRID_LAYOUT_CELL=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    29 METHOD       /1WDA/L8STANDARD==============CP    /1WDA/L8STANDARD==============CCIMP   806
    CL_GRID_LAYOUT_ROW=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    28 METHOD       /1WDA/L8STANDARD==============CP    /1WDA/L8STANDARD==============CCIMP   510
    CL_GRID_LAYOUT=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    27 METHOD       /1WDA/L7STANDARD==============CP    /1WDA/L7STANDARD==============CCIMP   751
    CL_TRANSPARENT_CONTAINER=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    26 METHOD       /1WDA/L8STANDARD==============CP    /1WDA/L8STANDARD==============CCIMP   650
    CL_GRID_LAYOUT_CELL=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    25 METHOD       /1WDA/L8STANDARD==============CP    /1WDA/L8STANDARD==============CCIMP   806
    CL_GRID_LAYOUT_ROW=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    24 METHOD       /1WDA/L8STANDARD==============CP    /1WDA/L8STANDARD==============CCIMP   541
    CL_GRID_LAYOUT=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    23 METHOD       /1WDA/L7STANDARD==============CP    /1WDA/L7STANDARD==============CCIMP  2066
    CL_GROUP=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    22 METHOD       /1WDA/L9STANDARD==============CP    /1WDA/L9STANDARD==============CCIMP  2722
    CL_TABSTRIP_ITEM=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    21 METHOD       /1WDA/L9STANDARD==============CP    /1WDA/L9STANDARD==============CCIMP  2258
    CL_TABSTRIP=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    20 METHOD       /1WDA/L8STANDARD==============CP    /1WDA/L8STANDARD==============CCIMP  1181
    CL_MATRIX_LAYOUT_CELL=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    19 METHOD       /1WDA/L8STANDARD==============CP    /1WDA/L8STANDARD==============CCIMP  1313
    CL_MATRIX_LAYOUT_ROW=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    18 METHOD       /1WDA/L8STANDARD==============CP    /1WDA/L8STANDARD==============CCIMP  1030
    CL_MATRIX_LAYOUT=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    17 METHOD       /1WDA/L7STANDARD==============CP    /1WDA/L7STANDARD==============CCIMP  2066
    CL_GROUP=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    16 METHOD       /1WDA/L8STANDARD==============CP    /1WDA/L8STANDARD==============CCIMP   298
    CL_FLOW_LAYOUT_ITEM=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    15 METHOD       /1WDA/L8STANDARD==============CP    /1WDA/L8STANDARD==============CCIMP   101
    CL_FLOW_LAYOUT=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    14 METHOD       /1WDA/L7STANDARD==============CP    /1WDA/L7STANDARD==============CCIMP   751
    CL_TRANSPARENT_CONTAINER=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    13 METHOD       CL_WDR_INTERNAL_WINDOW_ADAPTERCP    CL_WDR_INTERNAL_WINDOW_ADAPTERCM005    66
    CL_WDR_INTERNAL_WINDOW_ADAPTER=>CONV_VIEW_INTO_VE_ADAPTER_TREE
    12 METHOD       CL_WDR_INTERNAL_WINDOW_ADAPTERCP    CL_WDR_INTERNAL_WINDOW_ADAPTERCM006   168
    CL_WDR_INTERNAL_WINDOW_ADAPTER=>SET_CONTENT_BY_WINDOW
    11 METHOD       CL_WDR_CLIENT_SSR=============CP    CL_WDR_CLIENT_SSR=============CM01H    36
    CL_WDR_CLIENT_SSR=>RENDER_WINDOWS
    10 METHOD       CL_WDR_CLIENT_SSR=============CP    CL_WDR_CLIENT_SSR=============CM004     6
    CL_WDR_CLIENT_SSR=>IF_WDR_RESPONSE_RENDERER~RENDER_USER_INTERFACE_UPDATES
    9 METHOD       CL_WDR_CLIENT_ABSTRACT_HTTP===CP    CL_WDR_CLIENT_ABSTRACT_HTTP===CM00N     4
    CL_WDR_CLIENT_ABSTRACT_HTTP=>IF_WDR_CLIENT~SEND_RESPONSE
    8 METHOD       CL_WDR_CLIENT_SSR=============CP    CL_WDR_CLIENT_SSR=============CM003    19
    CL_WDR_CLIENT_SSR=>IF_WDR_CLIENT~SEND_RESPONSE
    7 METHOD       CL_WDR_MAIN_TASK==============CP    CL_WDR_MAIN_TASK==============CM00I   126
    CL_WDR_MAIN_TASK=>EXECUTE
    6 METHOD       CL_WDR_MAIN_TASK==============CP    CL_WDR_MAIN_TASK==============CM00U     6
    CL_WDR_MAIN_TASK=>IF_WDR_RUNTIME~EXECUTE
    5 METHOD       CL_WDR_CLIENT_ABSTRACT_HTTP===CP    CL_WDR_CLIENT_ABSTRACT_HTTP===CM01F   105
    CL_WDR_CLIENT_ABSTRACT_HTTP=>HANDLE_REQUEST
    4 METHOD       CL_WDR_MAIN_TASK==============CP    CL_WDR_MAIN_TASK==============CM00J    66
    CL_WDR_MAIN_TASK=>IF_HTTP_EXTENSION~HANDLE_REQUEST
    3 METHOD       CL_HTTP_SERVER================CP    CL_HTTP_SERVER================CM01F   365
    CL_HTTP_SERVER=>EXECUTE_REQUEST_FROM_MEMORY
    2 FUNCTION     SAPLHTTP_RUNTIME                    LHTTP_RUNTIMEU02                     1050
    HTTP_DISPATCH_REQUEST
    1 MODULE (PBO) SAPMHTTP                            SAPMHTTP                               13
    %_HTTP_START
    Chosen variables
    Name
    Val.
    No.      33 Ty.          METHOD
    Name  CL_FLOW_LAYOUT_NOWRAP=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    ME->M_IS_ALIVE
    2
    0
    0
    0
    ABAP_TRUE
    X
    5
    8
    0
    0
    SY-REPID
    /1WDA/L8STANDARD==============CP
    2354424355444454333333333333334522222222
    F1741FC8341E4124DDDDDDDDDDDDDD3000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    ME->IFUR_NW5_FLOWLAYOUT~FLOWLAYOUTITEMS
    0.0.0.0.0.0.0.1.
    D0001000
    B0004C00
    SYST-REPID
    /1WDA/L8STANDARD==============CP
    2354424355444454333333333333334522222222
    F1741FC8341E4124DDDDDDDDDDDDDD3000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    ME->MU__FLOWLAYOUTITEMS
    0.0.0.0.0.0.0.1.
    80700000
    F0000010
    00100000
    00300000
    WD_FLOW_DATA
    |
    | F0000000 |
    | F0000000 |
    | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_VIEW_ELEMENT |
    |
    70008000
    0000F100
    ME->_ENV-SHOW_VERBOSE_IDS
    2
    0
    0
    0
    ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT
    |
    | F0000000 |
    | F0000000 |
    | %_PRINT |
    | 000                                                                                0### |
    | 2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223000 |
    | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
    | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
    | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
    | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_ID |
    | WD04D8 |
    | 543343 |
    | 740448 |
    | 000000 |
    | 000000 |
    | %_DUMMY$$ |
    |  |
    | 2222 |
    | 0000 |
    | 0000 |
    | 0000 |
    | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_VIEW_ELEMENT->ID |
    | SWCV_CAPTION_LAYOUT_DATA |
    | 554554455444544545554454 |
    | 3736F31049FEFC19F54F4141 |
    | 000000000000000000000000 |
    | 000000000000000000000000 |
    | SYST |
    | ##############################################################################T#########XC#### |
    | 1000000000000000000000000000000000000000000000001000000000000000000000000000105000100010540000 |
    | 4000105000000000000010001000100000000080000000009000000000000000000000000000604000900000830400 |
    | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
    | 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000E000000C |
    | No.      32 Ty.          METHOD |
    | Name  CL_FLOW_LAYOUT=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT |
    | SY-REPID |
    | /1WDA/L8STANDARD==============CP |
    | 2354424355444454333333333333334522222222 |
    | F1741FC8341E4124DDDDDDDDDDDDDD3000000000 |
    | 0000000000000000000000000000000000000000 |
    | 0000000000000000000000000000000000000000 |
    | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_PARENT_ENABLED |
    | X |
    | 5 |
    | 8 |
    | 0 |
    | 0 |
    | %_SPACE |
    |  |
    | 2 |
    | 0 |
    | 0 |
    | 0 |
    | %_DUMMY$$ |
    |  |
    | 2222 |
    | 0000 |
    | 0000 |
    | 0000 |
    | ME->MT__FLOWLAYOUTITEMS |
    | Table IT_21343[2x8] |
    | DATA=MT__FLOWLAYOUTITEMS
    Table reference: 4974
    TABH+  0(20) = F0215F58FE070000000000000000000000000000
    TABH+ 20(20) = 6E1300005F5300000200000008000000FFFFFFFF
    TABH+ 40(16) = 044703006072020010000000C1280003
    store        = 0xF0215F58FE070000
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 4974  (0x6E130000)
    label        = 21343 (0x5F530000)
    fill         = 2     (0x02000000)
    leng         = 8     (0x08000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000007
    occu         = 16    (0x10000000)
    accKind      = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniNo)
    keyKind      = 1     (default)
    cmpMode      = 4     (cmpSingleEq)
    occu0        = 1
    stMode       = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    hasScndKeys  = 0
    hasRowId     = 0
    scndKeysOutdated = 0
    scndUniKeysOutdated = 0
    Shareable Table Header Data -
    tabi         = 0x50215F58FE070000
    pgHook       = 0x0000000000000000
    idxPtr       = 0x0000000000000000
    id           = 14821 (0xE5390000)
    shmTabhSet   = 0x0000000000000000
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x10000000)
    lineAlloc    = 16    (0x10000000)
    shmVersId    = 0     (0x00000000)
    shmRefCount  = 1     (0x01000000)
    pageDoubling = 1
    rowId        = 18446744073709551615
    scndKeyAdmin = 0x0000000000000000
    FLI_NOWRAP
    |
    | 70008100 |
    | 60009400 |
    | FL_NOWRAP->MT__FLOWLAYOUTITEMS |
    | Table IT_21344[1x8] |
    | DATA=MT__FLOWLAYOUTITEMS
    Table reference: 4975
    TABH+  0(20) = B0275F58FE070000000000000000000000000000
    TABH+ 20(20) = 6F130000605300000100000008000000FFFFFFFF
    TABH+ 40(16) = 044703006072020010000000C1280003
    store        = 0xB0275F58FE070000
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 4975  (0x6F130000)
    label        = 21344 (0x60530000)
    fill         = 1     (0x01000000)
    leng         = 8     (0x08000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000007
    occu         = 16    (0x10000000)
    accKind      = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniNo)
    keyKind      = 1     (default)
    cmpMode      = 4     (cmpSingleEq)
    occu0        = 1
    stMode       = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    hasScndKeys  = 0
    hasRowId     = 0
    scndKeysOutdated = 0
    scndUniKeysOutdated = 0
    Shareable Table Header Data -
    tabi         = 0x10275F58FE070000
    pgHook       = 0x0000000000000000
    idxPtr       = 0x0000000000000000
    id           = 14822 (0xE6390000)
    shmTabhSet   = 0x0000000000000000
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x10000000)
    lineAlloc    = 16    (0x10000000)
    shmVersId    = 0     (0x00000000)
    shmRefCount  = 1     (0x01000000)
    pageDoubling = 1
    rowId        = 18446744073709551615
    scndKeyAdmin = 0x0000000000000000
    FLI
    |
    | 70008100 |
    | 90006400 |
    | CL_WD_ROW_HEAD_DATA=>E_ROW_BACKGROUND_DESIGN+4(4) |
    | 01 |
    | 33 |
    | 01 |
    | 00 |
    | 00 |
    | RECYCLE_ITEMS_INDEX |
    | 4 |
    | 0000 |
    | 4000 |
    | SYST |
    | ##############################################################################T#########XC#### |
    | 1000000000000000000000000000000000000000000000001000000000000000000000000000105000100010540000 |
    | 4000105000000000000010001000100000000080000000009000000000000000000000000000604000900000830400 |
    | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
    | 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000E000000C |
    | %_FSREG_001 |
    | ??? |
    | ?????? |
    | ?????? |
    | CL_WD_FLOW_DATA=>E_V_GUTTER+16(4) |
    | 04 |
    | 33 |
    | 04 |
    | 00 |
    | 00 |
    | ME->MT_ALL_ITEMS |
    | Table IT_21346[1x8] |
    | DATA=MT_ALL_ITEMS
    Table reference: 4977
    TABH+  0(20) = A0025F58FE070000000000000000000000000000
    TABH+ 20(20) = 71130000625300000100000008000000FFFFFFFF
    TABH+ 40(16) = 044703006072020010000000C9280003
    store        = 0xA0025F58FE070000
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 4977  (0x71130000)
    label        = 21346 (0x62530000)
    fill         = 1     (0x01000000)
    leng         = 8     (0x08000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000007
    occu         = 16    (0x10000000)
    accKind      = 1     (ItAccessStandard)
    idxKind      = 1     (ItIndexLinear)
    uniKind      = 2     (ItUniNo)
    keyKind      = 1     (default)
    cmpMode      = 4     (cmpSingleEq)
    occu0        = 1
    stMode       = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    hasScndKeys  = 0
    hasRowId     = 0
    scndKeysOutdated = 0
    scndUniKeysOutdated = 0
    Shareable Table Header Data -
    tabi         = 0x00025F58FE070000
    pgHook       = 0x0000000000000000
    idxPtr       = 0xE0DA5258FE070000
    id           = 15872 (0x003E0000)
    shmTabhSet   = 0x0000000000000000
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x10000000)
    lineAlloc    = 16    (0x10000000)
    shmVersId    = 0     (0x00000000)
    shmRefCount  = 1     (0x01000000)
    pageDoubling = 1
    rowId        = 18446744073709551615
    scndKeyAdmin = 0x0000000000000000
    FL_NOWRAP
    |
    | 70008100 |
    | 70008400 |
    | VA__ALL_ITEMS |
    |
    70008100
    70008400
    ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT
    |
    | F0000000 |
    | F0000000 |
    | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME |
    |  |
    | WD_FLOW_DATA |
    |
    70008000
    0000F100
    AC__ALL_ITEMS
    Table IT_24072[4x8]
    CLASS-POOL=/1WDA/L8STANDARDCLASS=CL_FLOW_LAYOUTMETHOD=IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTE
    Table reference: 4832
    TABH+  0(20) = C09E5B58FE070000000000000000000000000000
    TABH+ 20(20) = E0120000085E00000400000008000000FFFFFFFF
    TABH+ 40(16) = 04470300908D020010000000C1280003
    store        = 0xC09E5B58FE070000
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 4832  (0xE0120000)
    label        = 24072 (0x085E0000)
    fill         = 4     (0x04000000)
    leng         = 8     (0x08000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000152
    occu         = 16    (0x10000000)
    accKind      = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniNo)
    keyKind      = 1     (default)
    cmpMode      = 4     (cmpSingleEq)
    occu0        = 1
    stMode       = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    hasScndKeys  = 0
    hasRowId     = 0
    scndKeysOutdated = 0
    scndUniKeysOutdated = 0
    Shareable Table Header Data -
    tabi         = 0x209E5B58FE070000
    pgHook       = 0x0000000000000000
    idxPtr       = 0x0000000000000000
    id           = 16342 (0xD63F0000)
    shmTabhSet   = 0x0000000000000000
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x10000000)
    lineAlloc    = 16    (0x10000000)
    shmVersId    = 0     (0x00000000)
    shmRefCount  = 1     (0x01000000)
    pageDoubling = 1
    rowId        = 18446744073709551615
    scndKeyAdmin = 0x0000000000000000
    No.      31 Ty.          METHOD
    Name  CL_TRANSPARENT_CONTAINER=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    SYST-REPID
    /1WDA/L7STANDARD==============CP
    2354424355444454333333333333334522222222
    F1741FC7341E4124DDDDDDDDDDDDDD3000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    WD_LAYOUT
    |
    | 60009000 |
    | F0000100 |
    | SY-REPID |
    | /1WDA/L7STANDARD==============CP |
    | 2354424355444454333333333333334522222222 |
    | F1741FC7341E4124DDDDDDDDDDDDDD3000000000 |
    | 0000000000000000000000000000000000000000 |
    | 0000000000000000000000000000000000000000 |
    | %_FSREG_001 |
    | ??? |
    | ?????? |
    | ?????? |
    | ME |
    |
    70008100
    D0002400
    RSJOBINFO
    00000000000000                                  ##
    2222222222222222222222222222222233333333333333222222222222222222222222222222222200
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000
    %_DUMMY$$
    2222
    0000
    0000
    0000
    VA__CONTENT
    |
    | 70008100 |
    | C0003400 |
    | ME->MV_WD_CHILDREN |
    | Table IT_24071[2x8] |
    | DATA=MV_WD_CHILDREN
    Table reference: 5089
    TABH+  0(20) = 505D5E57FE070000000000000000000000000000
    TABH+ 20(20) = E1130000075E00000200000008000000FFFFFFFF
    TABH+ 40(16) = 046C0100C0AC000010000000C1280803
    store        = 0x505D5E57FE070000
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 5089  (0xE1130000)
    label        = 24071 (0x075E0000)
    fill         = 2     (0x02000000)
    leng         = 8     (0x08000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000016
    occu         = 16    (0x10000000)
    accKind      = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniNo)
    keyKind      = 1     (default)
    cmpMode      = 4     (cmpSingleEq)
    occu0        = 1
    stMode       = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 1
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    hasScndKeys  = 0
    hasRowId     = 0
    scndKeysOutdated = 0
    scndUniKeysOutdated = 0
    Shareable Table Header Data -
    tabi         = 0x10755E57FE070000
    pgHook       = 0x0000000000000000
    idxPtr       = 0x0000000000000000
    id           = 588   (0x4C020000)
    shmTabhSet   = 0x0000000000000000
    refCount     = 4     (0x04000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x10000000)
    lineAlloc    = 16    (0x10000000)
    shmVersId    = 0     (0x00000000)
    shmRefCount  = 5     (0x05000000)
    pageDoubling = 1
    rowId        = 18446744073709551615
    scndKeyAdmin = 0x0000000000000000
    WD_TRANSPARENT_CONTAINER
    70008000
    4000B100
    ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT
    |
    | F0000000 |
    | F0000000 |
    | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME |
    |  |
    | ME->/1WDA/VUIELEMENT~MV_ENABLED |
    | X |
    | 5 |
    | 8 |
    | 0 |
    | 0 |
    | SY-XPROG |
    |  |
    | 2222222222222222222222222222222222222222 |
    | 0000000000000000000000000000000000000000 |
    | 0000000000000000000000000000000000000000 |
    | 0000000000000000000000000000000000000000 |
    | ME->IFUR_NW5_SCROLLCONTAINER~CONTENT |
    |
    70008100
    C0003400
    SY
    ##############################################################################T#########XC####
    1000000000000000000000000000000000000000000000001000000000000000000000000000105000100010540000
    4000105000000000000010001000100000000080000000009000000000000000000000000000604000900000830400
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000000000000000000000000000000000000000E000000C
    WD_TRANSPARENT_CONTAINER->IP_SCROLLING_MODE
    2
    0
    0
    0
    ABAP_TRUE
    X
    5
    8
    0
    0
    %_SPACE
    2
    0
    0
    0
    ME->IFUR_NW5_SCROLLCONTAINER~SCROLLINGMODE
    4
    0000
    4000
    WD_TRANSPARENT_CONTAINER->PL_SCROLLING_MODE
    00
    33
    00
    00
    00
    No.      30 Ty.          METHOD
    Name  CL_GRID_LAYOUT_CELL=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT
    VA__CONTENT
    |
    | 70008100 |
    | D0002400 |
    | ME->IFUR_NW5_GRIDLAYOUTCELL~CONTENT |
    |
    70008100
    D0002400
    SYST-REPID
    /1WDA/L8STANDARD==============CP
    2354424355444454333333333333334522222222
    F1741FC8341E4124DDDDDDDDDDDDDD3000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    VA__CONTENT->IF_WDR_VIEW_ELEMENT_ADAPTER~M_VIEW_ELEMENT
    |
    | 70008000 |
    | 4000B100 |
    | SI__CONTENT |
    |
    70008000
    4000B100
    SY-REPID
    /1WDA/L8STANDARD==============CP
    2354424355444454333333333333334522222222
    F1741FC8341E4124DDDDDDDDDDDDDD3000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    %_FSREG_001
    ME
    70008100
    E0001400
    RSJOBINFO
    00000000000000                                  ##
    2222222222222222222222222222222233333333333333222222222222222222222222222222222200
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000
    %_DUMMY$$
    2222
    0000
    0000
    0000
    VA__CONTENT->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT
    F0000000
    F0000000
    ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT
    |
    | F0000000 |
    | F0000000 |
    | VA__CONTENT->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME |
    |  |
    | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME |
    |  |
    | VA__CONTENT->IF_WDR_VIEW_ELEMENT_ADAPTER~M_PARENT_ENABLED |
    | X |
    | 5 |
    | 8 |
    | 0 |
    | 0 |
    | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_PARENT_ENABLED |
    | X |
    | 5 |
    | 8 |
    | 0 |
    | 0 |
    | %_SPACE |
    |  |
    | 2 |
    | 0 |
    | 0 |
    | 0 |
    | SY |
    | ##############################################################################T#########XC#### |
    | 1000000000000000000000000000000000000000000000001000000000000000000000000000105000100010540000 |
    | 4000105000000000000010001000100000000080000000009000000000000000000000000000604000900000830400 |
    | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
    | 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000E000000C |
    | ME->IFUR_NW5_GRIDLAYOUTCELL~HALIGN |
    | 2 |
    | 0000 |
    | 2000 |
    | WD_GRID_DATA->VL_H_ALIGN |
    | 08 |
    | 33 |
    | 08 |
    | 00 |
    | 00 |
    | CL_WD_GRID_DATA=>E_H_ALIGN+24(4) |
    | 08 |
    | 33 |
    | 08 |
    | 00 |
    | 00 |
    | No.      29 Ty.          METHOD |
    | Name  CL_GRID_LAYOUT_ROW=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT |
    | CELL_WD_GRID_DATA |
    |
    60009000
    E0001100
    CL_WD_ROW_HEAD_DATA=>E_ROW_BACKGROUND_DESIGN+4(4)
    01
    33
    01
    00
    00
    SY-SUBRC
    0
    0000
    0000
    SPACE
    2
    0
    0
    0
    ME->MT__CELLS
    Table

  • Assertion Error in Transaformation

    Hi Guru's,
    We are on SP 10 2004s NW. 
    Once the transformation is created and activated successfully.  If I go back and add some fields or modify the Rules in the transformation then I am getting ASSERTION ERROR.  Some how the system is creating a new RULE GROUP "00" under the "STANDARD RULE GROUP" and that is causing the assertion error.
    Could any one provide a solution to resolve this issue, please.
    Your help is greatly appreciated.
    Thanks,

    I have the exact same error situation and same system (NW2004s level 10)
    I found 2 records with GROUPTYPE =  'space'
    and REF_RULE  <> 'space'.  For both GROUPID is 00 but for some reason I cannot select on 00 in the selection screen.
    Deleted the 2 records and the 00 group disappeared and I was able to activate the transformation!
    P.S.: the note could be misread to delete all records with GROUPTYPE = 'S' (standard)...
    Don't think you should do that!
    grts,
    Edwin

  • Error while starting DAC Server on Linux (32 bit)

    Dear Friends,
    I installed Informatica Powercenter 8.6.1 on Linux (32 bit) with 11g database mapping
    and I installaed DAC Server on the same server
    I could start the Informatica services successfully
    but when i try to start the DAC Server it throws the following error:
    #./startserver.sh
    OS detected: Linux
    Dec 23, 2010 5:49:33 AM com.siebel.etl.engine.core.ETLUtils logException
    SEVERE:
    ANOMALY INFO:::
    An exception occurred. Shutting down server...
    EXCEPTION CLASS::: java.lang.ExceptionInInitializerError
    com.siebel.etl.net.QServer.setSpill(QServer.java:159)
    com.siebel.etl.net.QServer.<init>(QServer.java:84)
    com.siebel.etl.net.QServer.main(QServer.java:420)
    ::: CAUSE :::
    MESSAGE:::Application Manager Failed Initialization
    EXCEPTION CLASS::: com.siebel.etl.bootup.ApplicationManagerInitializationException
    com.siebel.etl.bootup.ApplicationManager.initFileSource(ApplicationManager.java:157)
    com.siebel.etl.bootup.ApplicationManager.initSysProps(ApplicationManager.java:79)
    com.siebel.etl.bootup.ApplicationManager.<clinit>(ApplicationManager.java:62)
    com.siebel.etl.net.QServer.setSpill(QServer.java:159)
    com.siebel.etl.net.QServer.<init>(QServer.java:84)
    com.siebel.etl.net.QServer.main(QServer.java:420)
    ::: CAUSE :::
    MESSAGE:::/oba/BI/DAC/bifoundation/dac/conf/server.properties (No such file or directory)
    EXCEPTION CLASS::: java.io.FileNotFoundException
    java.io.FileInputStream.open(Native Method)
    java.io.FileInputStream.<init>(FileInputStream.java:106)
    java.io.FileInputStream.<init>(FileInputStream.java:66)
    com.siebel.etl.bootup.ApplicationManager.initFileSource(ApplicationManager.java:151)
    com.siebel.etl.bootup.ApplicationManager.initSysProps(ApplicationManager.java:79)
    com.siebel.etl.bootup.ApplicationManager.<clinit>(ApplicationManager.java:62)
    com.siebel.etl.net.QServer.setSpill(QServer.java:159)
    com.siebel.etl.net.QServer.<init>(QServer.java:84)
    com.siebel.etl.net.QServer.main(QServer.java:420)
    Dec 23, 2010 5:49:33 AM com.siebel.etl.net.QServer <init>
    SEVERE:
    Shutting down server...
    what could be the Issue.
    Regards,
    DB

    Listen Sheikh Abdullah, if u don't need remote access to that server over secure conn., don't use password file authentification but change REMOTE_LOGIN_PASSWORDFILE to NONE and when u conn thru OEM as sysdba try to change his pass and then try conn thru command promt(CP) usin that new pass.
    Or recreate pass file adding new pass in it, set REMOTE_LOGIN_PASSWORDFILE to exclusive or shared and conn thru CP using password file pass.
    Try this possible solutions in order u wish.

  • Cc got assertion error, when compiling emacs-23.3

    I got an assertion error with cc as follows, when compiling emacs-23.3.
    It compiles fine without the "-O" option.
    I can provide a CPP processed file which reproduces it.
    ;; I could not find a place to report bugs, and I put it here.
    ;; Sorry if it is not an appropriate place.
    % cc -V
    cc: Sun C 5.12 SunOS_i386 2011/11/16
    % cc -c -Demacs -DHAVE_CONFIG_H -I. -I/work/emacs/emacs-23.3/src -I/usr/dt/include -g -O font.c
    "font.c", line 185: warning: integer overflow detected: op "<<"
    "font.c", line 197: warning: integer overflow detected: op "<<"
    "font.c", line 215: warning: integer overflow detected: op "<<"
    "font.c", line 2995: warning: integer overflow detected: op "<<"
    "font.c", line 3422: warning: integer overflow detected: op "<<"
    "font.c", line 3920: warning: assignment type mismatch:
    pointer to char "=" pointer to unsigned char
    "font.c", line 3945: warning: assignment type mismatch:
    pointer to char "=" pointer to unsigned char
    "font.c", line 4026: warning: integer overflow detected: op "<<"
    assertion failed in function pg_first_pass_do_block_rec() @ post_gen.c:3758
    assert(blk_sp_offset_(nextb) == (current_offset + get_prologue_size() + BITS2BYTES(be_cur_local_size)))
    cc: ube failed for font.c

    Got it ...
    Reduced testcase:
    % cat c.c
    enum Lisp_Type
    Lisp_Int0 = 0,
    Lisp_Float = 7,
    struct Lisp_Float
    union
    double data;
    struct Lisp_Float *chain;
    } u;
    struct Lisp_Vector
    unsigned int size;
    struct Lisp_Vector *next;
    int contents[1];
    int
    font_unparse_xlfd (font, pixel_size, name, nbytes)
    int font;
    int pixel_size;
    char *name;
    int nbytes;
    char *f[21];
    int val;
    int i, j, len = 0;
    val = ( ( struct Lisp_Vector * ) ( ( unsigned int ) ( ( ( font ) ) & ( ( ( ( int ) 1 ) << ( 32 - 3 ) ) - 1 ) ) ) ) -> contents [ 5 ];
    if ( ( ( ( enum Lisp_Type ) ( ( ( unsigned int ) ( ( val ) ) ) >> ( 32 - 3 ) ) ) == Lisp_Float ))
    i = ( ( ( void ) 0 , ( struct Lisp_Float * ) ( ( unsigned int ) ( ( val ) & ( ( ( ( int ) 1 ) << ( 32 - 3 ) ) - 1 ) ) ) ) -> u . data + 0 ) * 10;
    f[2] = __builtin_alloca ( 12 );
    else
    f[2] = "*-*", len += 4;
    % cc -g -O c.c -V
    cc: Sun C 5.12 SunOS_i386 2011/11/16
    acomp: Sun C 5.12 SunOS_i386 2011/11/16
    "c.c", line 41: warning: implicit function declaration: __builtin_alloca
    "c.c", line 41: warning: improper pointer/integer combination: op "="
    iropt: Sun Compiler Common 12.3 SunOS_i386 2011/11/16
    ir2hf: Sun Compiler Common 12.3 SunOS_i386 2011/11/16
    ube: Sun Compiler Common 12.3 SunOS_i386 2011/11/16
    assertion failed in function pg_first_pass_do_block_rec() @ post_gen.c:3758
    assert(blk_sp_offset_(nextb) == (current_offset + get_prologue_size() + BITS2BYTES(be_cur_local_size)))
    cc: ube failed for c.c
    Bug 7167252 filed. If we find a work-around I'll post it.

  • Labview RT 14.0 Scheduler Assert%3A __1276 Scheduler Assertion Error%3A 80000004

    We have a multithreaded CVI app (~20 threads) running on a PXIe-8135 (4 CPUs).   The application never gets done starting all the threads before blue-screening with the following error:
    Scheduler Asser: __1276
    Scheduler Assertion Error: 80000004
    Interrupt Disabled. Scheduler Enabled.  ....
    More details:
    System
    Chassis 1 PXIe-1085:
        PXIe-8135 Controller
        PXI-6704 (7 of them), initialize properly, thread runs successfully until blue screen
        PXI-8431/8 (8 of these, total of 64 RS422 channels, about 40 being used currently for test), it is during the starting of these threads (one for each board) that it blue screens 
        PXIe-8374 (for using Chassis 2 as an extension of Chassis 1)
    Chassis 2 PXIe-1075:
        PXI-8370 (connected to PXIe-8374)
        PXI-6528 (1) threads run fine
        PXI-6529 (4) threads run fine
        NI-8234 (4) not used currently
    The scheduler error happens at different times, but always during the starting of the RS422 threads.  Can anybody give a hint as to why the Scheduler Assertion Error occurs, and particularly this specific error?

    Hi,
    I have a couple of questions for you.
    1) Has this application ever worked?
    2) Can you attempt to replicate this issue with less RS422 channels? Basically, is there a maximum number of RS422 channels where the error is received, or if you had only 1 channel being used, would the error still happen?
    3) Do you have another PXIe controller that you can try?
    4) Did anything change in your system that would have caused the error?
    Kevin S
    Applications Engineer
    National Instruments

  • I get a assertion error when trying to up load adobe lightroom have followed the instruction on the adobe site to fix the problem

    i get a assertion error when trying to up load ,lightroom have follow the instructions on the adobe site and it still does not work
    and ideas on how to fix the problem
    tk
    bigguy1965

    Hi,
    Can you Please provide Configuration of your XP, Win7 Machine [How to post a screenshot in the forum]?
    To check if Windows 7 Service Pack is already installed, follow the below steps:
    Click the Start button , right-click Computer, and then click Properties.
    The basic information about your computer page will open.
    To check if Windows XP Service Pack is already installed, follow the below steps:
    Click the Start button , right-click Computer, and then click Properties.
    Click System and Service Pack Information will be listed
    Please also attach log [Where do I find the Flash Player installation log on Windows?], [How to share a document] and Share the Current Version of Flash Player goto - [https://helpx.adobe.com/flash-player.html] and click on Check Now button, using about method can you place the screenshot.
    Meanwhile you can also try cleaning Application Temporary Data and Try again. [c:/users/username/appdata/local/temp folder - Microsoft Community], Due to some reason the Installer file is getting corrupted which might be blocking Flash Player Installation. After cleanup try using the offline Installer [Installation problems | Flash Player | Windows]
    Thanks
    Piyush

  • Muse JS Assert: Error calling selector function:Type error: Object has no method Muse Menu

    When exporting html and viewing locally we receive the following error... This error disappears after removing menu from top of page. This error does not occur when viewed on Outdoors360.businesscatalyst.com (our temporary site)
    Muse JS Assert: Error calling selector function:Type error: Object has no method Muse Menu
    Any ideas??

    I fix the problem.
    I have carefully reviewed JAVASCRIPT files and I could see that these are not a major influence within the site, only are reference code and utilities of the same application.
    By removing these files nothing has stopped working, I thought I would have some error in the sliders, or opacities, but no, nothing happened.
    DELETE IT
    FRANCISCO CATALDO DISEÑADOR GRÁFICO

  • Assertion Error: Cannot Load Dyamically Generated Stub

    Hi Everyone,
    I am getting an Assertion Error in Weblogic 9.2, the root cause being a ClassNotFoundException for a dynamically-generated WL Stub for an Oracle JDBC wrapper. The partial stacktrace is as follows:
    ASSERTION FAILED *****[Could not find dynamically generated class: 'weblogic.jdbc.rmi.internal.ResultSetImpl_weblogic_jdbc_wrapper_ResultSet_oracle_jdbc_driver_OracleResultSetImpl_920_WLStub']
    Caused by: java.lang.ClassNotFoundException: weblogic.jdbc.rmi.internal.ResultSetImpl_weblogic_jdbc_wrapper_ResultSet_oracle_jdbc_driver_OracleResultSetImpl_920_WLStub
    So...not sure if the RMI stub is never generated because/or there is something dorked up in my classpath re: Oracle. Any insight would be awesome
    Thanks!
    --John                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi yoster,
    I have the same problem, but I couldn't solve the problem by removing a war file like you did.
    It's nearly the same stacktrace:
    ASSERTION FAILED *****[ Could not find dynamically generated class: 'weblogic.jdbc.rmi.internal.StatementImpl_weblogic_jdbc_wrapper_Statement_oracle_jdbc_driver_T4CStatement_921_WLStub' ].
    java.lang.ClassNotFoundException: weblogic.jdbc.rmi.internal.StatementImpl_weblogic_jdbc_wrapper_Statement_oracle_jdbc_driver_T4CStatement_921_WLStub
    My database is also oracle.
    Do you have other ideas that could sold this ?
    I hope you do, because I'm stuck ... don't know where to look anymore :(
    Toni

  • Assert error!! how to solve that problem?

    Hi,
    when i use an assert after the compilation , the error is:
    C:\CLASSES>javac Assertion.java
    Assertion.java:11: as of release 1.4, 'assert' is a keyword, and may not be used as an identifier
    (try -source 1.3 or lower to use 'assert' as an identifier)
    public static void assert(boolean expression, String why) {
    ^
    1 error
    The tutorial says: In order for Code Sample 1(Doesn't matter) to compile, use -source 1.3 because assert is a keyword as of J2SE 1.4.
    what is the source 1.3 ?? where and what the hell is that?? LOL =))
    thanks!

    i understand and i don't understand.
    lol
    thats possible for someone who is using xemacs but someone who is using Eclipse or JCreator how do i do that?
    if u don't want to answer that question could u put an assertion in this code, for example : asser -> if the num < = 0 !
    here is the code:
    import java.io.*;
    public class Capicua {
         public static void main (String[] args) throws Exception {
              int digit, num;
              int inverted = 0;
              int x;     
                   BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
                   System.out.print(" Insert number: ");
                   num=Integer.parseInt(br.readLine().trim());
                   Assertion.assert(num <= 0, "Number can't be shorter or equals to zero!"); <--- how do i put an assert here? ( with the "do - while" its easy, but and with the asserts?
                   x=num;
                   while(num > 0) {
                   digit = num % 10;
                   num = num /10;
                   inverted = inverted * 10 + digit;
                   System.out.println("inverted = " + inverted);
                        if(inverted == x) {
                             System.out.println("Capicua");
                        }else{
                             System.out.println("not a capicau");
    }

  • Assertion Error in WL 4.5.1

    Hi,
    We are running WL 4.5.1 with SP 11 on NT and Oracle 8i as the database.
    After the server has been running for quite a while and there is fair amount
    of activity, the server throws the following exception. Any ideas about what
    this exception means or why it is thrown?
    Mon Sep 25 18:52:15 EDT 2000:<E> <T3Services>
    java.rmi.RemoteException: --------------- nested within: ------------------
    weblogic.utils.AssertionError: ***** ASSERTION FAILED *****[ Assertion
    violated ]
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Error.<init>(Error.java:53)
    at weblogic.utils.NestedError.<init>(NestedError.java:15)
    at weblogic.utils.AssertionError.<init>(AssertionError.java:49)
    at weblogic.utils.Debug.assert(Compiled Code)
    at weblogic.ejb.internal.LRUCache.remove(Compiled Code)
    at weblogic.ejb.internal.StatefulEJBCache.unbind(Compiled Code)
    at weblogic.ejb.internal.BaseEJBContext.afterCompletion(Compiled Code)
    at weblogic.ejb.internal.EntityEJBContext.afterCompletion(Compiled Code)
    at weblogic.ejb.internal.StatefulEJBObject.getContextForInvoke(Compiled
    Code)
    at weblogic.ejb.internal.BaseEJBObject.preInvoke(Compiled Code)
    at sync.server.system.SystemSessionBeanEOImpl.getSystemSessionID(Compiled
    Code)
    at sync.server.eventrouter.SessionHandlerServiceBean.processEvent(Compiled
    Code)
    at
    sync.server.eventrouter.SessionHandlerServiceBeanEOImpl.processEvent(Compile
    d Code)
    at
    sync.server.eventrouter.SessionHandlerServiceBeanEOImpl_ServiceStub.processE
    vent(Compiled Code)
    at sync.server.gateway.ServerGatewayBean.handleSystemMessage(Compiled Code)
    at sync.server.gateway.ServerGatewayBeanEOImpl.handleSystemMessage(Compiled
    Code)
    at
    sync.server.gateway.ServerGatewayBeanEOImpl_ServiceStub.handleSystemMessage(
    Compiled Code)
    at sync.server.util.SystemMessageThread.disconnect(Compiled Code)
    at sync.server.util.SystemMessageThread.run(Compiled Code)
    at sync.util.ThreadPoolRunner.run(Compiled Code)
    at java.lang.Thread.run(Compiled Code)
    ; nested exception is:
    weblogic.utils.AssertionError: ***** ASSERTION FAILED *****[ Assertion
    violated ]
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.io.IOException.<init>(Compiled Code)
    at java.rmi.RemoteException.<init>(Compiled Code)
    at weblogic.ejb.internal.BaseEJBObject.postInvoke(Compiled Code)
    at sync.server.system.SystemSessionBeanEOImpl.getSystemSessionID(Compiled
    Code)
    at sync.server.eventrouter.SessionHandlerServiceBean.processEvent(Compiled
    Code)
    at
    sync.server.eventrouter.SessionHandlerServiceBeanEOImpl.processEvent(Compile
    d Code)
    at
    sync.server.eventrouter.SessionHandlerServiceBeanEOImpl_ServiceStub.processE
    vent(Compiled Code)
    at sync.server.gateway.ServerGatewayBean.handleSystemMessage(Compiled Code)
    at sync.server.gateway.ServerGatewayBeanEOImpl.handleSystemMessage(Compiled
    Code)
    at
    sync.server.gateway.ServerGatewayBeanEOImpl_ServiceStub.handleSystemMessage(
    Compiled Code)
    at sync.server.util.SystemMessageThread.disconnect(Compiled Code)
    at sync.server.util.SystemMessageThread.run(Compiled Code)
    at sync.util.ThreadPoolRunner.run(Compiled Code)
    at java.lang.Thread.run(Compiled Code)

    This turned out to be our fault - we were told that the servers are running
    sp11 but when we later checked using the admin tool, we found that wasn't
    the case on this machine. sp11 was in the classpath but the directory was
    wrong. I guess that's the downside to the way WL SPs work, the jvm doesn't
    tell you when you have an invalid filename in the classpath so you don't
    know that you are not actually running with the sp.
    On the thread issue you mention, the traceback below originates in a startup
    class which does manage its own threads. Isn't this a valid way to invoke
    beans in weblogic?
    "Rob Woollen" <[email protected]> wrote in message
    news:[email protected]...
    It's hard to say why you're seeing this assertion error. I would
    suggest that you contact [email protected]
    However, I can see that you are using your own threads within the
    WebLogic server. This is not allowed and might be the cause of your
    problems.
    -- Rob
    SG wrote:
    Hi,
    We are running WL 4.5.1 with SP 11 on NT and Oracle 8i as the database.
    After the server has been running for quite a while and there is fair
    amount
    of activity, the server throws the following exception. Any ideas aboutwhat
    this exception means or why it is thrown?
    Mon Sep 25 18:52:15 EDT 2000:<E> <T3Services>
    java.rmi.RemoteException: --------------- nestedwithin: ------------------
    >>
    weblogic.utils.AssertionError: ***** ASSERTION FAILED *****[ Assertion
    violated ]
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Error.<init>(Error.java:53)
    at weblogic.utils.NestedError.<init>(NestedError.java:15)
    at weblogic.utils.AssertionError.<init>(AssertionError.java:49)
    at weblogic.utils.Debug.assert(Compiled Code)
    at weblogic.ejb.internal.LRUCache.remove(Compiled Code)
    at weblogic.ejb.internal.StatefulEJBCache.unbind(Compiled Code)
    at weblogic.ejb.internal.BaseEJBContext.afterCompletion(Compiled Code)
    at weblogic.ejb.internal.EntityEJBContext.afterCompletion(Compiled Code)
    at weblogic.ejb.internal.StatefulEJBObject.getContextForInvoke(Compiled
    Code)
    at weblogic.ejb.internal.BaseEJBObject.preInvoke(Compiled Code)
    atsync.server.system.SystemSessionBeanEOImpl.getSystemSessionID(Compiled
    Code)
    atsync.server.eventrouter.SessionHandlerServiceBean.processEvent(Compiled
    Code)
    at
    sync.server.eventrouter.SessionHandlerServiceBeanEOImpl.processEvent(Compile
    d Code)
    at
    sync.server.eventrouter.SessionHandlerServiceBeanEOImpl_ServiceStub.processE
    vent(Compiled Code)
    at sync.server.gateway.ServerGatewayBean.handleSystemMessage(CompiledCode)
    atsync.server.gateway.ServerGatewayBeanEOImpl.handleSystemMessage(Compiled
    Code)
    at
    sync.server.gateway.ServerGatewayBeanEOImpl_ServiceStub.handleSystemMessage(
    Compiled Code)
    at sync.server.util.SystemMessageThread.disconnect(Compiled Code)
    at sync.server.util.SystemMessageThread.run(Compiled Code)
    at sync.util.ThreadPoolRunner.run(Compiled Code)
    at java.lang.Thread.run(Compiled Code)
    ; nested exception is:
    weblogic.utils.AssertionError: ***** ASSERTION FAILED *****[ Assertion
    violated ]
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.io.IOException.<init>(Compiled Code)
    at java.rmi.RemoteException.<init>(Compiled Code)
    at weblogic.ejb.internal.BaseEJBObject.postInvoke(Compiled Code)
    atsync.server.system.SystemSessionBeanEOImpl.getSystemSessionID(Compiled
    Code)
    atsync.server.eventrouter.SessionHandlerServiceBean.processEvent(Compiled
    Code)
    at
    sync.server.eventrouter.SessionHandlerServiceBeanEOImpl.processEvent(Compile
    d Code)
    at
    sync.server.eventrouter.SessionHandlerServiceBeanEOImpl_ServiceStub.processE
    vent(Compiled Code)
    at sync.server.gateway.ServerGatewayBean.handleSystemMessage(CompiledCode)
    atsync.server.gateway.ServerGatewayBeanEOImpl.handleSystemMessage(Compiled
    Code)
    at
    sync.server.gateway.ServerGatewayBeanEOImpl_ServiceStub.handleSystemMessage(
    Compiled Code)
    at sync.server.util.SystemMessageThread.disconnect(Compiled Code)
    at sync.server.util.SystemMessageThread.run(Compiled Code)
    at sync.util.ThreadPoolRunner.run(Compiled Code)
    at java.lang.Thread.run(Compiled Code)

  • IDCS2, WIN: Assert error reason

    Hi Guys,
    I got a assert error, "~InstanceList(): 3 outstanding references to UID 172 (Class kTextStoryBoss).", I don't know the reason, do you guys know that?
    Thanks,

    The number of AddRef() and Release() on that object does not match. This is usually found while closing your document database.<br /><br />Search your code for:<br /><br />IFace1* p = ... Query ... ()<br />InterfacePtr<IFace2> p2 ( ... Query ..., IID_...FACE2/UseDefault... )<br /><br />... with any of the interfaces on the reported boss class.<br />Methods such as Query...() and Create...() both imply an AddRef, only some of the InterfacePtr<> constructors are meant for those, while others will call AddRef themself.<br />Of course if you use AddRef() yourself, also check those for matching Release().<br /><br />Dirk

  • MuseJS Assert: Error

    Our we site was done on godaddy. But when I export to HTML the CSS file doesn't up date. So publishing with the business cat. is easier. I just have godaddy forward our site to it.  And I am getting the following error:   MuseJS Assert: Error caling selector function: reference error: 'PIE' is undefined. The home page seems to be the only one that gets the error.
    http://www.dixiepolydrum.com/index.html
    From what I can tell is that the home page is not forwarding to the business cat site, but all the other pages do.
    Cindy

    Hello Cindy,
    It seems to work fine for me. Did you get it resolved?
    And regarding exporting to HTML, could you please try and export it to some other location on your local machine and check if it works for you or not?
    Regards,
    Sachin

Maybe you are looking for

  • Instead of creating multiple Instances I want to create only one Instance.

    Hi Everyone Good morning, How are you. I have a requirement to transfer files from one location to another location, I am able to do this successfully using FTP Adapters. I have some Issues please help any one. 1) When I deployed my process it is cre

  • How to count direct plus indirect roles assigned per user (8.1.7.4) ?

    Hi, because of the 148 max roles limit in 8.1.7.4 (and because we use Noetix that generates many roles !), we would like to build a query that can be used as an alert and that tells us the following: Number of roles (direct and get from inheritance o

  • Call Library Function (DLL) Node Configuration

    This issue was discussed few times on this forum (see for example http://forums.ni.com/ni/board/message?board.id=170&message.id=182911 ),  but I still have a problem. My question is -  how to define the call to DLL without to specify its full path in

  • HT4623 Locating Video Function on iPad 3

    I cannot find the video option for the camera application for my iPad 3.  Anyone else have that problem?

  • Ieee1394: sbp2: Number of active logins: 357913941

    I have been tortured by my new WesternDigital 320GB external hard drive. I use Dell PowerEdge 350 and 750 with Red Hat Linux 2.6.9-22.EL kernel. The ohci1394 driver is downloaded from oracle site, oracle-firewire-modules-2.6.9-22.EL-1286-1.i686.rpm.