Data Base Buffer Cache Ful

Hi,
what if, an update statement causes the existing db cache ful with the updated information(in this case this is uncommited transaction). in this case, if another user run the update statement where that update information stored before written to the datafile.

No this is not correct. A block/buffer , when undergoes any kind of dml, is marked as dirty. Once marked dirty , there are various events which push it to the dirty list , from where it has to be flushed out. So the buffer , if it is marked as dirty, it will be sent to the datafile for sure, without waiting for it to be committed or not. That's why , because of this operation only , we need to rollback the changes with the roll backward process , to make sure that the only committed buffers stay in the datafile not the uncommitted ones.
The only buffers which are not flushed to the dataifle are the buffers which are used for the read consistacny mechanism by oracle, snapshot buffers. The snapshot buffers are created in the same hash bucket of the dirty buffers but they are not flushed out to the datafile. They are simply thrown away.
ok... the dirty buffers are witten to datafiles irrespective of the type of transaction(committed or un committed)..
if this is true, if you roll back the transaction, from where oracle get the previous data(the previous data must be stored some where in order to replace), in this case the previous data will store in UNDO tablespace, this will also provide read consistency. if this is not true how the read consistency provided by snapshot buffers.

Similar Messages

  • BUFFER CACHE 내의 HOT BLOCK을 찾기

    제품 : ORACLE SERVER
    작성날짜 : 2004-10-13
    BUFFER CACHE 내의 HOT BLOCK을 찾기
    =============================
    PURPOSE
    ORACLE은 data block을 효율적으로 관리하기 위하여 buffer cache를
    사용하고 있다.
    이 buffer cache는 각각 buffer handle을 가지고 있으며 buffer cache
    chain에 의하여 관리가 되고 있다. oracle은 원하는 block을 빨리 찾기
    위하여 block의 주소를 hash key로 사용하는 hash function을 사용하여
    특정 buffer chain을 찾고 이 list를 scan하여 원하는 block을 찾게
    된다. 따라서 특정 block은 하나의 buffer chain에 의하여 관리된다.
    이 buffer cache chains latch cocntention은 주로 이 buffer chain에
    의하여 관리되는 buffer수가 많거나 hot block(hot buffer)에 의한 경우로
    나누어 볼 수 있다.
    아래에서는 hot block을 찾는 방법에 대하여 설명하고 있다.
    Explanation
    1. v$latch_children에서 contention이 많은 buffer cache chain
    latch들을 찾는다.
    select * from
    (select l.child#, l.addr, l.sleeps, l.sleep1, l.sleep3
    from
    v$latch_children l
    where l.latch#= 66
    order by l.sleeps desc
    where rownum < 11
    이 쿼리를 일정한 간격을 두고 수행하여 현 시점에서 sleeps이 많은
    latch를 선별한다.
    CHILD# ADDR SLEEPS SLEEP1 SLEEP3
    29406 33F84420 301809 242441 4041
    2532 33BEDB68 233945 213363 651
    3642 33C13A70 215950 181390 2330
    3575 33C115CC 198600 102161 14556
    25216 33EF50B8 195763 176779 796
    33288 34008F18 180123 155168 1735
    18475 33E0EA3C 169387 156205 405
    32301 33FE7354 152855 137046 616
    20770 33E5D150 91845 74889 889
    2533 33BEDBF4 78774 74539 110
    10 rows selected.
    CHILD# ADDR SLEEPS SLEEP1 SLEEP3
    29406 33F84420 301809 242441 4041 *
    2532 33BEDB68 234272 213670 651
    3642 33C13A70 216086 181520 2330
    3575 33C115CC 198600 102161 14556 *
    25216 33EF50B8 196068 177069 797
    33288 34008F18 180123 155168 1735 *
    18475 33E0EA3C 169598 156408 405
    32301 33FE7354 152855 137046 616 *
    20770 33E5D150 91845 74889 889 *
    2533 33BEDBF4 78855 74618 110
    10 rows selected.
    현 시점에서 높은 sleeps 변화를 보이는 latch#은 2532, 3642,
    25216, 18475, 2533 latch들이다.
    2. 이제 이들 latch들로 관리되고 있는 buffer들 중에서 hot block들을
    찾는다.
    select b.hladdr, l.sleeps, l.sleep3, b.tch,
    b.dbarfil, b.dbablk, b.state
    from x$bh b, v$latch_children l
    where l.child#
    in
    (2532, 3642, 25216, 18475, 2533)
    and b.hladdr= l.addr
    order by tch
    x$bh의 tch는 touch count를 의미하므로 이 값이 가장 큰
    것부터 hot block들이라고 볼 수 있다.
    HLADDR SLEEPS SLEEP3 TCH DBARFIL DBABLK
    STATE
    33E0EA3C 169818 405 0 192
    102764 1
    33E0EA3C 169818 405 0 70
    97847 1
    33E0EA3C 169818 405 0 106
    38012 1
    33EF50B8 196361 797 1 193
    115327 1
    33C13A70 216224 2330 91 33
    4494 1
    33BEDBF4 78952 110 104 33
    3385 1
    33BEDB68 234617 651 132 33
    3384 1
    33EF50B8 196361 797 146 24
    25614 1
    33E0EA3C 169818 405 164 32
    10107 1
    3. 아래의 쿼리를 수행하여 hot block과 관련된 object를 찾는다.
    select segment_name , segment_type , owner
    from sys.dba_extents
    where file_id = 32
    and 10107 between block_id and (block_id+(blocks-1))
    SEGMENT_NAME SEGMENT_TYPE OWNER
    FRED_TABLE TABLE MARY
    4. hot block이 확인된 object의 header block인지 확인해 본다.
    select header_file, header_block, freelist_groups, freelists
    from dba_segments where
    segment_name = 'FRED_TABLE'
    and owner = 'MARY'
    HEADER_FILE HEADER_BLOCK FREELIST_GROUPS FREELISTS
    32 4769 4 4
    해당 block(10107)이 segment header block ~ segment header
    block(4769) + free list group(4) 사이에 들어가지 않으므로
    data block이다.
    Example
    none
    Reference Documents
    none

  • Data Buffer Cache Error Message

    I'm using a load rule that builds a dimenson on the fly and getting the following error: "Not enough memory to allocate the Data Buffer Cache [adDatInitCacheParamsAborted]"I've got 4 other databases which are set up the same as this one and I'm not getting this error. I've checked all the settings and I think they're all the same.Anyone have any idea what this error could mean?I can be reached at [email protected]

    Hi,
    Same issue, running Vista too.  This problem is recent.  It may be due to the last itunes update.  itunes 11.2.23

  • Data Buffer Cache Quality

    Hi All,
    Can somebody please please tell some ways in which i can improve the data buffer quality? Presently it is 51.2%. The DB is 10.2.0.2.0
    I want to know, wat all factors do i need to keep in mind if i want to increase DB_CACHE_SIZE?
    Also, i want to know how can i find out Cache Hit ratio?
    Further, i want to know which are the most frequently accessed objects in my DB?
    Thanks and Regards,
    Nick.

    Nick-- wud b DBA wrote:
    Hi Aman,
    Thanks. Can u please give the appropriate query for that?
    And moreover when i'm giving:
    SQL>desc V$SEGMENT-STATISTICS; It is giving the following error:
    SP2-0565: Illegal identifier.
    Regards,
    Nick.LOL dude I put it by mistake. Its dash(-) sign but we need underscore(_) sign.
    About the query, it may vary what you really mean by "most used obect". If you mean to find the object that is undergoing lots of reads,writes than this may help,
    SELECT Rownum AS Rank,
    Seg_Lio.*
    FROM (SELECT St.Owner,
    St.Obj#,
    St.Object_Type,
    St.Object_Name,
    St.VALUE,
    'LIO' AS Unit
    FROM V$segment_Statistics St
    WHERE St.Statistic_Name = 'logical reads'
    ORDER BY St.VALUE DESC) Seg_Lio
    WHERE Rownum <= 10
    UNION ALL
    SELECT Rownum AS Rank,
    Seq_Pio_r.*
    FROM (SELECT St.Owner,
    St.Obj#,
    St.Object_Type,
    St.Object_Name,
    St.VALUE,
    'PIO Reads' AS Unit
    FROM V$segment_Statistics St
    WHERE St.Statistic_Name = 'physical reads'
    ORDER BY St.VALUE DESC) Seq_Pio_r
    WHERE Rownum <= 10
    UNION ALL
    SELECT Rownum AS Rank,
    Seq_Pio_w.*
    FROM (SELECT St.Owner,
    St.Obj#,
    St.Object_Type,
    St.Object_Name,
    St.VALUE,
    'PIO Writes' AS Unit
    FROM V$segment_Statistics St
    WHERE St.Statistic_Name = 'physical writes'
    ORDER BY St.VALUE DESC) Seq_Pio_w
    WHERE Rownum <= 10; But if you are looking for the objects which are most highly in the waits than this query may help
    select * from
       select
          DECODE
          (GROUPING(a.object_name), 1, 'All Objects', a.object_name)
       AS "Object",
    sum(case when
       a.statistic_name = 'ITL waits'
    then
       a.value else null end) "ITL Waits",
    sum(case when
       a.statistic_name = 'buffer busy waits'
    then
       a.value else null end) "Buffer Busy Waits",
    sum(case when
       a.statistic_name = 'row lock waits'
    then
       a.value else null end) "Row Lock Waits",
    sum(case when
       a.statistic_name = 'physical reads'
    then
       a.value else null end) "Physical Reads",
    sum(case when
       a.statistic_name = 'logical reads'
    then
       a.value else null end) "Logical Reads"
    from
       v$segment_statistics a
    where
       a.owner like upper('&owner')
    group by
       rollup(a.object_name)) b
    where (b."ITL Waits">0 or b."Buffer Busy Waits">0)This query's reference:http://www.dba-oracle.com/t_object_wait_v_segment_statistics.htm
    So it would depend upon that on what ground you want to get the objects.
    About the cache increase, are you seeing any wait events related to buffer cache or DBWR in the statspack report?
    HTH
    Aman....

  • Data buffer cache has undo information...??

    do data buffer in sga has any undo information....??

    920273 wrote:
    in sga we have data buffer ..... in data buffer cache if i m updating a block, do any undo information is maintained in buffer cache regarding the change, i hav made in block.....am
    lets take an example if i m updating a block having value '2' to '4'...and dbwriter not writes to datafiles ...in this case do any undo information is maintained in buffer cache...???Hmmm.. When you updated value 2 to 4, so still its uncommitted then the transaction is active and it will be in buffer cache itself. Of course if the cache is full or performed any checkpoint, then this modified data also writtened into data files. So you should not mention dbwriter not writes to datafiles you cant predict when cache going to full or checkpoint occurred.

  • Data Buffer Cache!

    Hi Guru(s),
    Please anyone can tell me that, how can we check the size of data buffer cache.
    Please help.
    Regards,
    Rajeev K

    Hi,
    Here is what I would do:
    First, let's have a look what views we have available to us
    SQL> select table_name from dict where table_name like '%SGA%';
    TABLE_NAME
    DBA_HIST_SGA
    DBA_HIST_SGASTAT
    DBA_HIST_SGA_TARGET_ADVICE
    V$SGA
    V$SGAINFO
    V$SGASTAT
    V$SGA_CURRENT_RESIZE_OPS
    V$SGA_DYNAMIC_COMPONENTS
    V$SGA_DYNAMIC_FREE_MEMORY
    V$SGA_RESIZE_OPS
    V$SGA_TARGET_ADVICE
    GV$SGA
    GV$SGAINFO
    GV$SGASTAT
    GV$SGA_CURRENT_RESIZE_OPS
    GV$SGA_DYNAMIC_COMPONENTS
    GV$SGA_DYNAMIC_FREE_MEMORY
    GV$SGA_RESIZE_OPS
    GV$SGA_TARGET_ADVICE
    19 rows selected.v$sgainfo looks pretty promising, what does it contain?
    SQL> desc v$sgainfo
    Name                                                              Null?    Type
    NAME                                                                       VARCHAR2(32)
    BYTES                                                                      NUMBER
    RESIZEABLE                                                                 VARCHAR2(3)And how many rows are in it?
    SQL> select count(*) from v$sgainfo;
      COUNT(*)
            12Not too many so let's look at them all, with a little formatting
    SQL> select name,round(bytes/1024/1024,0) MB, resizeable from v$sgainfo order by name;Hope that helps,
    Rob

  • Data Buffer Cache Limit

    Is there any way that I could signal daat buffer cache to write all data to data files if amount of dirty blocks reach say 50 Mb.
    Iam processing with BLOBS, one blob at a time, some of which has sizes exceeeding 100 Mb and the diffcult thing is that I cannot write to disk until the whoile blob is finished as it is one transaction.
    Well if anyone is going to suggest that to open, process close, commit ....well i tried that but it also gives error "nmo free buffer pool" but this comes for twice the size of buffer size = 100 Mb file when db cache size is 50 mb.
    any ideas.

    Hello,
    Ia using Oracle 9.0.1.3.1
    I am getting error ORA-OO379 No free Buffers available in Buffer Pool. Default for block size 8k.
    My Init.ora file is
    # Copyright (c) 1991, 2001 by Oracle Corporation
    # Cache and I/O
    db_block_size=8192
    db_cache_size=104857600
    # Cursors and Library Cache
    open_cursors=300
    # Diagnostics and Statistics
    background_dump_dest=C:\oracle\admin\iasdb\bdump
    core_dump_dest=C:\oracle\admin\iasdb\cdump
    timed_statistics=TRUE
    user_dump_dest=C:\oracle\admin\iasdb\udump
    # Distributed, Replication and Snapshot
    db_domain="removed"
    remote_login_passwordfile=EXCLUSIVE
    # File Configuration
    control_files=("C:\oracle\oradata\iasdb\CONTROL01.CTL", "C:\oracle\oradata\iasdb\CONTROL02.CTL", "C:\oracle\oradata\iasdb\CONTROL03.CTL")
    # Job Queues
    job_queue_processes=4
    # MTS
    dispatchers="(PROTOCOL=TCP)(PRE=oracle.aurora.server.GiopServer)", "(PROTOCOL=TCP)(PRE=oracle.aurora.server.SGiopServer)"
    # Miscellaneous
    aq_tm_processes=1
    compatible=9.0.0
    db_name=iasdb
    # Network Registration
    instance_name=iasdb
    # Pools
    java_pool_size=41943040
    shared_pool_size=33554432
    # Processes and Sessions
    processes=150
    # Redo Log and Recovery
    fast_start_mttr_target=300
    # Sort, Hash Joins, Bitmap Indexes
    pga_aggregate_target=33554432
    sort_area_size=524288
    # System Managed Undo and Rollback Segments
    undo_management=AUTO
    undo_tablespace=UNDOTBS

  • How data buffer cache is handled

    hi all,
    I have a doubt in how buffer cache is managed.. I read that server process will read blocks from data file and keeps them in buffer cache if they are not already present in buffer cache.. Suppose two users from different sessions issue the same statement at the same time, and they are picked up by different server processes, and upon checking they will find that the block is not present in SGA, so they both will go read the block.. is it not unnecessary.. or am i wrong? please let me know how it is handled.
    Regards
    Suresh

    Hi tinku,
    I understand what you mean.. but my problem is different.
    suppose there are two sessions
    first session issues a statement:
    Select * from emp where empno = 12;
    and second session issues
    select * from emp where empno in (12,13);
    becoz these two statements are different, these two statements are to be parsed separately. After parsing, each of the server processes will see if the block corresponding 12 is already in memory, if it is not, they will read it from data file and keep in buffer cache.. suppose these two server processes at the same time find that the block is not in SGA and try to read the block from data file, there would be two copies of the block in SGA. isn't it. I don't think this is what is gonna happen. so i need how the server processes coordinate with each other to read only necessary blocks without redundancy.
    Regards
    Suresh

  • Buffer cache vs data blocks that can be cache

    Hi Guys,
    Do it means that if we have 2 GB of buffer cache allocated to Oracle, we can only store up to 2GB of data in memory?
    thanks

    dbaing wrote:
    Hi Guys,
    Do it means that if we have 2 GB of buffer cache allocated to Oracle, we can only store up to 2GB of data in memory?Yes, this means that you can any time, can have 2gb of cached blocks in your memory.
    Aman....

  • Data being fetched bigger than DB Buffer Cache

    DB Version: 10.2.0.4
    OS : Solarit 5.10
    We have a DB with 1gb set for DB_CACHE_SIZE . Automatic Shared Memory Management is Disabled (SGA_TARGET = 0).
    If a query is fired against a table which is going retrieve 2GB of data. Will that session hang? How will oracle handle this?

    Tom wrote:
    If the retrieved blocks get automatically removed from the buffer cache after it is fetched as per LRU algorithm, then Oracle should handle this without any issues. Right?Yes. No issues in that the "+size of a fetch+" (e.g. selecting 2GB worth of rows) need to fit completely in the db buffer cache (only 1GB in size).
    As Sybrand mentioned - everything in that case will be flushed as newer data blocks will be read... and that will be flushed again shortly afterward as even newer data blocks are read.
    The cache hit ratio will thus be low.
    But this will not cause Oracle errors or problems - simply that performance degrade as the data volumes being processed exceeds the capacity of the cache.
    It is like running a very large program that requires more RAM than what is available on a PC. The "extra RAM" comes from the swap file on disk. App program will be slow as its memory pages (some on disk) needs to be swapped into and out of memory as needed. It will work faster if the PC has sufficient RAM. However, the o/s is designed to deal with this exact situation where more RAM is needed than what physically available.
    Similar situation with processing larger data chunks than what the buffer cache has capacity for.

  • Deletion of data in buffer and in cache memory

    Hi Friends,
    Can any one please tell me how to delete the data in buffer (bi server ) and in cache also.
    Thanks in advance,
    Thanks  & Regards,
    Ramnaresh.

    Hi,
    This is my problem .
    We loaded data to cube it was successful,again i loaded data which was modified in source system and before loading ,  i deleted the previous request.
    Now in cube only one request is there and in bex report changed data was reflecting correctly.
    This cube data is used in SAP BO reporting means they built reports on cube then in their report changed data is  not reflecting .
    i have two questions here.
    1) Apart from cube where data will be stored in bw server if it happen how to delete the complete data in bw server?
    2) how bex fetch data from cube? ( because the way bex retreaving is differ from bo report retreave)
    This the reason i am asking about buffer and cache.
    Can you pls tell me  how  to resolve this one.
    Thanks & Regards.
    Ramnaresh.

  • Exchange 2010 Data base cache percent hit

    Hi...
    I have exchange 2010 server with 24 GB RAM and 10 data bases with around 120 mailboxes each.
    We applied monitoring on Exchange perfmon counters.
    Frequently i am receiving "DatabaseCachePercentHit:Critical : DatabaseCachePercentHit = 0"
    Is it really critical if DatabaseCachePercentHit = 0 ?
    I am recieving the same error on my edge transport server also.
    Till what value i can bear this DatabaseCachePercentHit?
    Any Ideas? or can i ignore if the value is 0.
    Also please share me the link of perfmon counter default values for exchange 2010 that i can ignore.
    Thanks in advance.
    Mallikarjuna YH, Windows / Exchange

    Hi
    What is the error you got on edge transport server?
    Cheers
    Zi Feng
    TechNet Community Support

  • How to remove blocks from buffer cache for a specific object

    hi everybody,
    is it possible to remove blocks which belogns to a specific object (a table for ex) from buffer cache.
    as you know, there is
    alter system flush buffer_cache;command but it does it's job for all buffer cache. if you ask me why i want this, for tuning reasons. I want to test some plsql codes when they run as if they are running for the first time (reading from disk).
    ps: I use oracle 11g r2

    Hi mustafa,
    Your performance will not degrade if you run the query second time ( if i understood correctly, you worry about the performance if you execute the procedure second time). Executing/running the code/sql statements over and over again will have following two good benefits.
    1) This will avoid hard parsing (Hard parsing is resource intensive operation and this generally increase the overall processing time.
    2) This will avoid physical read IO (You gonna see the benefits if data blocks already cached and you dont have to spend time in reading blocks from disk. Reading from disk is much costlier and time consuming operation as compared to data in RAM)
    Having that said sometime bad written queries will acquire more blocks then required and consume most part of buffer cache, and this can some times effect the other important blocks and force to flush out from buffer cache.
    Oracle have built some intelligence for large full table scan operations for e.g will doing full table scan(I hope you already know what is fts) oracle will put its blocks at end of LRU chain. So these will be the buffers will would flush out first then any other.
    From oracle documentation:
    "When the user process is performing a full table scan, it reads the blocks of the table into buffers and puts them on the LRU end (instead of the MRU end) of the LRU list. This is because a fully scanned table usually is needed only briefly, so the blocks should be moved out quickly to leave more frequently used blocks in the cache.
    You can control this default behavior of blocks involved in table scans on a table-by-table basis. To specify that blocks of the table are to be placed at the MRU end of the list during a full table scan, use the CACHE clause when creating or altering a table or cluster. You can specify this behavior for small lookup tables or large static historical tables to avoid I/O on subsequent accesses of the table."
    Regards
    Edited by: 909592 on Feb 6, 2012 4:37 PM

  • Data base settings

    hi
    Out of the below data base setting which one is the best
    DB1
    Shared pool--2000
    Buffer Cache: 128
    large pool: 0
    Java pool--80
    total sga:2223.568
    sga max size:4000
    Aggregate page :300
    DB2
    Shared pool--640
    Buffer Cache: 640
    large pool:320
    Java pool--112
    total sga:1727.572
    sga max size:1808
    Aggregate page :640
    DB3
    Shared pool—704MB
    Buffer Cache: 400 MB
    large pool:160 MB
    Java pool--112 MB
    total sga:1391.571 MB
    sga max size:1504 MB
    Aggregate page :400 MB

    "Best" is a relative term. As Oscar already said: "What for?".
    Two factors to keep in mind though wrt the shared pool and the buffer cache.
    A larger buffer cache may reduce physical I/O ifo logical I/O. So a large db cache is not a "Bad Thing" and more of a "Good Thing". As far as generalisation goes in this case. (you will need to pop the I/O hood to see exactly what the performance gains are per n MB allocated to the db buffer cache - Oracle provides performance advisory views in that regard)
    A large shared pool is often indicative of dealing with SQLs being fired at the database that are not using bind variables. Therefore a large shared pool is often more of a "Bad Thing" than a "Good Thing". As far as generalisation goes in this case too.

  • J2ee process not started sfter data base restore

    hi ,i installed a test system.it is abap+java stack.i have restored full data base from production.SID's are different.abap satack is working fine,but j2ee process are not thetr in mmc showing no information is available. any one help me out.

    hi am sedin
    dev_disp trc file
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      00
    sid        CRT
    systemid   562 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    75
    intno      20050900
    make:      multithreaded, Unicode, 64 bit, optimized
    pid        3572
    Thu Mar 13 20:32:42 2008
    kernel runs with dp version 217000(ext=109000) (@(#) DPLIB-INT-VERSION-217000-UC)
    length of sys_adm_ext is 572 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 3572) [dpxxdisp.c   1237]
         shared lib "dw_xml.dll" version 75 successfully loaded
         shared lib "dw_xtc.dll" version 75 successfully loaded
         shared lib "dw_stl.dll" version 75 successfully loaded
         shared lib "dw_gui.dll" version 75 successfully loaded
         shared lib "dw_mdm.dll" version 75 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    Thu Mar 13 20:32:47 2008
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 5 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5273]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >crmtest_CRT_00                          <
    DpShMCreate: sizeof(wp_adm)          18512     (1424)
    DpShMCreate: sizeof(tm_adm)          5258160     (26160)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/16/552064/552080
    DpShMCreate: sizeof(comm_adm)          552080     (1088)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1744)
    DpShMCreate: sizeof(wall_adm)          (41664/36752/64/192)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 000000000CFD0050, size: 5947376)
    DpShMCreate: allocated sys_adm at 000000000CFD0050
    DpShMCreate: allocated wp_adm at 000000000CFD1F00
    DpShMCreate: allocated tm_adm_list at 000000000CFD6750
    DpShMCreate: allocated tm_adm at 000000000CFD67B0
    DpShMCreate: allocated wp_ca_adm at 000000000D4DA360
    DpShMCreate: allocated appc_ca_adm at 000000000D4E0120
    DpShMCreate: allocated comm_adm at 000000000D4E2060
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 000000000D568CF0
    DpShMCreate: allocated gw_adm at 000000000D568D70
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 000000000D568DA0
    DpShMCreate: allocated wall_adm at 000000000D568DB0
    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 flat
    <EsNT> Memory Reset disabled as NT default
    <ES> 127 blocks reserved for free list.
    ES initialized.
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 1312
      argv[0] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1199
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CRT
      argv[7] = -DSAPMYNAME=crmtest_CRT_00
      argv[8] = -DSAPPROFILE=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1623]
    ***LOG Q0K=> DpMsAttach, mscon ( crmtest) [dpxxdisp.c   11586]
    Thu Mar 13 20:32:48 2008
    DpStartStopMsg: send start message (myname is >crmtest_CRT_00                          <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpJ2eeLogin: j2ee state = CONNECTED
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 75
    Release check o.K.
    Thu Mar 13 20:33:01 2008
    MBUF state ACTIVE
    DpModState: change server state from STARTING to ACTIVE
    Thu Mar 13 20:33:04 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 424
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1205) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=1312)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Mar 13 20:33:28 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 5112
      argv[0] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1275
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CRT
      argv[7] = -DSAPMYNAME=crmtest_CRT_00
      argv[8] = -DSAPPROFILE=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Mar 13 20:33:36 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 6 / sock 368
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1276) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=5112)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Mar 13 20:33:48 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 3456
      argv[0] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1294
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CRT
      argv[7] = -DSAPMYNAME=crmtest_CRT_00
      argv[8] = -DSAPPROFILE=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Mar 13 20:33:56 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 364
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1295) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=3456)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Mar 13 20:34:08 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 4564
      argv[0] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1310
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CRT
      argv[7] = -DSAPMYNAME=crmtest_CRT_00
      argv[8] = -DSAPPROFILE=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Mar 13 20:34:16 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 6 / sock 356
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1311) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=4564)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Mar 13 20:34:28 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 3604
      argv[0] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1321
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CRT
      argv[7] = -DSAPMYNAME=crmtest_CRT_00
      argv[8] = -DSAPPROFILE=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Mar 13 20:34:36 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 352
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1322) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=3604)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Mar 13 20:34:48 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 4452
      argv[0] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1336
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CRT
      argv[7] = -DSAPMYNAME=crmtest_CRT_00
      argv[8] = -DSAPPROFILE=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Mar 13 20:34:56 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 6 / sock 348
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1337) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=4452)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Mar 13 20:35:08 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 3476
      argv[0] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1368
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CRT
      argv[7] = -DSAPMYNAME=crmtest_CRT_00
      argv[8] = -DSAPPROFILE=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Mar 13 20:35:16 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 344
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1370) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=3476)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Mar 13 20:35:28 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 5104
      argv[0] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1381
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CRT
      argv[7] = -DSAPMYNAME=crmtest_CRT_00
      argv[8] = -DSAPPROFILE=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Mar 13 20:35:36 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 6 / sock 340
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1382) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=5104)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Mar 13 20:35:48 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 3304
      argv[0] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1396
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CRT
      argv[7] = -DSAPMYNAME=crmtest_CRT_00
      argv[8] = -DSAPPROFILE=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Mar 13 20:35:56 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 7 / sock 324
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1397) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=3304)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Mar 13 20:36:08 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 4864
      argv[0] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1412
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CRT
      argv[7] = -DSAPMYNAME=crmtest_CRT_00
      argv[8] = -DSAPPROFILE=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Mar 13 20:36:16 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 320
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1413) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=4864)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Mar 13 20:36:28 2008
    DpEnvCheckJ2ee: switch off j2ee start flag
    Sat Mar 15 04:50:32 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:50:42 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:50:52 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:51:47 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:52:03 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:52:12 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:52:19 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:53:02 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:53:31 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:55:01 2008
    WARNING => Program on wp 8 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:55:07 2008
    WARNING => Program on wp 8 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:55:18 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 16:50:04 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 16:50:11 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 16:50:20 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 16:50:26 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 16:51:08 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 16:51:27 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 16:51:42 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 16:52:23 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 16:52:50 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 16:54:16 2008
    WARNING => Program on wp 8 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 17:00:01 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 04:49:26 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 04:49:34 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 04:49:43 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 04:50:38 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 04:50:54 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 04:51:05 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 04:51:12 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 04:52:19 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 04:54:08 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 04:59:50 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 16:49:22 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 16:49:30 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 16:49:38 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 16:50:42 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 16:50:54 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 16:52:02 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 16:53:30 2008
    WARNING => Program on wp 8 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 16:53:39 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:49:42 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:49:51 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:50:00 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:50:06 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:50:55 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:51:11 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:51:20 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:51:28 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:52:10 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:52:37 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:54:03 2008
    WARNING => Program on wp 8 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:54:13 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:54:21 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 05:00:20 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    and dev_wo is
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Thu Mar 13 20:32:48 2008
    B  create_con (con_name=R/3)
    B  Loading DB library 'F:\usr\sap\CRT\DVEBMGS00\exe\dbmssslib.dll' ...
    B  Library 'F:\usr\sap\CRT\DVEBMGS00\exe\dbmssslib.dll' loaded
    B  Version of 'F:\usr\sap\CRT\DVEBMGS00\exe\dbmssslib.dll' is "700.08", patchlevel (0.72)
    B  New connection 0 created
    M sysno      00
    M sid        CRT
    M systemid   562 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    75
    M intno      20050900
    M make:      multithreaded, Unicode, 64 bit, optimized
    M pid        3920
    M
    M  kernel runs with dp version 217000(ext=109000) (@(#) DPLIB-INT-VERSION-217000-UC)
    M  length of sys_adm_ext is 572 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 3920) [dpxxdisp.c   1299]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpShMCreate: sizeof(wp_adm)          18512     (1424)
    M  DpShMCreate: sizeof(tm_adm)          5258160     (26160)
    M  DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/16/552064/552080
    M  DpShMCreate: sizeof(comm_adm)          552080     (1088)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1744)
    M  DpShMCreate: sizeof(wall_adm)          (41664/36752/64/192)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 000000000EFD0050, size: 5947376)
    M  DpShMCreate: allocated sys_adm at 000000000EFD0050
    M  DpShMCreate: allocated wp_adm at 000000000EFD1F00
    M  DpShMCreate: allocated tm_adm_list at 000000000EFD6750
    M  DpShMCreate: allocated tm_adm at 000000000EFD67B0
    M  DpShMCreate: allocated wp_ca_adm at 000000000F4DA360
    M  DpShMCreate: allocated appc_ca_adm at 000000000F4E0120
    M  DpShMCreate: allocated comm_adm at 000000000F4E2060
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 000000000F568CF0
    M  DpShMCreate: allocated gw_adm at 000000000F568D70
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 000000000F568DA0
    M  DpShMCreate: allocated wall_adm at 000000000F568DB0
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  ThInit: running on host crmtest

    M Thu Mar 13 20:32:49 2008
    M  calling db_connect ...
    C  Thread ID:3956
    C  Thank You for using the SLOLEDB-interface
    C  Using dynamic link library 'F:\usr\sap\CRT\DVEBMGS00\exe\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    patchlevel   0
    C    patchno      72
    C    patchcomment MSSQL: Thread check in DbSlDisconnect (969143)
    C  np:(local) connection used on CRMTEST
    C  CopyLocalParameters: dbuser is 'crt'

    C Thu Mar 13 20:32:50 2008
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C  Provider Release:9.00.1399.06
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C  Cache sizes: header 104 bytes, 20000 names (32800000 bytes), 500 dynamic statements (2872000 bytes), total 35672104 bytes
    C  Using shared procedure name cache CRMTEST_CRTCRT_CRT_MEM initialized by another process.
    C  Connected to db server : [CRMTEST] server_used : [np:(local)], dbname: CRT, dbuser: crt
    C  pn_id:CRMTEST_CRTCRT_CRT
    C  Using MARS (on sql 9.0)
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20080313 203249 CRMTEST        
    C  The IRow interface is supported by this OLEDB provider
    M  db_connect o.k.

    M Thu Mar 13 20:32:51 2008
    M  ICT: exclude compression: .zip,.cs,.rar,.arj,.z,.gz,.tar,.lzh,.cab,.hqx,.ace,.jar,.ear,.war,.css,.pdf,.js,.gzip,.uue,.bz2,.iso,.sda,.sar,.gif

    I Thu Mar 13 20:32:58 2008
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF               (addr: 0000000019460050, size: 4400000)
    M  SHM_ROLL_AREA          (addr: 000007FFF3290050, size: 61440000)
    M  SHM_PAGING_AREA          (addr: 00000000198A0050, size: 32768000)
    M  SHM_ROLL_ADM               (addr: 000000001B7F0050, size: 615040)
    M  SHM_PAGING_ADM          (addr: 000000001B890050, size: 525344)
    M  ThCreateNoBuffer          allocated 544152 bytes for 1000 entries at 000000001B920050
    M  ThCreateNoBuffer          index size: 3000 elems
    M  ThCreateVBAdm          allocated 12176 bytes (50 server) at 000000000FFE0050
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    X  ES initialized.
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 13, CON_ID = -1
    B  dbtbxbuf: Buffer TABL  (addr: 000000001FA70160, size: 30000000, end: 000000002170C4E0)
    B  dbtbxbuf: Buffer TABLP (addr: 0000000021710160, size: 10240000, end: 00000000220D4160)

    B Thu Mar 13 20:32:59 2008
    B  dbexpbuf: Buffer EIBUF (addr: 00000000220E0170, size: 4194304, end: 00000000224E0170)
    B  dbexpbuf: Buffer ESM   (addr: 00000000224F0170, size: 4194304, end: 00000000228F0170)
    B  dbexpbuf: Buffer CUA   (addr: 0000000022900170, size: 3072000, end: 0000000022BEE170)
    B  dbexpbuf: Buffer OTR   (addr: 0000000022BF0170, size: 4194304, end: 0000000022FF0170)
    M  CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    S  *** init spool environment
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 00000000115A2D30
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  1 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      found processing queue enabled
    S  found spool memory service RSPO-RCLOCKS at 000000002C3900D0
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at 000000002C3904F0
    S    using messages for server info
    S  size of spec char cache entry: 297032 bytes (timeout 100 sec)
    S  size of open spool request entry: 2168 bytes
    S  immediate print option for implicitely closed spool requests is disabled

    A  -PXA--
    A  PXA INITIALIZATION
    A  PXA: Fragment Size too small: 36 MB, reducing # of fragments
    A  System page size: 4kb, total admin_size: 5720kb, dir_size: 5664kb.
    A  Attached to PXA (address 000007FFF6D30050, size 150000K)
    A  abap/pxa = shared protect gen_remote
    A  PXA INITIALIZATION FINISHED
    A  -PXA--


    A Thu Mar 13 20:33:00 2008
    A  ABAP ShmAdm attached (addr=000007FF6207E000 leng=20955136 end=000007FF6347A000)
    A  >> Shm MMADM area (addr=000007FF62557E90 leng=244096 end=000007FF62593810)
    A  >> Shm MMDAT area (addr=000007FF62594000 leng=15622144 end=000007FF6347A000)
    A  RFC Destination> destination crmtest_CRT_00 host crmtest system CRT systnr 0 (crmtest_CRT_00)
    A  RFC Options> H=crmtest,S=00,d=2,
    B  table logging switched off for all clients
    A  RFC FRFC> fallback activ but this is not a central instance.
    A   
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 2
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    A  RFC rfc/bc_ignore_thcmaccp_retcode not set, use default value: 0
    A  RFC Method> initialize RemObjDriver for ABAP Objects
    M  ThrCreateShObjects          allocated 13730 bytes at 000000002C500050
    N  SsfSapSecin: putenv(SECUDIR=F:\usr\sap\CRT\DVEBMGS00\sec): ok

    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF trace level is 0 .
    N  ===...SSF library is F:\usr\sap\CRT\DVEBMGS00\exe\sapsecu.dll .
    N  ===...SSF hash algorithm is SHA1 .
    N  ===...SSF symmetric encryption algorithm is DES-CBC .
    N  ===...sucessfully completed.
    N  =================================================
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    M  JrfcVmcRegisterNativesDriver o.k.
    W  =================================================
    W  === ipl_Init() called
    B    dbtran INFO (init_connection '<DEFAULT>' [MSSQL:700.08]):
    B     max_blocking_factor =  50,  max_in_blocking_factor      = 255,
    B     min_blocking_factor =   5,  min_in_blocking_factor      =  10,
    B     prefer_union_all    =   1,  prefer_join                 =   1,
    B     prefer_fix_blocking =   0,  prefer_in_itab_opt          =   0,
    B     convert AVG         =   1,  alias table FUPD            =   0,
    B     escape_as_literal   =   0,  opt GE LE to BETWEEN        =   0,
    B     select *            =0x00,  character encoding          = STD / []:X,
    B     use_hints           = abap->1, dbif->0x1, upto->0, rule_in->0,
    B                           rule_fae->0, concat_fae->0, concat_fae_or->0
    W    ITS Plugin: Path dw_gui
    W    ITS Plugin: Description ITS Plugin - ITS rendering DLL
    W    ITS Plugin: sizeof(SAP_UC) 2
    W    ITS Plugin: Release: 700, [7000.0.75.20050900]
    W    ITS Plugin: Int.version, [32]
    W    ITS Plugin: Feature set: [10]
    W    ===... Calling itsp_Init in external dll ===>
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    E  Enqueue Info: rdisp/wp_no_enq=1, rdisp/enqname=<empty>, assume crmtest_CRT_00

    E Thu Mar 13 20:33:01 2008
    E  Replication is disabled
    E  EnqCcInitialize: local lock table initialization o.k.
    E  EnqId_SuppressIpc: local EnqId initialization o.k.
    E  EnqCcInitialize: local enqueue client init o.k.

    C Thu Mar 13 20:33:15 2008
    C  The IRow interface is supported by this OLEDB provider

    S Thu Mar 13 20:34:08 2008
    S  found spool memory service RSPO-ACTIONS at 000000002C39A230

    M Thu Mar 13 20:36:35 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 20:38:08 2008
    M  SecAudit(RsauShmInit): WP attached to existing shared memory.
    M  SecAudit(RsauShmInit): addr of SCSA........... = 0000000008E30050
    M  SecAudit(RsauShmInit): addr of RSAUSHM........ = 0000000008E307C0
    M  SecAudit(RsauShmInit): addr of RSAUSLOTINFO... = 0000000008E30800
    M  SecAudit(RsauShmInit): addr of RSAUSLOTS...... = 0000000008E3080C

    M Thu Mar 13 20:39:30 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 20:40:58 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]
    B  dbmyclu : info : my major identification is 168427960, minor one 0.
    B  dbmyclu : info : Time Reference is 1.12.2001 00:00:00h GMT.
    B  dbmyclu : info : my initial uuid is 21ED0D86BD75A54AB110DF41F509CAAB.
    B  dbmyclu : info : current optimistic cluster level: 3
    B  dbmyclu : info : pessimistic reads set to 2.

    M Thu Mar 13 21:07:39 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 21:08:04 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 21:08:23 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 21:08:45 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 21:09:37 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 21:09:59 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 21:10:16 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 21:10:40 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 21:12:33 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 21:12:56 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 21:14:15 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    N Thu Mar 13 21:14:56 2008
    N  RSEC: The entry with identifier /RFC/[email protected]_CRD
    N  was encrypted by a system
    N  with different SID and cannot be decrypted here.
    N  RSEC: The entry with identifier /RFC/[email protected]_CRD
    N  was encrypted by a system
    N  with different SID and cannot be decrypted here.

    A Thu Mar 13 21:14:57 2008
    A  RFC 3165  CONVID 24150480
    A   * CMRC=18 DATA=3 STATUS=1 SAPRC=0 comread Logon not possible (error in license check)                                    
    A  RFC> ABAP Programm: SAPLTMSC (Transaction: STMS)
    A  RFC> User: SAP* (Client: 000)
    A  RFC> Destination: [email protected]_CRT (handle: 2, 24150480, {BBF7B2FD-E7BD-481C-BCC5-C14C4DCF7569})
    A  RFC> Called function module: TMS_CI_START_SERVICE
    A  RFC 3165  CONVID 24151558
    A   * CMRC=18 DATA=3 STATUS=1 SAPRC=0 comread Logon not possible (error in license check)                                    
    A  RFC> ABAP Programm: SAPLTMSC (Transaction: STMS)
    A  RFC> User: SAP* (Client: 000)
    A  RFC> Destination: [email protected]_CRT (handle: 3, 24151558, {BE818A28-28FF-4FA3-8468-7D26BAE3E45C})
    A  RFC> Called function module: TMS_CI_START_SERVICE

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Gateway on host crmtest / sapgw00
    M  *  ERROR       program state check for conversation 24152667
    M  *
    M  *  TIME        Thu Mar 13 21:14:57 2008
    M  *  RELEASE     700
    M  *  COMPONENT   SAP-Gateway
    M  *  VERSION     2
    M  *  RC          471
    M  *  MODULE      gwr3cpic.c
    M  *  LINE        3251
    M  *  DETAIL      program sapgw00 on host crmtest called function SEND_DATA in
    M  *              state RECEIVE_DO_ACCEPT
    M  *  COUNTER     79
    M  *
    M  *****************************************************************************

    A  RFC 3293  CONVID 24152667
    A   * CMRC=25 DATA=1 STATUS=1 SAPRC=221 ThSAPCMRCV
    A  RFC> ABAP Programm: SAPLTMSC (Transaction: STMS)
    A  RFC> User: SAP* (Client: 000)
    A  RFC> Destination: [email protected]_CRT (handle: 5, 24152667, {AF649C7D-630C-4119-8883-D1B05D5C7B04})
    A  RFC> Called function module: TMS_CI_START_SERVICE
    A  RFC 3165  CONVID 24152667
    A   * CMRC=25 DATA=1 STATUS=1 SAPRC=221 comread

    A Thu Mar 13 21:15:00 2008
    A  RFC 3165  CONVID 24156636
    A   * CMRC=18 DATA=3 STATUS=1 SAPRC=0 comread Logon not possible (error in license check)                                    
    A  RFC> ABAP Programm: SAPLTMSC (Transaction: STMS)
    A  RFC> User: SAP* (Client: 000)
    A  RFC> Destination: [email protected]_CRT (handle: 7, 24156636, {6B579F5B-BE77-497B-8F00-10A4EA3E56CA})
    A  RFC> Called function module: TMS_CI_START_SERVICE

    A Thu Mar 13 21:16:19 2008
    A  RFC 3165  CONVID 24236495
    A   * CMRC=18 DATA=3 STATUS=1 SAPRC=0 comread Logon not possible (error in license check)                                    
    A  RFC> ABAP Programm: SAPLTMSC (Transaction: STMS)
    A  RFC> User: SAP* (Client: 000)
    A  RFC> Destination: [email protected]_CRT (handle: 2, 24236495, {4060AC1F-CDBC-4F8F-A688-E0EC4349A4AD})
    A  RFC> Called function module: TMS_CI_START_SERVICE
    A  RFC 3165  CONVID 24237526
    A   * CMRC=18 DATA=3 STATUS=1 SAPRC=0 comread Logon not possible (error in license check)                                    
    A  RFC> ABAP Programm: SAPLTMSC (Transaction: STMS)
    A  RFC> User: SAP* (Client: 000)
    A  RFC> Destination: [email protected]_CRT (handle: 3, 24237526, {2194687C-6032-433B-A830-3B14BBB6F08E})
    A  RFC> Called function module: TMS_CI_START_SERVICE

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Gateway on host crmtest / sapgw00
    M  *  ERROR       program state check for conversation 24238573
    M  *
    M  *  TIME        Thu Mar 13 21:16:19 2008
    M  *  RELEASE     700
    M  *  COMPONENT   SAP-Gateway
    M  *  VERSION     2
    M  *  RC          471
    M  *  MODULE      gwr3cpic.c
    M  *  LINE        3251
    M  *  DETAIL      program sapgw00 on host crmtest called function SEND_DATA in
    M  *              state RECEIVE_DO_ACCEPT
    M  *  COUNTER     82
    M  *
    M  *****************************************************************************

    A  RFC 3293  CONVID 24238573
    A   * CMRC=25 DATA=1 STATUS=1 SAPRC=221 ThSAPCMRCV
    A  RFC> ABAP Programm: SAPLTMSC (Transaction: STMS)
    A  RFC> User: SAP* (Client: 000)
    A  RFC> Destination: [email protected]_CRT (handle: 5, 24238573, {7070FE84-C4F8-4B93-9A35-CC8B33004994})
    A  RFC> Called function module: TMS_CI_START_SERVICE
    A  RFC 3165  CONVID 24238573
    A   * CMRC=25 DATA=1 STATUS=1 SAPRC=221 comread

    A Thu Mar 13 21:16:21 2008
    A  RFC 3165  CONVID 24241636
    A   * CMRC=18 DATA=3 STATUS=1 SAPRC=0 comread Logon not possible (error in license check)                                    
    A  RFC> ABAP Programm: SAPLTMSC (Transaction: STMS)
    A  RFC> User: SAP* (Client: 000)
    A  RFC> Destination: [email protected]_CRT (handle: 7, 24241636, {BAE47DEC-B5E0-436B-AF61-49BA0BECBA89})
    A  RFC> Called function module: TMS_CI_START_SERVICE

    A Thu Mar 13 21:16:51 2008
    A  RFC 3165  CONVID 24272417
    A   * CMRC=18 DATA=3 STATUS=1 SAPRC=0 comread Logon not possible (error in license check)                                    
    A  RFC> ABAP Programm: SAPLTMSC (Transaction: STMS)
    A  RFC> User: SAP* (Client: 000)
    A  RFC> Destination: [email protected]_CRT (handle: 9, 24272417, {4A78FF2B-82BD-4199-845F-ED81CBD5CFE9})
    A  RFC> Called function module: TMS_CI_START_SERVICE
    A  RFC 3165  CONVID 24273433
    A   * CMRC=18 DATA=3 STATUS=1 SAPRC=0 comread Logon not possible (error in license check)                                    
    A  RFC> ABAP Programm: SAPLTMSC (Transaction: STMS)
    A  RFC> User: SAP* (Client: 000)
    A  RFC> Destination: [email protected]_CRT (handle: 10, 24273433, {6B3B7501-5319-4275-BCF3-64CE72C5D911})
    A  RFC> Called function module: TMS_CI_START_SERVICE

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Gateway on host crmtest / sapgw00
    M  *  ERROR       program state check for conversation 24274480
    M  *
    M  *  TIME        Thu Mar 13 21:16:51 2008
    M  *  RELEASE     700
    M  *  COMPONENT   SAP-Gateway
    M  *  VERSION     2
    M  *  RC          471
    M  *  MODULE      gwr3cpic.c
    M  *  LINE        3251
    M  *  DETAIL      program sapgw00 on host crmtest called function SEND_DATA in
    M  *            

Maybe you are looking for

  • Network Crash , Apple TV , Streaming ; Help Please

    While sending music to the Apple TV-- via Pandora for instance --after a few minutes the whole network goes down. Specifically, every device gets booted off of the network like the leases all expired. The router does not reboot and is almost instantl

  • Export command to back up data

    Dear All I am developing a system for a store system, and I want to use the export command to let the user back up the data , but I have those four questions:- 1. Is using the export command a good practice for doing the back up process? 2. At what t

  • Urgent!... What is the USER EXIT for Inbound ORDERS

    Hi all, Which is the user exit used for <b>Inbound ORDERS</b>? The exact requirement is for an <b>incoming Idoc which is a PO</b>, we have to map certain fields in the segments E1EDK01, E1EDK14, E1EDKA1, E1EDP01, E1EDP19 AND E1EDP20 for <b>ORDERS</b>

  • ODT 11g on a computer that runs client 10g

    Hi I want to (or better to say I have to because of Vista) use ODT 11 with Visual Studio 2008 but the executable has to run on machines were only the client 10 is installed? Is this possible? Or can I distribute the full client with my executable? I

  • I think I might of accidentally deleted my iMovie.

    I think I might of accidentally deleted my imovie. It is not in "cache" and the remains in the "application support" folder are not there not there. It is not in my trash.  Is there anyway I can get it back without paying $14.99.