Update kernel steps for IDES 4.7 - Windows - MS SQL SERVER 2000

Hello,
Concerning updating the kernel - for IDES 4.7, Windows, SQL SERVER 2000 - is there a way to locate exactly the.SAR files - for the database dependent & database independent parts - which are compatible with the used SAP version.
Also, does updating the kernel involve only the following:
- Downloading the .SAR file.
- Taking a backup copy of the exe/run folder's content.
- Stopping the SAP system and all related services.
- Unpacking the .SAR files using the SAPCAR utitilty,
i.e. are there any specific steps to be done after the unpacking ?
Thanks in advance.
Reda Khalifa
IT Department - Almansour Automotive Group - Egypt

Hi Reda,
I guess You want to upgrade kernel from 6.20 to 6.40.
Go to service.sap.com -> downloads -> SAP Support Packages -> Search for SP and Upgrades -> enter "kernel 6.40" and follow the link "kernel 6.40 32-BIT".
On next window choose from location :SAP KERNEL 6.40 \ Windows Server \ Database independent following SARs (title):
-       enq
-       disp+work package
-       dsrlib
-      enserver
-       librfc
-       MMC (optional)
-       Kernel Part I (for Basis 640/620/610) Q1/2007 (very important)
-       saposcol
From location:SAP KERNEL 6.40 \ Windows Server \ MS SQL Server choose following SARs:
-      Database Library
-       R3LOAD
-       R3load Control
-       Kernel Part II (for Basis 640/620/610) Q1/2007 (very important)
Unpack it to newKernel directory and copy it to \exe\run directory.
Next step  Frank Deijkers  already wrote.
On the end of upgrade go to \exe\run catalog and run sapstartsrv.exe program for registering new service and COM library.
Regards,
Marcin

Similar Messages

  • How to retrieve Min(startDate) and Max(endDate) for different groups of data? (sql server 2000)

    My sample dataset (below) contains 3 groups -- 'a', 'b', 'c'.  I need to retrieve the Min(startDate) and Max(EndDate) for each group so that the output looks something like this (date format not an issue):
    fk   minStart       maxEnd
    a    1/13/1985    12/31/2003
    b    2/14/1986    12/31/2003
    c    4/26/1987    12/31/2002
    What is the Tsql to perform this type of operation?  Note:  the actual data resides in a sql server 2000 DB.  If the Tsql is different between version 2000 and the later versions -- I would be grateful for both versions of the Tsql
    --I noticed that multiple lines of Insert values doesn't work in Sql Server 2000 -- this sample is in Sql Server 2008
    create table #tmp2(rowID int Identity(1,1), fk varchar(1), startDate datetime, endDate datetime)
    insert into #tmp2
    values
    ('a', '1/13/1985', '12/31/1999'),
    ('a', '3/17/1992', '12/31/1997'),
    ('a', '4/21/1987', '12/31/2003'),
    ('b', '2/14/1986', '12/31/2003'),
    ('b', '5/30/1993', '12/31/2001'),
    ('b', '6/15/1994', '12/31/2003'),
    ('b', '7/7/2001', '12/31/2003'),
    ('c', '4/26/1987', '12/31/1991'),
    ('c', '8/14/1992', '12/31/1998'),
    ('c', '9/10/1995', '12/31/2002'),
    ('c', '10/9/1996', '12/31/2000')
    Thanks
    Rich P

    Rich
    It is unclear what you are trying to achieve, you said that it is SQL Server 2000 but provide a sample data with SQL Server 2008 syntax
    Is it possible to use UNION ALL for your queries to make its one 
    select * from
    select * from #tmp2 t1 where exists
    (select * from (select top 1 * from #tmp2 t2 where t2.fk = t1.fk order by t2.startdate) x where x.rowID = t1.rowID)
    UNION ALL
    select * from #tmp2 t1 where exists
    (select * from (select top 1 * from #tmp2 t2 where t2.fk = t1.fk order by t2.Enddate desc) x where x.rowID = t1.rowID)
     as  der order by fk
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Workarounds for searching a text field in SQL Server 2000

    Hi,
    I have a need to search within a text field in SQL Server 2000. In the
    limitations section it notes that this is not possible. Is there a
    recommended workaround for this in terms of performance? I have no way
    of knowing the length of the text field in advance, and this could be
    fairly large. Also, the number of objects that could contain the text
    can be fairly large as well.
    Thanks in advance,
    Khamsouk

    Note that some databases (or Oracle, at least) provide alternatives to
    LIKE '%foo%' that are more efficient for large text blocks, given that
    you have the appropriate indexing plugins etc. etc.
    To use one of those types of search operators, you'd have to put
    together a custom extension.
    -Fred
    Fred Lucas <[email protected]> wrote:
    I'm assuming that when you say 'a text field', you're referring to a
    SQLServer TEXT field, as opposed to just any old field that contains
    text.
    Like I said, I'm by no means a SQLServer pro, but I just ran:
    SELECT CLOBSTRINGX
    FROM LOCATORTESTOBJECTX
    WHERE CLOBSTRINGX LIKE '%o%';
    and got back my test row with 'foo' in the CLOBSTRINGX column.
    CLOBSTRINGX is a TEXT column.
    So, it is possible that our stringContains() extension will just work.
    But then again, maybe not. I'm guessing it will.
    Give it a try and, if you get an error, post the generated SQL (turn on
    SQL output by setting the com.solarmetric.kodo.Logger property to
    'stdout') and the error that you get. Also, try executing the generated
    SQL directly against your data store to see if it works there.
    -Fred
    Khamsouk Souvanlasy <[email protected]> wrote:
    Basically I just want to use kodo's extended stringContains syntax on a
    text field. Is this possible?
    Khamsouk
    Fred Lucas wrote:
    I'm not intimitely familiar with SQLServer's text searching
    capabilities, but I'm confident that you could create a query extension
    that would do what you need it to do.
    What is the SQL that you are trying to generate?
    -Fred
    Khamsouk Souvanlasy <[email protected]> wrote:
    Hi,
    I have a need to search within a text field in SQL Server 2000. In the
    limitations section it notes that this is not possible. Is there a
    recommended workaround for this in terms of performance? I have no way
    of knowing the length of the text field in advance, and this could be
    fairly large. Also, the number of objects that could contain the text
    can be fairly large as well.
    Thanks in advance,
    Khamsouk
    Fred Lucas
    SolarMetric Inc.
    202-595-2064 x1122
    http://www.solarmetric.com

  • Steps for Sequencing SQL2005 Client Tools, including SQL Server Business intelligence Development Studio.

    I have Sequenced SQL2005 Client Tools  Successfully and here is the steps used.
    (I was getting this error, and this is my question in this blog http://social.technet.microsoft.com/Forums/en-US/appvgeneralsequencing/thread/e97ed71a-7d68-4977-890e-5ce317553855.
    Thanks for the replies)
    1. Install .NET 2.0 before sequencing SQL 2005 Client tools.
    2. Create SQL2005 folder ON Q:
    3. Create SQL folder in Q:\SQL2005
    4. Start  Sequencer> New Package ( used App-V 4.5 SP2 on Windows XP SP3) sequence to Q:\SQL2005
    5. Give Name And Comments
    6. Start monitoring
    7. Run SQL Server 2005 setup
    8. select Server components, tool, books online, and samples on setup screen
    9. install pre requisites
    10. IIS Feature Requirement will give a warning, click next to continue.
    11. Check All Components(Workstation Components, Books Online and development tools etc)
    12. Change installation path to Q:\SQL2005\SQL
    13. Install SQL2005 SP2
    14. Install Visual Studio 2005 Service Pack 1(VS80sp1-KB926601-X86-ENU)
    15. Install hot fix 944478(VS80sp1-KB944478-X86-ENU)
    16. Install the VKeyPackage.dll (hot fix package 945347). follow these steps:
    a. Extract the pack &copy VKeyPackage.dll to  C:\Program Files\Microsoft Visual Studio 8
    b.    Run this at command prompt regsvr32 "C:\Program Files\Microsoft Visual Studio8\VKeyPackage.dll"
    17. Stop sequencing and Launch applications.
    18. On deployment tab fill out required information needed and Uncheck "enforce security descriptors"
    19. Save the Package.
    20. Make sure that the Sequencer clients are having .NET 2.0 installed.
    21. Copy the package to   ‘content ‘folder and import it.
    Thanks
    Sreekanth

    Hai i am sequencing SQL server 2008 R2 . just want to know from where can i get this hot fix download. there is only option saying contact microsoft . but where we are able to download this hotfix to Fix the issue of licience..Help out

  • ABAP access key  & install step for  IDES ECC 5.0 oracle database

    Hallo
    if you have installation guide/steps for IDES ECC 5.0 (Oracle database) then please send me. also if you have ABAP access key for the IDES ECC 5.0 (SQL 2005 database) . My system details as
    SID=ERP
    instance no=00
    host=sapsrv
    database=SQL 2005
    Waiting for faveroable reply

    I really appreciate response for my question.
    I am trying to install a non-IDES version of ECC 5.0 (central, database, and dialog instances).
    Questoin : Do I need install Solution Manager 3.2 on the same server where I am installing ECC 5.0?

  • Installing IDES 6.07 disp+work.exe error. Parallels windows 7, SQL Server 2012

    Hi Experts,
    I am trying to install sap IDES ECC 6 EhP 7 from scratch. Everything was doing well but I got an error on starting instance. SAPMMC Console Process disp+work.EXE do not change from status: "Server in State STARTING" (Yellow). I have been searching and most of the problem is related to Kernel. I upgraded Kernel to the latest version: SAPEXEDB_101-20012221.SAR and SAPEXE_101-20012222.SAR. I also check my host file and set my IP address with my computer name. I check logs dev_disp and dev_w0 but I am not able to see the error. I am installing IDES into Virtual Machine, Windows 7, SQL Server 2012, 8 Gb memory.
    Best Regards.
    David C.
    dev_disp:
    trc file: "dev_disp", trc level: 2, release: "742"
    <<- SapSSLSetTraceFile()==SAP_O_K
    command line arg 0: C:\usr\sap\ECC\DVEBMGS00\exe\disp+work.EXE
    command line arg 1: pf=\\SAPIDESECC\sapmnt\ECC\SYS\profile\ECC_DVEBMGS00_SAPIDESECC
    sysno      00
    sid        ECC
    systemid  562 (PC with Windows NT)
    relno      7420
    patchlevel 0
    patchno    101
    intno      20020600
    make      multithreaded, Unicode, 64 bit, optimized
    profile    \\SAPIDESECC\sapmnt\ECC\SYS\profile\ECC_DVEBMGS00_SAPIDESECC
    pid        1724
    Wed May 02 19:14:50 2040
    kernel runs with dp version 224000(ext=117000) (@(#) DPLIB-INT-VERSION-224000-UC)
    length of sys_adm_ext is 500 bytes
    ***LOG Q00=> DpSapEnvInit, DPStart (00 1724) [dpInit.c    597]
    ShmProtect( 5, 3 )
    DpSapEnvInit: rscpInitDispatcher o.k.
    SigIInit: ok (whoami=1)
    Thread handle for mainthread created
    SigIRegisterRoutine: handler for signal SIGSEGV installed (SigISegv, flag 0)
    Pipe created: \\.\pipe\SAP1724
    SigIInit: Create Message Thread
    SigIRegisterExitRoutine: exithandler installed (DpSigExitHandler)
    SigIRegisterTerminateRoutine: terminatehandler installed (DpSigExitHandler)
      shared lib "dw_xml.dll" version 101 successfully loaded
      shared lib "dw_xtc.dll" version 101 successfully loaded
      shared lib "dw_stl.dll" version 101 successfully loaded
      shared lib "dw_gui.dll" version 101 successfully loaded
    Wed May 02 19:14:51 2040
      shared lib "dw_rndrt.dll" version 101 successfully loaded
      shared lib "dw_abp.dll" version 101 successfully loaded
    mshost: >SAPIDESECC<
    DpSetCancelStrat: set timeout/repetition 0/-1 at level 0
    DpSetCancelStrat: set timeout/repetition 5/-1 at level 1
    DpSetCancelStrat: set timeout/repetition -1/5 at level 2
    rdisp/softcancel_sequence :  -> 0,5,-5
    softcancel_sequence: >0,5,-5<
    use internal message server connection to port 3901
    msserv: >3901<
    dp_bufreftime: 120 sec
    dp_btctime: 0 sec
    dp_autoabaptime: 0 sec
    dp_bgrfc_watchdog_time: 300 sec
    dp_signal_handler_timeout: 300 sec
    dp_autothtime: 60 sec
    dp_autojavatime: 60 sec
    dp_autoccmstime: 60 sec
    dp_security_check_time: 60 sec
    max_dynamic_wp_alive_time: 300 sec
    dp_startup_time: 20
    dp_noptime: 0 sec
    dp_keepalive: 1200 sec
    dp_keepalive_timeout: 60 sec
    dp_ms_keepalive: 60 sec
    dp_ms_keepalive_timeout: 300 sec
    switch off dp-keep-alive for old temus
    dp_spoolalrm: 60 sec
    dp_softcancel_timeout: 5 sec
    rdisp/wp_restart_interval : 300 sec
    DpISetTrcLog: trc logging active, max size = 52428800 bytes
    rdisp/shutdown/load_balance_wait_time: 180 sec
    rdisp/shutdown/disable_login : 0
    rdisp/shutdown/auto_logout: 600 sec
    rdisp/shutdown/trigger_timeout: 180 sec
    rdisp/shutdown/idle_wp_timeout: 600 sec
    rdisp/shutdown/longrunner_timeout: 86400 sec
    rdisp/shutdown/j2ee_timeout: 60 sec
    rdisp/high_load_quota: (load / queue quota) = (90.000000 / 5.000000)
    rdisp/snapshot(CREATE): DP_CS_RESOURCES_EXHAUSTED
    Wed May 02 19:14:51 2040
    rdisp/snapshot(PERIOD):300 sec
    rdisp/snapshot(LINES):10000 lines
    DpSetAvoidTraceInSignalHandler: 0 -> 1
    DpCommonParamInit: rdisp/core_file_size = default --> no change
    NiSrvLGetServNo: got service name 'sapdp00' from operating system
    NiIGetServNo: servicename 'sapdp00' = port 3200
    NiSrvLGetServNo: got service name 'sapgw00' from operating system
    NiIGetServNo: servicename 'sapgw00' = port 3300
    NiMyHostName: hostname = 'SAPIDESECC'
    NiHLGetNodeAddr: got hostname 'SAPIDESECC' from operating system
    NiIGetNodeAddr: hostname 'SAPIDESECC' = addr 192.168.10.10
    NiHLGetHostName: found address 192.168.10.10 in cache
    NiIGetHostName: addr 192.168.10.10 = hostname 'SAPIDESECC' (fq)
    NiHLGetNodeAddr: hostname 'www.doesnotexist0107.qqq.nxst' not found by operating system
    Wed May 02 19:15:00 2040
    NiHLGetHostName: address 1.0.0.1 not found by operating system
    *** WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 9 seconds
    NiSrvLGetServNo: got service name 'http' from operating system
    NiIGetServNo: servicename 'http' = port 80
    NiSrvLGetServName: port 8080 not found by operating system
    NiSrvLGetServName: port 64555 not found by operating system
    NiSrvLGetServNo: service name 'sapdp9988' not found by operating system
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5088]
    SigIRegisterRoutine: handler for signal 16 installed (DpTrcOnOff, flag 0)
    SigIRegisterRoutine: handler for signal 17 installed (DpTrcOnOff, flag 0)
    SigIRegisterRoutine: alarm handler installed (DpSigAlrm)
    SigIRegisterRoutine: handler for signal SIGINT installed (DpSigInt, flag 0)
    SigIRegisterRoutine: handler for signal SIGTERM installed (DpSigInt, flag 0)
    SigIRegisterRoutine: handler for signal 3 installed (DpSigQuit, flag 0)
    MtxInit: 30000 0 0
    DpInitMtx: MtxInit o.k.
    PPID environment not found
    Thread handle for mainthread created
    SigIRegisterRoutine: handler for signal 19 installed (DpSigPrivDisp, flag 0)
    SigIRegisterRoutine: handler for signal 18 installed (DpSigPrivDisp, flag 0)
    SigIRegisterRoutine: handler for signal 24 installed (DpSigPrivDisp, flag 0)
    SigIRegisterRoutine: handler for signal 0 installed (DpSigPrivDisp, flag 0)
    SigIRegisterRoutine: handler for signal 21 installed (DpSigPrivDisp, flag 0)
    SigIRegisterRoutine: handler for signal SIGABRT installed (DpSigPrivDisp, flag 0)
    SigIRegisterRoutine: handler for signal 23 installed (DpSigPrivDisp, flag 0)
    SigIRegisterRoutine: handler for signal 25 installed (DpSigPrivDisp, flag 0)
    disp service: sapdp00
    NiMyHostName: hostname = 'SAPIDESECC'
    ShmProtect( 1, 3 )
    DpSysAdmExtCreate: created and initialized sys_adm_ext
    DpSysAdmExtCreate: SHM_SYS_ADM_KEY (addr: 00000000022B0050, size: 500)
    DpSysAdmExtCreate: SemInMgt o.k.
    DpIPCInit2: whoami=1
    disp service: sapdp00
    myname: SAPIDESECC_ECC_00                  
    vbname:                                  
    vb2name:                                  
    max_comm_entries: 1000
    Wed May 02 19:15:00 2040
    amc_rec_max_no: 400
    websockets_max_no: 100
    tm_max_no: 200
    wp_ca_blk_no: 6000
    wp_no_dia: 10
    wp_no_vb: 1
    wp_no_vb2: 1
    wp_no_enq: 0
    wp_no_btc: 3
    wp_no_spo: 1
    wp_no_restricted: 0
    wp_max_no: 21
    wp_no_dynamic: 5
    configurable_wp_no: 16
    wall_entry_max_no: 200
    addump_period: 0
    max_sleep: 20
    max_hold_time: 60 sec
    max_priv_time: 0 sec
    max_vm_debug_attach_time: 60 sec
    max_vm_sgc_lazy_time: 600 sec
    max_vm_forced_sgc_time: 10 sec
    max_debug_lazy_time: 600 sec
    max_debug_attach_time: 30 sec
    max_snc_hold_time: 120 sec
    em_blocksize_KB: 4096
    em_initial_size_MB: 5734
    em_max_size_MB: 12287
    em_address_space_MB: 5734
    start_icman: 1
    rm_max_tbl_size: 1000
    DpIPCInit2: write dp-profile-values into sys_adm_ext
    RqQInit: Init with maxQueues=3448, maxRequests=14000, maxWorker=21, singlethreaded process
    ShmProtect( 21, 3 )
    RqQInit: use events to trigger worker
    NiHLGetNodeAddr: got hostname 'localhost' from operating system
    NiIGetNodeAddr: hostname 'localhost' = addr 127.0.0.1
    RqQInit: created shared memory
    RqQInit: o.k.
    RqQSetMtxStatistic: switch off mutex statistic
    Wed May 02 19:15:00 2040
    RqQSetWakeupHandling: handle wakups outside queue lookup
    DpRqSetMultithreadedProcess: inside a singlethreaded process
    DpIPCInit2: start server >SAPIDESECC_ECC_00                      <
    DpShMCreate: alloate/attach shared memory (mode=CREATE)
    DpShMCreate: sizeof(wp_adm) 23360 (1112)
    DpShMCreate: sizeof(tm_adm) 13098768 (65168)
    DpShMCreate: sizeof(ca_adm) 432000 (72)
    DpCommTableSize: max/headSize/ftSize/tableSize=1000/16/3664064/3869152
    DpShMCreate: sizeof(comm_adm) 3869152 (3648)
    DpSlockTableSize: calculate slock table size from vmc state (not active)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm) 0 (296)
    DpReadFileParams: calculate file table size from vm number (0)
    max_file_entries: 0
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm) 0 (80)
    DpSockTableSize: max/headSize/ftSize/tableSize=1000/16/1040064/1040080
    DpShMCreate: sizeof(sock_adm) 1040080 (1016)
    DpShMCreate: sizeof(vmc_adm) 0 (3208)
    DpShMCreate: sizeof(wall_adm) (ft=41664/fi=67472/hd=64/rec=192)
    DpShMCreate: sizeof(amc_rec_adm) (ft=172864/fi=101872/hd=64/rec=416)
    DpShMCreate: sizeof(websocket_adm) (ft=28864/hd=64/rec=272)
    DpShMCreate: sizeof(gw_adm) 64
    DpShMCreate: sizeof(j2ee_adm) 3936
    ShmProtect( 2, 3 )
    DpShMCreate: SHM_DP_ADM_KEY (addr: 000000000FD20050, size: 18986576
    sizeof(ca) 208896000 (34816)
    ShmProtect( 3, 3 )
    SHM_DP_CA_KEY (addr: 0000000010F40050, size: 208896000)
    DpShMCreate: Initialized eye before sys_adm with len 512 at 000000000FD20050
    DpShMCreate: allocated sys_adm at 000000000FD20250
    DpShMCreate: Initialized eye before wp_adm_list with len 512 at 000000000FD31F40
    DpShMCreate: allocated wp_adm_list at 000000000FD32140
    DpShMCreate: Initialized eye before wp_adm with len 512 at 000000000FD32260
    DpShMCreate: allocated wp_adm at 000000000FD32460
    DpShMCreate: Initialized eye before tm_adm_list with len 512 at 000000000FD37FA0
    DpShMCreate: allocated tm_adm_list at 000000000FD381A0
    DpShMCreate: Initialized eye before tm_adm with len 512 at 000000000FD381E0
    DpShMCreate: allocated tm_adm at 000000000FD383E0
    DpShMCreate: Initialized eye before ca_adm with len 512 at 00000000109B62F0
    Wed May 02 19:15:00 2040
    DpShMCreate: allocated ca_adm at 00000000109B64F0
    DpShMCreate: Initialized eye before comm_adm with len 512 at 0000000010A1FC70
    DpShMCreate: allocated comm_adm at 0000000010A1FE70
    DpShMCreate: system runs without slock table
    DpShMCreate: Initialized eye before sock_adm with len 512 at 0000000010DD0850
    DpShMCreate: allocated sock_adm at  0000000010DD0A50
    DpShMCreate: Initialized eye before vmc_adm_list with len 512 at 0000000010ECE920
    DpShMCreate: allocated vmc_adm_list at 0000000010ECEB20
    DpShMCreate: system runs without VMC
    DpShMCreate: Initialized eye before gw_adm with len 512 at 0000000010ECEBC0
    DpShMCreate: allocated gw_adm at 0000000010ECEDC0
    DpShMCreate: Initialized eye before j2ee_adm with len 512 at 0000000010ECEE00
    DpShMCreate: allocated j2ee_adm at 0000000010ECF000
    DpShMCreate: Initialized eye before ca_info with len 512 at 0000000010ECFF60
    DpShMCreate: allocated ca_info at 0000000010ED0160
    DpShMCreate: Initialized eye before wall_adm_ft with len 512 at 0000000010ED01A0
    DpShMCreate: allocated wall_adm (ft) at 0000000010ED03A0
    DpShMCreate: Initialized eye before wall_adm_fi with len 512 at 0000000010EDA660
    DpShMCreate: allocated wall_adm (fi) at 0000000010EDA860
    DpShMCreate: Initialized eye before wall_adm_head with len 512 at 0000000010EEAFF0
    DpShMCreate: allocated wall_adm (head) at 0000000010EEB1F0
    DpShMCreate: Initialized eye before amc_rec_adm_ft with len 512 at 0000000010EEB230
    DpShMCreate: allocated amc_rec_adm (ft) at 0000000010EEB430
    DpShMCreate: Initialized eye before amc_rec_adm_fi with len 512 at 0000000010F15770
    DpShMCreate: allocated amc_rec_adm (fi) at 0000000010F15970
    DpShMCreate: Initialized eye before amc_rec_adm_head with len 512 at 0000000010F2E760
    DpShMCreate: allocated amc_rec_adm (head) at 0000000010F2E960
    DpShMCreate: Initialized eye before websocket_adm_ft with len 512 at 0000000010F2E9A0
    DpShMCreate: allocated websocket_adm (ft) at 0000000010F2EBA0
    DpShMCreate: Initialized eye before websocket_adm_head with len 512 at 0000000010F35C60
    DpShMCreate: allocated websocket_adm (head) at 0000000010F35E60
    DpShMCreate: Initialized eye after websocket_adm_head with len 512 at 0000000010F35EA0
    DpShMCreate: initialized 21 eyes
    SEM_COMM_ADM_KEY SemInit o.k.
    SEM_STAT_KEY SemInit o.k.
    ShmProtect( 52, 3 )
    DpMBufCreate allocated 138384 bytes for 500 entries
    DpSBufCreate allocated 41200 bytes for 100 entries
    SEM_MSBUF SemInit o.k.
    DpSysAdmIntInit: initialize sys_adm
    Wed May 02 19:15:00 2040
    DpSysAdmIntInit: initialized sys_adm
    DpSysAdmIntInit: SemInMgt o.k.
    DpSysAdmIntInit: SEM_TM_ADM_KEY SemInit o.k.
    shutdown/max_time: 3600 sec
    RqQQueueCreate: Created queue <DispatcherQueue> in slot 0 (10000) with normal priority
    RqQQueueAcquire: Acquire queue <DispatcherQueue> in slot 0
    DpSysAdmIntInit: created queue 0 (DispatcherQueue)
    RqQQueueCreate: Created queue <GatewayQueue> in slot 1 (10001) with normal priority
    RqQQueueAcquire: Acquire queue <GatewayQueue> in slot 1
    DpSysAdmIntInit: created queue 1 (GatewayQueue)
    RqQQueueCreate: Created queue <IcmanQueue> in slot 2 (10002) with normal priority
    RqQQueueAcquire: Acquire queue <IcmanQueue> in slot 2
    DpSysAdmIntInit: created queue 2 (IcmanQueue)
    RqQQueueCreate: Created queue <StartServiceQueue> in slot 3 (10003) with normal priority
    RqQQueueAcquire: Acquire queue <StartServiceQueue> in slot 3
    DpSysAdmIntInit: created queue 3 (StartServiceQueue)
    RqQQueueCreate: Created queue <DpMonQueue> in slot 4 (10004) with normal priority
    RqQQueueAcquire: Acquire queue <DpMonQueue> in slot 4
    DpSysAdmIntInit: created queue 4 (DpMonQueue)
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_SUB_TYPE_UNDEF) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_SYNC_RFC) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_ASYNC_RFC) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_RFC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_HTTP_NORMAL) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_HTTP_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_HTTP_ITS) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_SMTP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_BATCH) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_BGRFC_SCHEDULER) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_BGRFC_UNIT) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_APC_NORMAL) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_APC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_AMC_STREAMING) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_SERVER_STARTUP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_ENQ) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_UPDATE) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_SUB_TYPE_UNDEF) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_SYNC_RFC) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_ASYNC_RFC) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_RFC_UI) = high priority
    Wed May 02 19:15:00 2040
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_HTTP_NORMAL) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_HTTP_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_HTTP_ITS) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_SMTP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_BATCH) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_BGRFC_SCHEDULER) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_BGRFC_UNIT) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_APC_NORMAL) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_APC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_AMC_STREAMING) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_SERVER_STARTUP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_ENQ) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_UPDATE) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_SUB_TYPE_UNDEF) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_SYNC_RFC) = normal priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_ASYNC_RFC) = normal priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_RFC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_HTTP_NORMAL) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_HTTP_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_HTTP_ITS) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_SMTP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_BATCH) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_BGRFC_SCHEDULER) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_BGRFC_UNIT) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_APC_NORMAL) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_APC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_AMC_STREAMING) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_SERVER_STARTUP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_ENQ) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_UPDATE) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_SUB_TYPE_UNDEF) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_SYNC_RFC) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_ASYNC_RFC) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_RFC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_HTTP_NORMAL) = normal priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_HTTP_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_HTTP_ITS) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_SMTP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_BATCH) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_BGRFC_SCHEDULER) = high priority
    Wed May 02 19:15:00 2040
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_BGRFC_UNIT) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_APC_NORMAL) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_APC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_AMC_STREAMING) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_SERVER_STARTUP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_ENQ) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_UPDATE) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_SUB_TYPE_UNDEF) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_SYNC_RFC) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_ASYNC_RFC) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_RFC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_HTTP_NORMAL) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_HTTP_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_HTTP_ITS) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_SMTP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_BATCH) = low priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_BGRFC_SCHEDULER) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_BGRFC_UNIT) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_APC_NORMAL) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_APC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_AMC_STREAMING) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_SERVER_STARTUP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_ENQ) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_UPDATE) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_SUB_TYPE_UNDEF) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_SYNC_RFC) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_ASYNC_RFC) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_RFC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_HTTP_NORMAL) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_HTTP_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_HTTP_ITS) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_SMTP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_BATCH) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_BGRFC_SCHEDULER) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_BGRFC_UNIT) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_APC_NORMAL) = normal priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_APC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_AMC_STREAMING) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_SERVER_STARTUP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_ENQ) = high priority
    Wed May 02 19:15:00 2040
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_UPDATE) = high priority
    DpSetSchedulerParam: set rdisp/scheduler/timeslice_millis
    DpMaxWpRuntimeExplicitelySet: return -1
    DpMaxQuotaExplicitlySet: return -1
    DpSetSchedulerParam: set rdisp/scheduler/prio_low/max_runtime
    DpMaxWpRuntimeExplicitelySet: return -1
    DpMaxQuotaExplicitlySet: return -1
    DpSetSchedulerParam: set rdisp/scheduler/prio_low/max_quota
    DpMaxQuotaExplicitlySet: return -1
    DpMaxWpRuntimeExplicitelySet: return -1
    DpMaxQuotaExplicitlySet: return -1
    DpSetSchedulerParam: set rdisp/scheduler/prio_normal/max_runtime
    DpMaxWpRuntimeExplicitelySet: return -1
    DpMaxQuotaExplicitlySet: return -1
    DpSetSchedulerParam: set rdisp/scheduler/prio_normal/max_quota
    DpMaxQuotaExplicitlySet: return -1
    DpMaxWpRuntimeExplicitelySet: return -1
    DpMaxQuotaExplicitlySet: return -1
    DpSetSchedulerParam: set rdisp/scheduler/prio_high/max_runtime
    DpMaxWpRuntimeExplicitelySet: return -1
    DpMaxQuotaExplicitlySet: return -1
    DpSetSchedulerParam: set rdisp/scheduler/test/reschedule_always
    DpMaxWpRuntimeExplicitelySet: return -1
    DpMaxQuotaExplicitlySet: return -1
    gui_auto_logout: 0 sec
    plugin_auto_logout: 1800 sec
    rejectSoftcancelInPrivMode: 1
    DpSetCpicStreaming: cpicStreamingActive is 1
    DpVmcReadBasicStateFromProfile: vmc state is DP_VMC_NOT_ACTIVE
    task_limit: 1000
    websocket_deletion_timeout: 0
    websocket_open_message_limit: 500
    websocket_receive_threshold: 10
    resource_limit: 95 %
    DpMaxWpRuntimeExplicitelySet: return -1
    DpMaxQuotaExplicitlySet: return -1
    Scheduler info
    WP info
      #dia    = 10
    Wed May 02 19:15:00 2040
      #btc    = 0
      #standby = 0
      #max    = 21
    General Scheduler info
      preemptionInfo.isActive          = true
      preemptionInfo.timeslice          = 500
      preemptionInfo.checkLoad          = true
    Prio Class High
      maxRuntime[RQ_Q_PRIO_HIGH]    = 600 sec
      maxRuntimeHalf[RQ_Q_PRIO_HIGH] = 300 sec
    Prio Class Normal
      maxRuntime[RQ_Q_PRIO_NORMAL]          = 3600 sec
      maxRuntimeHalf[RQ_Q_PRIO_NORMAL]      = 1800 sec
      maxTicketsForPrio[RQ_Q_PRIO_NORMAL]    = 8
      withPrioTickets[RQ_Q_PRIO_NORMAL]      = true
    Prio Class Low
      maxRuntime[RQ_Q_PRIO_LOW]          = infinite
      maxRuntimeHalf[RQ_Q_PRIO_LOW]      = infinite
      maxTicketsForPrio[RQ_Q_PRIO_LOW]    = 8
      withPrioTickets[RQ_Q_PRIO_LOW]      = true
    Running requests[RQ_Q_PRIO_NORMAL] = 0
    Running requests[RQ_Q_PRIO_LOW] = 0
    DpCommAttachTable: attached comm table (header=0000000010A1FE70/ft=0000000010A1FE80/fi=0000000010D9E740)
    DpSockAttachTable: attached sock table (header=0000000010DD0A50/ft=0000000010DD0A60)
    DpAmcRecTabInit: initialized table for 400 entries
    DpWebSocketTabInit: initialized table for 100 entries
    DpBasicEyesCheck: eyes of group DP-MEM-SEGMENTS o.k. (21 eyes checked)
    DpShMInit: initialize tm_adm
    DpITmSlotClear: cleared T0_U65535
    DpITmSlotClear: cleared T1_U65535
    DpITmSlotClear: cleared T2_U65535
    DpITmSlotClear: cleared T3_U65535
    DpITmSlotClear: cleared T4_U65535
    DpITmSlotClear: cleared T5_U65535
    DpITmSlotClear: cleared T6_U65535
    DpITmSlotClear: cleared T7_U65535
    DpITmSlotClear: cleared T8_U65535
    DpITmSlotClear: cleared T9_U65535
    DpITmSlotClear: cleared T10_U65535
    Wed May 02 19:15:00 2040
    DpITmSlotClear: cleared T11_U65535
    DpITmSlotClear: cleared T12_U65535
    DpITmSlotClear: cleared T13_U65535
    DpITmSlotClear: cleared T14_U65535
    DpITmSlotClear: cleared T15_U65535
    DpITmSlotClear: cleared T16_U65535
    DpITmSlotClear: cleared T17_U65535
    DpITmSlotClear: cleared T18_U65535
    DpITmSlotClear: cleared T19_U65535
    DpITmSlotClear: cleared T20_U65535
    DpITmSlotClear: cleared T21_U65535
    DpITmSlotClear: cleared T22_U65535
    DpITmSlotClear: cleared T23_U65535
    DpITmSlotClear: cleared T24_U65535
    DpITmSlotClear: cleared T25_U65535
    DpITmSlotClear: cleared T26_U65535
    DpITmSlotClear: cleared T27_U65535
    DpITmSlotClear: cleared T28_U65535
    DpITmSlotClear: cleared T29_U65535
    DpITmSlotClear: cleared T30_U65535
    DpITmSlotClear: cleared T31_U65535
    DpITmSlotClear: cleared T32_U65535
    DpITmSlotClear: cleared T33_U65535
    DpITmSlotClear: cleared T34_U65535
    DpITmSlotClear: cleared T35_U65535
    DpITmSlotClear: cleared T36_U65535
    DpITmSlotClear: cleared T37_U65535
    DpITmSlotClear: cleared T38_U65535
    DpITmSlotClear: cleared T39_U65535
    DpITmSlotClear: cleared T40_U65535
    DpITmSlotClear: cleared T41_U65535
    DpITmSlotClear: cleared T42_U65535
    DpITmSlotClear: cleared T43_U65535
    DpITmSlotClear: cleared T44_U65535
    DpITmSlotClear: cleared T45_U65535
    DpITmSlotClear: cleared T46_U65535
    DpITmSlotClear: cleared T47_U65535
    DpITmSlotClear: cleared T48_U65535
    DpITmSlotClear: cleared T49_U65535
    DpITmSlotClear: cleared T50_U65535
    Wed May 02 19:15:00 2040
    DpITmSlotClear: cleared T51_U65535
    DpITmSlotClear: cleared T52_U65535
    DpITmSlotClear: cleared T53_U65535
    DpITmSlotClear: cleared T54_U65535
    DpITmSlotClear: cleared T55_U65535
    DpITmSlotClear: cleared T56_U65535
    DpITmSlotClear: cleared T57_U65535
    DpITmSlotClear: cleared T58_U65535
    DpITmSlotClear: cleared T59_U65535
    DpITmSlotClear: cleared T60_U65535
    DpITmSlotClear: cleared T61_U65535
    DpITmSlotClear: cleared T62_U65535
    DpITmSlotClear: cleared T63_U65535
    DpITmSlotClear: cleared T64_U65535
    DpITmSlotClear: cleared T65_U65535
    DpITmSlotClear: cleared T66_U65535
    DpITmSlotClear: cleared T67_U65535
    DpITmSlotClear: cleared T68_U65535
    DpITmSlotClear: cleared T69_U65535
    DpITmSlotClear: cleared T70_U65535
    DpITmSlotClear: cleared T71_U65535
    DpITmSlotClear: cleared T72_U65535
    DpITmSlotClear: cleared T73_U65535
    DpITmSlotClear: cleared T74_U65535
    DpITmSlotClear: cleared T75_U65535
    DpITmSlotClear: cleared T76_U65535
    DpITmSlotClear: cleared T77_U65535
    DpITmSlotClear: cleared T78_U65535
    DpITmSlotClear: cleared T79_U65535
    DpITmSlotClear: cleared T80_U65535
    DpITmSlotClear: cleared T81_U65535
    DpITmSlotClear: cleared T82_U65535
    DpITmSlotClear: cleared T83_U65535
    DpITmSlotClear: cleared T84_U65535
    DpITmSlotClear: cleared T85_U65535
    DpITmSlotClear: cleared T86_U65535
    DpITmSlotClear: cleared T87_U65535
    DpITmSlotClear: cleared T88_U65535
    DpITmSlotClear: cleared T89_U65535
    DpITmSlotClear: cleared T90_U65535
    Wed May 02 19:15:00 2040
    DpITmSlotClear: cleared T91_U65535
    DpITmSlotClear: cleared T92_U65535
    DpITmSlotClear: cleared T93_U65535
    DpITmSlotClear: cleared T94_U65535
    DpITmSlotClear: cleared T95_U65535
    DpITmSlotClear: cleared T96_U65535
    DpITmSlotClear: cleared T97_U65535
    DpITmSlotClear: cleared T98_U65535
    DpITmSlotClear: cleared T99_U65535
    DpITmSlotClear: cleared T100_U65535
    DpITmSlotClear: cleared T101_U65535
    DpITmSlotClear: cleared T102_U65535
    DpITmSlotClear: cleared T103_U65535
    DpITmSlotClear: cleared T104_U65535
    DpITmSlotClear: cleared T105_U65535
    DpITmSlotClear: cleared T106_U65535
    DpITmSlotClear: cleared T107_U65535
    DpITmSlotClear: cleared T108_U65535
    DpITmSlotClear: cleared T109_U65535
    DpITmSlotClear: cleared T110_U65535
    DpITmSlotClear: cleared T111_U65535
    DpITmSlotClear: cleared T112_U65535
    DpITmSlotClear: cleared T113_U65535
    DpITmSlotClear: cleared T114_U65535
    DpITmSlotClear: cleared T115_U65535
    DpITmSlotClear: cleared T116_U65535
    DpITmSlotClear: cleared T117_U65535
    DpITmSlotClear: cleared T118_U65535
    DpITmSlotClear: cleared T119_U65535
    DpITmSlotClear: cleared T120_U65535
    DpITmSlotClear: cleared T121_U65535
    DpITmSlotClear: cleared T122_U65535
    DpITmSlotClear: cleared T123_U65535
    DpITmSlotClear: cleared T124_U65535
    DpITmSlotClear: cleared T125_U65535
    DpITmSlotClear: cleared T126_U65535
    DpITmSlotClear: cleared T127_U65535
    DpITmSlotClear: cleared T128_U65535
    DpITmSlotClear: cleared T129_U65535
    DpITmSlotClear: cleared T130_U65535
    Wed May 02 19:15:00 2040
    DpITmSlotClear: cleared T131_U65535
    DpITmSlotClear: cleared T132_U65535
    DpITmSlotClear: cleared T133_U65535
    DpITmSlotClear: cleared T134_U65535
    DpITmSlotClear: cleared T135_U65535
    DpITmSlotClear: cleared T136_U65535
    DpITmSlotClear: cleared T137_U65535
    DpITmSlotClear: cleared T138_U65535
    DpITmSlotClear: cleared T139_U65535
    DpITmSlotClear: cleared T140_U65535
    DpITmSlotClear: cleared T141_U65535
    DpITmSlotClear: cleared T142_U65535
    DpITmSlotClear: cleared T143_U65535
    DpITmSlotClear: cleared T144_U65535
    DpITmSlotClear: cleared T145_U65535
    DpITmSlotClear: cleared T146_U65535
    DpITmSlotClear: cleared T147_U65535
    DpITmSlotClear: cleared T148_U65535
    DpITmSlotClear: cleared T149_U65535
    DpITmSlotClear: cleared T150_U65535
    DpITmSlotClear: cleared T151_U65535
    DpITmSlotClear: cleared T152_U65535
    DpITmSlotClear: cleared T153_U65535
    DpITmSlotClear: cleared T154_U65535
    DpITmSlotClear: cleared T155_U65535
    DpITmSlotClear: cleared T156_U65535
    DpITmSlotClear: cleared T157_U65535
    DpITmSlotClear: cleared T158_U65535
    DpITmSlotClear: cleared T159_U65535
    DpITmSlotClear: cleared T160_U65535
    DpITmSlotClear: cleared T161_U65535
    DpITmSlotClear: cleared T162_U65535
    DpITmSlotClear: cleared T163_U65535
    DpITmSlotClear: cleared T164_U65535
    DpITmSlotClear: cleared T165_U65535
    DpITmSlotClear: cleared T166_U65535
    DpITmSlotClear: cleared T167_U65535
    DpITmSlotClear: cleared T168_U65535
    DpITmSlotClear: cleared T169_U65535
    DpITmSlotClear: cleared T170_U65535
    Wed May 02 19:15:00 2040
    DpITmSlotClear: cleared T171_U65535
    DpITmSlotClear: cleared T172_U65535
    DpITmSlotClear: cleared T173_U65535
    DpITmSlotClear: cleared T174_U65535
    DpITmSlotClear: cleared T175_U65535
    DpITmSlotClear: cleared T176_U65535
    DpITmSlotClear: cleared T177_U65535
    DpITmSlotClear: cleared T178_U65535
    DpITmSlotClear: cleared T179_U65535
    DpITmSlotClear: cleared T180_U65535
    DpITmSlotClear: cleared T181_U65535
    DpITmSlotClear: cleared T182_U65535
    DpITmSlotClear: cleared T183_U65535
    DpITmSlotClear: cleared T184_U65535
    DpITmSlotClear: cleared T185_U65535
    DpITmSlotClear: cleared T186_U65535
    DpITmSlotClear: cleared T187_U65535
    DpITmSlotClear: cleared T188_U65535
    DpITmSlotClear: cleared T189_U65535
    DpITmSlotClear: cleared T190_U65535
    DpITmSlotClear: cleared T191_U65535
    DpITmSlotClear: cleared T192_U65535
    DpITmSlotClear: cleared T193_U65535
    DpITmSlotClear: cleared T194_U65535
    DpITmSlotClear: cleared T195_U65535
    DpITmSlotClear: cleared T196_U65535
    DpITmSlotClear: cleared T197_U65535
    DpITmSlotClear: cleared T198_U65535
    DpITmSlotClear: cleared T199_U65535
    DpITmSlotClear: cleared T200_U65535
    DpShMInit: 200 elems in tmadm_free_list
    DpShMInit: initialize wp_adm
    RqQQueueCreate: Created queue <W0> in slot 5 (10005) with normal priority
    RqQQueueAcquire: Acquire queue <W0> in slot 5
    RqQQueueCreate: Created queue <W1> in slot 6 (10006) with normal priority
    RqQQueueAcquire: Acquire queue <W1> in slot 6
    RqQQueueCreate: Created queue <W2> in slot 7 (10007) with normal priority
    RqQQueueAcquire: Acquire queue <W2> in slot 7
    RqQQueueCreate: Created queue <W3> in slot 8 (10008) with normal priority
    RqQQueueAcquire: Acquire queue <W3> in slot 8
    Wed May 02 19:15:00 2040
    RqQQueueCreate: Created queue <W4> in slot 9 (10009) with normal priority
    RqQQueueAcquire: Acquire queue <W4> in slot 9
    RqQQueueCreate: Created queue <W5> in slot 10 (10010) with normal priority
    RqQQueueAcquire: Acquire queue <W5> in slot 10
    RqQQueueCreate: Created queue <W6> in slot 11 (10011) with normal priority
    RqQQueueAcquire: Acquire queue <W6> in slot 11
    RqQQueueCreate: Created queue <W7> in slot 12 (10012) with normal priority
    RqQQueueAcquire: Acquire queue <W7> in slot 12
    RqQQueueCreate: Created queue <W8> in slot 13 (10013) with normal priority
    RqQQueueAcquire: Acquire queue <W8> in slot 13
    RqQQueueCreate: Created queue <W9> in slot 14 (10014) with normal priority
    RqQQueueAcquire: Acquire queue <W9> in slot 14
    RqQQueueCreate: Created queue <W10> in slot 15 (10015) with normal priority
    RqQQueueAcquire: Acquire queue <W10> in slot 15
    RqQQueueCreate: Created queue <W11> in slot 16 (10016) with normal priority
    RqQQueueAcquire: Acquire queue <W11> in slot 16
    RqQQueueCreate: Created queue <W12> in slot 17 (10017) with normal priority
    RqQQueueAcquire: Acquire queue <W12> in slot 17
    RqQQueueCreate: Created queue <W13> in slot 18 (10018) with normal priority
    RqQQueueAcquire: Acquire queue <W13> in slot 18
    RqQQueueCreate: Created queue <W14> in slot 19 (10019) with normal priority
    RqQQueueAcquire: Acquire queue <W14> in slot 19
    RqQQueueCreate: Created queue <W15> in slot 20 (10020) with normal priority
    RqQQueueAcquire: Acquire queue <W15> in slot 20
    RqQQueueCreate: Created queue <W16> in slot 21 (10021) with normal priority
    RqQQueueAcquire: Acquire queue <W16> in slot 21
    RqQQueueCreate: Created queue <W17> in slot 22 (10022) with normal priority
    RqQQueueAcquire: Acquire queue <W17> in slot 22
    RqQQueueCreate: Created queue <W18> in slot 23 (10023) with normal priority
    RqQQueueAcquire: Acquire queue <W18> in slot 23
    RqQQueueCreate: Created queue <W19> in slot 24 (10024) with normal priority
    RqQQueueAcquire: Acquire queue <W19> in slot 24
    RqQQueueCreate: Created queue <W20> in slot 25 (10025) with normal priority
    RqQQueueAcquire: Acquire queue <W20> in slot 25
    MBUF state OFF
    MBUF opmode USE
    DpMBufClearGlobalHighLoadCounter: reset global load flags
    DpMBufInit o.k.
    DpCommInitTable: init table for 1000 entries
    DpSockInitTable: init table for 1000 entries
    Wed May 02 19:15:00 2040
    dp-shmem init o.k.
    disp+work.EXE 7420.101.23.59699 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    ntdll.dll 6.1.7601.17514 loaded from C:\Windows\SYSTEM32\.
    kernel32.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    KERNELBASE.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    dw_gui.dll 7420.101.23.59699 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    librender.dll 7420.101.23.59699 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    dw_stl.dll 7420.101.23.59699 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    MSVCP100.dll 10.0.40219.325 loaded from C:\Windows\system32\.
    MSVCR100.dll 10.0.40219.325 loaded from C:\Windows\system32\.
    USER32.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    GDI32.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    LPK.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    USP10.dll 1.626.7601.17514 loaded from C:\Windows\system32\.
    msvcrt.dll 7.0.7600.16385 loaded from C:\Windows\system32\.
    dw_xml.dll 7420.101.23.59699 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    dw_xtc.dll 7420.101.23.59699 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    dw_rndrt.dll 7420.101.23.59699 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    dw_abp.dll 7420.101.23.59699 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    libregex.dll 7420.101.23.59699 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    ADVAPI32.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    sechost.dll 6.1.7600.16385 loaded from C:\Windows\SYSTEM32\.
    RPCRT4.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    ole32.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    OLEAUT32.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    WINSPOOL.DRV 6.1.7601.17514 loaded from C:\Windows\system32\.
    WS2_32.dll 6.1.7601.17514 loaded from C:\Windows\system32\. SAP minimum version is 4.0.1381.6.
    NSI.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    IPHLPAPI.DLL 6.1.7601.17514 loaded from C:\Windows\system32\.
    WINNSI.DLL 6.1.7600.16385 loaded from C:\Windows\system32\.
    NETAPI32.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    netutils.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    srvcli.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    wkscli.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    SAMCLI.DLL 6.1.7601.17514 loaded from C:\Windows\system32\.
    SHELL32.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    SHLWAPI.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    dbghelp.dll 6.2.9200.20512 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    VERSION.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    MPR.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    Wed May 02 19:15:00 2040
    SETUPAPI.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    CFGMGR32.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    DEVOBJ.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    icule51.dll 51.2.0.0 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    icuuc51.dll 51.2.0.0 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    icudt51.dll 51.2.0.0 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    IMM32.DLL 6.1.7600.16385 loaded from C:\Windows\system32\.
    MSCTF.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    icuuc50.dll 50.1.0.0 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    icudt50.dll 50.1.0.0 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    icuin50.dll 50.1.0.0 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    NLAapi.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    napinsp.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    pnrpnsp.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    mswsock.dll 6.1.7601.17514 loaded from C:\Windows\System32\.
    DNSAPI.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    winrnr.dll 6.1.7600.16385 loaded from C:\Windows\System32\.
    cscapi.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    wshtcpip.dll 6.1.7600.16385 loaded from C:\Windows\System32\.
    wship6.dll 6.1.7600.16385 loaded from C:\Windows\System32\.
    rasadhlp.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    fwpuclnt.dll 6.1.7600.16385 loaded from C:\Windows\System32\.
    ntmarta.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    WLDAP32.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    SspiCli.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    psapi.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    disp service: sapdp00
    sapinit ()
    EM: em/proc_max_size_MB = 0
    MmxRegisterRscAdm 17 000000014130F8B0 000000014130FCD0
    EmIAllocMmResourcePROC: size=1048576 total=-1 ptr=0000000008C20040
    MmxInit( 0000000008C20050 1048576 17 0000000000000000 0 ) 16 32 64 64
    MmxRegisterRscAdm 18 000000014130F850 000000014130F890
    EM: Initializing PROC storage: quota=0 use_stdheap=0
    sapinit: allocated ZCSA at 0000000008C22D70, len=1992, RSTG_CL_PERM
    sapinit: allocated ZTTA and RSTG at 0000000008C235C0, len=1608, RSTG_CL_PERM
    sapinit: allocated temporary DYNPRO at 0000000000000000, len=3200000, RSTG_CL_PERM
    sapinit: allocated CUA at 0000000008C23C90, len=8, RSTG_CL_PERM
    sapinit o.k.
    DpEmInit()
    Wed May 02 19:15:00 2040
    EmGetMaxGlobalSizeMB: tbiSize = 693
    EmGetMaxGlobalSizeMB: maxSize = 1095
    EmInit () Lock method = 2
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    EsGetAdmSize( 22 )
    EsGetAdmSize( 42 ) = 26425536
    ShmProtect( 51, 3 )
    EmInit: initializing process shared data.
    EmInit: initializing process private data.
    EmILckRecover: checking for Mutex to recover ...
    <ES> client 21 initializing ....
    EsInit(000000001D71A8B0, 26444192, 21, 4096KB, 5734MB, 12287MB, 5734MB, 0, ECC)
    <ES> EsILock: use Semphore 33 for locking
    <ES> initializing shared memory....
    <ES> block size is 4096 kByte.
    <ES> Info: em/initial_size_MB( 5734MB) not multiple of em/blocksize_KB( 4096KB)
    <ES> Info: em/initial_size_MB rounded up to 5736MB
    Sem2Init: LockObjPtr = 000000001F047ED0
    Sem2Init: LockObjPtr = 000000001F047F30
    Sem2Init: LockObjPtr = 000000001F047F90
    Sem2Init: LockObjPtr = 000000001F047FF0
    Sem2Init: LockObjPtr = 000000001F048050
    Sem2Init: LockObjPtr = 000000001F0480B0
    Sem2Init: LockObjPtr = 000000001F048110
    Sem2Init: LockObjPtr = 000000001F048170
    Sem2Init: LockObjPtr = 000000001F0481D0
    Sem2Init: LockObjPtr = 000000001F048230
    Sem2Init: LockObjPtr = 000000001F048290
    Sem2Init: LockObjPtr = 000000001F0482F0
    Sem2Init: LockObjPtr = 000000001F048350
    Sem2Init: LockObjPtr = 000000001F0483B0
    Sem2Init: LockObjPtr = 000000001F048410
    Sem2Init: LockObjPtr = 000000001F048470
    Sem2Init: LockObjPtr = 000000001F0484D0
    Sem2Init: LockObjPtr = 000000001F048530
    Sem2Init: LockObjPtr = 000000001F048590
    Sem2Init: LockObjPtr = 000000001F0485F0
    Sem2Init: LockObjPtr = 000000001F048650
    Sem2Init: LockObjPtr = 000000001F0486B0
    Wed May 02 19:15:00 2040
    Sem2Init: LockObjPtr = 000000001F048710
    Sem2Init: LockObjPtr = 000000001F048770
    Sem2Init: LockObjPtr = 000000001F0487D0
    Sem2Init: LockObjPtr = 000000001F048830
    Sem2Init: LockObjPtr = 000000001F048890
    Sem2Init: LockObjPtr = 000000001F0488F0
    Sem2Init: LockObjPtr = 000000001F048950
    Sem2Init: LockObjPtr = 000000001F0489B0
    Sem2Init: LockObjPtr = 000000001F048A10
    Sem2Init: LockObjPtr = 000000001F048A70
    Sem2Init: LockObjPtr = 000000001F048AD0
    Sem2Init: LockObjPtr = 000000001F048B30
    Sem2Init: LockObjPtr = 000000001F048B90
    Sem2Init: LockObjPtr = 000000001F048BF0
    Sem2Init: LockObjPtr = 000000001F048C50
    Sem2Init: LockObjPtr = 000000001F048CB0
    Sem2Init: LockObjPtr = 000000001F048D10
    Sem2Init: LockObjPtr = 000000001F048D70
    Sem2Init: LockObjPtr = 000000001F048DD0
    Sem2Init: LockObjPtr = 000000001F048E30
    Sem2Init: LockObjPtr = 000000001F048E90
    Sem2Init: LockObjPtr = 000000001F048EF0
    Sem2Init: LockObjPtr = 000000001F048F50
    Sem2Init: LockObjPtr = 000000001F048FB0
    Sem2Init: LockObjPtr = 000000001F049010
    Sem2Init: LockObjPtr = 000000001F049070
    Sem2Init: LockObjPtr = 000000001F0490D0
    Sem2Init: LockObjPtr = 000000001F049130
    Sem2Init: LockObjPtr = 000000001F049190
    Sem2Init: LockObjPtr = 000000001F0491F0
    Sem2Init: LockObjPtr = 000000001F049250
    Sem2Init: LockObjPtr = 000000001F0492B0
    Sem2Init: LockObjPtr = 000000001F049310
    Sem2Init: LockObjPtr = 000000001F049370
    Sem2Init: LockObjPtr = 000000001F0493D0
    Sem2Init: LockObjPtr = 000000001F049430
    Sem2Init: LockObjPtr = 000000001F049490
    Sem2Init: LockObjPtr = 000000001F0494F0
    Sem2Init: LockObjPtr = 000000001F049550
    Sem2Init: LockObjPtr = 000000001F0495B0
    Wed May 02 19:15:00 2040
    Sem2Init: LockObjPtr = 000000001F049610
    Sem2Init: LockObjPtr = 000000001F049670
    Sem2Init: LockObjPtr = 000000001F0496D0
    Sem2Init: LockObjPtr = 000000001F049730
    Sem2Init: LockObjPtr = 000000001F049790
    Sem2Init: LockObjPtr = 000000001F0497F0
    Sem2Init: LockObjPtr = 000000001F049850
    Sem2Init: LockObjPtr = 000000001F0498B0
    Sem2Init: LockObjPtr = 000000001F049910
    Sem2Init: LockObjPtr = 000000001F049970
    Sem2Init: LockObjPtr = 000000001F0499D0
    Sem2Init: LockObjPtr = 000000001F049A30
    Sem2Init: LockObjPtr = 000000001F049A90
    Sem2Init: LockObjPtr = 000000001F049AF0
    Sem2Init: LockObjPtr = 000000001F049B50
    Sem2Init: LockObjPtr = 000000001F049BB0
    Sem2Init: LockObjPtr = 000000001F049C10
    Sem2Init: LockObjPtr = 000000001F049C70
    Sem2Init: LockObjPtr = 000000001F049CD0
    Sem2Init: LockObjPtr = 000000001F049D30
    Sem2Init: LockObjPtr = 000000001F049D90
    Sem2Init: LockObjPtr = 000000001F049DF0
    Sem2Init: LockObjPtr = 000000001F049E50
    Sem2Init: LockObjPtr = 000000001F049EB0
    Sem2Init: LockObjPtr = 000000001F049F10
    Sem2Init: LockObjPtr = 000000001F049F70
    Sem2Init: LockObjPtr = 000000001F049FD0
    Sem2Init: LockObjPtr = 000000001F04A030
    Sem2Init: LockObjPtr = 000000001F04A090
    Sem2Init: LockObjPtr = 000000001F04A0F0
    Sem2Init: LockObjPtr = 000000001F04A150
    Sem2Init: LockObjPtr = 000000001F04A1B0
    Sem2Init: LockObjPtr = 000000001F04A210
    Sem2Init: LockObjPtr = 000000001F04A270
    Sem2Init: LockObjPtr = 000000001F04A2D0
    Sem2Init: LockObjPtr = 000000001F04A330
    Sem2Init: LockObjPtr = 000000001F04A390
    Sem2Init: LockObjPtr = 000000001F04A3F0
    Sem2Init: LockObjPtr = 000000001F04A450
    Sem2Init: LockObjPtr = 000000001F04A4B0
    Wed May 02 19:15:00 2040
    Sem2Init: LockObjPtr = 000000001F04A510
    Sem2Init: LockObjPtr = 000000001F04A570
    Sem2Init: LockObjPtr = 000000001F04A5D0
    Sem2Init: LockObjPtr = 000000001F04A630
    Sem2Init: LockObjPtr = 000000001F04A690
    Sem2Init: LockObjPtr = 000000001F04A6F0
    Sem2Init: LockObjPtr = 000000001F04A750
    Sem2Init: LockObjPtr = 000000001F04A7B0
    Sem2Init: LockObjPtr = 000000001F04A810
    Sem2Init: LockObjPtr = 000000001F04A870
    Sem2Init: LockObjPtr = 000000001F04A8D0
    Sem2Init: LockObjPtr = 000000001F04A930
    Sem2Init: LockObjPtr = 000000001F04A990
    Sem2Init: LockObjPtr = 000000001F04A9F0
    Sem2Init: LockObjPtr = 000000001F04AA50
    Sem2Init: LockObjPtr = 000000001F04AAB0
    Sem2Init: LockObjPtr = 000000001F04AB10
    Sem2Init: LockObjPtr = 000000001F04AB70
    Sem2Init: LockObjPtr = 000000001F04ABD0
    Sem2Init: LockObjPtr = 000000001F04AC30
    Sem2Init: LockObjPtr = 000000001F04AC90
    Sem2Init: LockObjPtr = 000000001F04ACF0
    Sem2Init: LockObjPtr = 000000001F04AD50
    Sem2Init: LockObjPtr = 000000001F04ADB0
    Sem2Init: LockObjPtr = 000000001F04AE10
    Sem2Init: LockObjPtr = 000000001F04AE70
    Sem2Init: LockObjPtr = 000000001F04AED0
    Sem2Init: LockObjPtr = 000000001F04AF30
    Sem2Init: LockObjPtr = 000000001F04AF90
    Sem2Init: LockObjPtr = 000000001F04AFF0
    Sem2Init: LockObjPtr = 000000001F04B050
    Sem2Init: LockObjPtr = 000000001F04B0B0
    Sem2Init: LockObjPtr = 000000001F04B110
    Sem2Init: LockObjPtr = 000000001F04B170
    Sem2Init: LockObjPtr = 000000001F04B1D0
    Sem2Init: LockObjPtr = 000000001F04B230
    Sem2Init: LockObjPtr = 000000001F04B290
    Sem2Init: LockObjPtr = 000000001F04B2F0
    Sem2Init: LockObjPtr = 000000001F04B350
    Sem2Init: LockObjPtr = 000000001F04B3B0
    Wed May 02 19:15:00 2040
    Sem2Init: LockObjPtr = 000000001F04B410
    Sem2Init: LockObjPtr = 000000001F04B470
    Sem2Init: LockObjPtr = 000000001F04B4D0
    Sem2Init: LockObjPtr = 000000001F04B530
    Sem2Init: LockObjPtr = 000000001F04B590
    Sem2Init: LockObjPtr = 000000001F04B5F0
    Sem2Init: LockObjPtr = 000000001F04B650
    Sem2Init: LockObjPtr = 000000001F04B6B0
    Sem2Init: LockObjPtr = 000000001F04B710
    Sem2Init: LockObjPtr = 000000001F04B770
    Sem2Init: LockObjPtr = 000000001F04B7D0
    Sem2Init: LockObjPtr = 000000001F04B830
    Sem2Init: LockObjPtr = 000000001F04B890
    Sem2Init: LockObjPtr = 000000001F04B8F0
    Sem2Init: LockObjPtr = 000000001F04B950
    Sem2Init: LockObjPtr = 000000001F04B9B0
    Sem2Init: LockObjPtr = 000000001F04BA10
    Sem2Init: LockObjPtr = 000000001F04BA70
    Sem2Init: LockObjPtr = 000000001F04BAD0
    Sem2Init: LockObjPtr = 000000001F04BB30
    Sem2Init: LockObjPtr = 000000001F04BB90
    Sem2Init: LockObjPtr = 000000001F04BBF0
    Sem2Init: LockObjPtr = 000000001F04BC50
    Sem2Init: LockObjPtr = 000000001F04BCB0
    Sem2Init: LockObjPtr = 000000001F04BD10
    Sem2Init: LockObjPtr = 000000001F04BD70
    Sem2Init: LockObjPtr = 000000001F04BDD0
    Sem2Init: LockObjPtr = 000000001F04BE30
    Sem2Init: LockObjPtr = 000000001F04BE90
    Sem2Init: LockObjPtr = 000000001F04BEF0
    Sem2Init: LockObjPtr = 000000001F04BF50
    Sem2Init: LockObjPtr = 000000001F04BFB0
    Sem2Init: LockObjPtr = 000000001F04C010
    Sem2Init: LockObjPtr = 000000001F04C070
    Sem2Init: LockObjPtr = 000000001F04C0D0
    Sem2Init: LockObjPtr = 000000001F04C130
    Sem2Init: LockObjPtr = 000000001F04C190
    Sem2Init: LockObjPtr = 000000001F04C1F0
    Sem2Init: LockObjPtr = 000000001F04C250
    Sem2Init: LockObjPtr = 000000001F04C2B0
    Wed May 02 19:15:00 2040
    Sem2Init: LockObjPtr = 000000001F04C310
    Sem2Init: LockObjPtr = 000000001F04C370
    Sem2Init: LockObjPtr = 000000001F04C3D0
    Sem2Init: LockObjPtr = 000000001F04C430
    Sem2Init: LockObjPtr = 000000001F04C490
    Sem2Init: LockObjPtr = 000000001F04C4F0
    Sem2Init: LockObjPtr = 000000001F04C550
    Sem2Init: LockObjPtr = 000000001F04C5B0
    Sem2Init: LockObjPtr = 000000001F04C610
    Sem2Init: LockObjPtr = 000000001F04C670
    Sem2Init: LockObjPtr = 000000001F04C6D0
    Sem2Init: LockObjPtr = 000000001F04C730
    Sem2Init: LockObjPtr = 000000001F04C790
    Sem2Init: LockObjPtr = 000000001F04C7F0
    Sem2Init: LockObjPtr = 000000001F04C850
    Sem2Init: LockObjPtr = 000000001F04C8B0
    Sem2Init: LockObjPtr = 000000001F04C910
    Sem2Init: LockObjPtr = 000000001F04C970
    Sem2Init: LockObjPtr = 000000001F04C9D0
    Sem2Init: LockObjPtr = 000000001F04CA30
    Sem2Init: LockObjPtr = 000000001F04CA90
    Sem2Init: LockObjPtr = 000000001F04CAF0
    Sem2Init: LockObjPtr = 000000001F04CB50
    Sem2Init: LockObjPtr = 000000001F04CBB0
    Sem2Init: LockObjPtr = 000000001F04CC10
    Sem2Init: LockObjPtr = 000000001F04CC70
    Sem2Init: LockObjPtr = 000000001F04CCD0
    Sem2Init: LockObjPtr = 000000001F04CD30
    Sem2Init: LockObjPtr = 000000001F04CD90
    Sem2Init: LockObjPtr = 000000001F04CDF0
    Sem2Init: LockObjPtr = 000000001F04CE50
    Sem2Init: LockObjPtr = 000000001F04CEB0
    Sem2Init: LockObjPtr = 000000001F04CF10
    Sem2Init: LockObjPtr = 000000001F04CF70
    Sem2Init: LockObjPtr = 000000001F04CFD0
    Sem2Init: LockObjPtr = 000000001F04D030
    Sem2Init: LockObjPtr = 000000001F04D090
    Sem2Init: LockObjPtr = 000000001F04D0F0
    Sem2Init: LockObjPtr = 000000001F04D150
    Sem2Init: LockObjPtr = 000000001F04D1B0
    Wed May 02 19:15:00 2040
    Sem2Init: LockObjPtr = 000000001F04D210
    Sem2Init: LockObjPtr = 000000001F04D270
    Sem2Init: LockObjPtr = 000000001F04D2D0
    Sem2Init: LockObjPtr = 000000001F04D330
    Sem2Init: LockObjPtr = 000000001F04D390
    Sem2Init: LockObjPtr = 000000001F04D3F0
    Sem2Init: LockObjPtr = 000000001F04D450
    Sem2Init: LockObjPtr = 000000001F04D4B0
    Sem2Init: LockObjPtr = 000000001F04D510
    Sem2Init: LockObjPtr = 000000001F04D570
    Sem2Init: LockObjPtr = 000000001F04D5D0
    Sem2Init: LockObjPtr = 000000001F04D630
    Sem2Init: LockObjPtr = 000000001F04D690
    Sem2Init: LockObjPtr = 000000001F04D6F0
    Sem2Init: LockObjPtr = 000000001F04D750
    Sem2Init: LockObjPtr = 000000001F04D7B0
    Sem2Init: LockObjPtr = 000000001F04D810
    Sem2Init: LockObjPtr = 000000001F04D870
    Sem2Init: LockObjPtr = 000000001F04D8D0
    Sem2Init: LockObjPtr = 000000001F04D930
    Sem2Init: LockObjPtr = 000000001F04D990
    Sem2Init: LockObjPtr = 000000001F04D9F0
    Sem2Init: LockObjPtr = 000000001F04DA50
    Sem2Init: LockObjPtr = 000000001F04DAB0
    Sem2Init: LockObjPtr = 000000001F04DB10
    Sem2Init: LockObjPtr = 000000001F04DB70
    Sem2Init: LockObjPtr = 000000001F04DBD0
    Sem2Init: LockObjPtr = 000000001F04DC30
    Sem2Init: LockObjPtr = 000000001F04DC90
    Sem2Init: LockObjPtr = 000000001F04DCF0
    Sem2Init: LockObjPtr = 000000001F04DD50
    Sem2Init: LockObjPtr = 000000001F04DDB0
    Sem2Init: LockObjPtr = 000000001F04DE10
    Sem2Init: LockObjPtr = 000000001F04DE70
    STD_EsInit: FreelistCompactor active
    <ES> Info: disclaim threshold = 0 MB
    <ES> Info: disclaim coasting/alloc = 300 s
    <ES> Info: disclaim coasting/free = 0 s
    <ES> Info: blockdisclaimsize_KB = 0 KB
    Found implementation view
    Wed May 02 19:15:00 2040
    Using implementation view
    <EsNT> EsIOsInit
    <EsNT> ExecuteProtection is supported
    <EsNT> Using memory model view.
    <EsNT> EsIOsInit: em/initial_size_MB=5736MB
    <EsNT> EsIOsInit: em/address_space_MB=5734MB
    <EsNT> Memory Reset disabled as NT default
    <EsNT> Address Space set to 5734
    <EsNT> EsILocMthSlotsAttach
    <EsNT> CreateFileMapping name=Global\ES_SEG_00_000 ,size=2044 MB
    <EsNT> CreateFileMapping name=Global\ES_SEG_00_001 ,size=2044 MB
    <EsNT> CreateFileMapping name=Global\ES_SEG_00_002 ,size=1648 MB
    <EsNT> MemoryTotalPhys      8388144 KB
    <EsNT> MemoryTotalVirtual  8589934464 KB
    <EsNT> MemoryAvailVirtual  8588333064 KB
    <EsNT> Static              00000001417896C0
    <EsNT> Start Map Area      000007DE99A00000
    <ES> 1433 blocks reserved for free list.
    ES initialized.
    EmInit2: egSegSizeEsBlocks number = 274
    EgInit: esBlkSz = 4194304, maxEsBlocks = 274, segSz = (1149239296 EG_MAX_SEGSIZE = 68719476735
    EsILock(LockFreeList) unexpected LastLocker 0 LockCount 0
    <EsNT> EsISearchAlloc Blocks = 274
    <EsNT> EsIViewInitSlots Blocks = 274, FromTop = 1
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 1
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 2
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 3
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 4
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 5
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 6
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 7
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 8
    Wed May 02 19:15:00 2040
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 9
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 10
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 11
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 12
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 13
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 14
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 15
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 16
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 17
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 18
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 19
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 20
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 21
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 22
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 23
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 24
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 25
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 26
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 27
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 28
    Wed May 02 19:15:00 2040
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 29
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 30
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 31
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 32
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 33
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 34
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 35
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 36
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 37
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 38
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 39
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 40
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 41
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 42
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    &l

    Hi Experts,
    I spent all weekend installing again IDES and the result was the same. I could find one possible error:
    DpSetAvoidTraceInSignalHandler: 0 -> 1
    DpCommonParamInit: rdisp/core_file_size = default --> no change
    NiSrvLGetServNo: got service name 'sapdp00' from operating system
    NiIGetServNo: servicename 'sapdp00' = port 3200
    NiSrvLGetServNo: got service name 'sapgw00' from operating system
    NiIGetServNo: servicename 'sapgw00' = port 3300
    NiMyHostName: hostname = 'SAPIDESECC'
    NiHLGetNodeAddr: got hostname 'SAPIDESECC' from operating system
    NiIGetNodeAddr: hostname 'SAPIDESECC' = addr 10.211.55.10
    NiHLGetHostName: found address 10.211.55.10 in cache
    NiIGetHostName: addr 10.211.55.10 = hostname 'SAPIDESECC' (fq)
    Fri May 04 02:36:50 2040
    NiHLGetNodeAddr: hostname 'www.doesnotexist0196.qqq.nxst' not found by operating system
    *** WARNING => DpNetCheck: NiHostToAddr(www.doesnotexist0196.qqq.nxst) took 24 seconds
    Fri May 04 02:37:11 2040
    NiHLGetHostName: address 1.0.0.1 not found by operating system
    *** WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 21 seconds
    NiSrvLGetServNo: got service name 'http' from operating system
    NiIGetServNo: servicename 'http' = port 80
    NiSrvLGetServName: port 8080 not found by operating system
    NiSrvLGetServName: port 64555 not found by operating system
    NiSrvLGetServNo: service name 'sapdp9988' not found by operating system
    ***LOG GZZ=> 2 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5079]
    SigIRegisterRoutine: handler for signal 16 installed (DpTrcOnOff, flag 0)
    SigIRegisterRoutine: handler for signal 17 installed (DpTrcOnOff, flag 0)
    SigIRegisterRoutine: alarm handler installed (DpSigAlrm)
    SigIRegisterRoutine: handler for signal SIGINT installed (DpSigInt, flag 0)
    SigIRegisterRoutine: handler for signal SIGTERM installed (DpSigInt, flag 0)
    SigIRegisterRoutine: handler for signal 3 installed (DpSigQuit, flag 0)
    MtxInit: 30000 0 0
    Do you think this may be the main problem??
    Best Regards.
    David Cortes

  • Cannot connect to SERVER. Login failed for user 'DOMAIN\user'. (Microsoft SQL Server, Error 18456) - SQL Server 2012 on Windows Server 2008 R2

    I've seen multiple blogs and forums with similar problems and SQL 2012 or 2008. But no solutions that work for me.
    I have installed SQL Server in mixed mode (SQL and Windows authentication). I can create new Login accounts in either mode. However, I cannot get an AD security group Login account to work. I am trying to add group 'DOMAIN\Domain Admins' or 'SERVER\Administrators'
    as a Login so that any of the domain's administrator accounts can open SQL Server Management Studio and act as an 'sa' account on this server.
    I have deleted the SQL account 'DOMAIN\Domain Admins'.
    I have restarted SQL.
    I have restarted the Win2K8r2 server.
    I have launched SSMS as Administrator from the desktop of SERVER.
    I have launched SSMS as another user (and used 'DOMAIN\user' to lauch it) from the desktop of SERVER.
    I can create a login account named 'DOMAIN\user' (who happens to be a member of the 'DOMAIN\Domain Admins' group) and give this account 'sa' security, and when I do that, this account works as expected...
    How do I add a security group as a Login account and give all members of that group the ability to be an 'sa' account?

    Hi geoperkins,
    Are you getting the following error message?
    Error: 18456, Severity: 14, State: 11
    Login failed for user <Domain\user>. Reason: Token-based server access validation failed with an infrastructure error.
    If that is the case, the issue could be due to that the Windows login has no profile or that permissions could not be checked due to UAC. Please disable UAC firstly and check if it is successful to log in SQL Server.
    Another reason could be that the domain controller could not be reached. You may need to resort to re-creating the login. Create a new group in AD, add users to the new group, then add the group to the local admin group and create login for the group in SQL
    Server.
    There is a connect item describing similar issue for your reference.
    https://connect.microsoft.com/SQLServer/feedback/details/680705/cant-login-to-sql-using-windows-authentication-when-user-is-in-a-domain-security-group
    For more details about above error, please review the following blog.
    http://sqlblogcasts.com/blogs/simons/archive/2011/02/01/solution-login-failed-for-user-x-reason-token-based-server-access-validation-failed-and-error-18456.aspx
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • Java for PI 7.1 EHP1 in Windows and SQL Server 2008

    Hi Gurus
    I try to install PI 7.1 EHP1 in Windows and SQL Server 2008. The questions is :
    What version of java is the correct for this installation???
    And where i can download it??
    Thanks and advance!!!

    Hi Aaron,
    The version for PI 7.1 is 1.5, instead of the 1.4.2 of 7.0/3.0.
    Anyway, for VM settings, you should refer to SAP JVM, which
    is used for the PI 7.11.
    Hope it helps!
    Regards,
    Caio Cagnani

  • JDBC driver for SQL Server 2000 with windows authentication

    Does anyone know of a JDBC driver for SQL Server 2000 that supports Windows Authentication, that is that a username and password does not need to be supplied when connecting to the database.

    You can use the JDBC-ODBC-Bridge.
    ODBC provides windows-authentication.
    Hope it helps.
    Freddy

  • How to disable the archive logs in SAP IDES(Windows) using SQL Server

    can any body tell us How to disable the archive logs in SAP IDES(Windows 2003) using SQL Server 2000.SP4.?

    Hi,
    Unfortunately, SQL Server does not have the option to turn off transaction logging. You can set the recovery mode to SIMPLE, instead of FULL. This will result in the transaction log being truncated on checkpoint.
    http://support.microsoft.com/kb/873235 - check this microsoft article
    This will help in reduction of the size of the transcation log.
    - Regards, Dibya

  • ODBC errors for Oracle Migration Workbench and SQL Server 2000 on Windows

    Hi all-
    I setup a new ODBC connection for the Oracle 10g Migration Workbench to MS SQL Server 2000 on Windows XP and keep getting the following errors when I try to
    either test the new ODBC connection to MS SQL Server 2000 for use with the Oracle Migration Workbench tool. Goal is to fix these errors so that I can migrate our test SQL Server 2000 databases to Oracle 10g.
    Current configuration
    - Oracle 10.1 Migration Workbench
    - Oracle 10g Database (target)
    - MS SQL Server 2000 (source database)
    -Windows XP
    -ODBC 3.85.1117 driver for Windows XP with SQL Server and Oracle
    Errors:
    I. When I test the ODBC connection:
    Microsoft SQL Server ODBC Driver Version 03.85.1117
    Running connectivity tests...
    Attempting connection
    [Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]Specified SQL server not found.
    TESTS FAILED!
    Now here is what has me totally confused:
    I can use the command line ISQL to access the database on the server and IP is all correct and port is available. So I can access the SQL Server database fine it is when I try to setup ODBC that it gives me problems.
    Any tips how to get this ODBC working?
    Thanks
    Ben Prusinski

    1. Jing Jin. If you had READ the post you would have seen that installing later versions is NOT an option.
    2. Not supported does NOT mean does NOT work, as Balmukund pointed out in the referenced thread.  The site that this databases supports is using ASP which is also NOT supported by Microsoft.  As it turns out Balmukund's solution actually turns
    out to be the correct solution.  I installed SS2K and its Service pack 4 on the machine last night.  Good answer Balmukund. as we say in the Navy, "BRAVO ZULU!!"  which means "WELL DONE!!
    3. Tom Li I just posted the question less than 48 hours ago.  My last post was less than 24 hours ago.  I think I have the right to be given the opportunity to determine whether a reply is the answer or not. I understand you don't like unanswered
    posts sitting around for weeks, months or years. (I don't like it either as I have a few that are still unanswered after several years.)  But you should not be showing replies as answers before I even get a chance to see them, much less try them out. 
    You should also not be showing replies as answers which don't address the criteria of the question.  I specifically stated that I had to install SS2K.  I went on to state, "And before anyone asks I need to install this version because that is what
    the customer is using and I need to duplicate their databases."  So the correct answer, if in fact SS2K did not work on Windows 7, would have been a virtual machine answer, as suggested on the thread Balmukund referenced.  So before you mark a reply
    as an answer read the question.
    Edward R. Joell MCSD MCDBA

  • Executing interface for a SQL Server 2000 target

    Hi All,
    I am trying doing some initial experimentation with ODI, in executing its interface in compiling a SQL Server 2000 target from the same source.
    I designed an interface with Source and target having only one column, inserted some sample data for the source data store and left the target empty. After reversing the source and target data models, created an interface and inserted source and target datastores and active mapped the existing column. In the flow tab, I am using LKM MSSQL to MSSQL(Linked Servers) and IKM MSSQL Incremental Update and rectified Flow Control to 'No' as I dont have any keys in my structure. I am using CKM SQL, though no necessity of it, and also tried with LKM MSSQL to MSSQL(BCP), but could not correct the error when executing this interface.
    It is not indicating any errors in diagram. In the Operator this is what is the message:
    1038 : S0003 : com.microsoft.sqlserver.jdbc.SQLServerException: Cannot use empty object or column names. Use a single space if necessary.
    com.microsoft.sqlserver.jdbc.SQLServerException: Cannot use empty object or column names. Use a single space if necessary.
         at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDatabaseError(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerStatement.getNextResult(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.doExecutePreparedStatement(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement$PrepStmtExecCmd.doExecute(Unknown Source)
         at com.microsoft.sqlserver.jdbc.TDSCommand.execute(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerConnection.executeCommand(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeCommand(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeStatement(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.executeUpdate(Unknown Source)
         at com.sunopsis.sql.SnpsQuery.executeUpdate(SnpsQuery.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execStdOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlC.treatTaskTrt(SnpSessTaskSqlC.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.h.y(h.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    Moreover in the command prompt it is indicating SQL Server Exception: Cannot invoke a rollback operation when the autocommit mode is set to true.
    Please help me out in executing this interface, all help is greatly appreciated.
    Many Thanks!!!

    Hi Rathish,
    In the query it is indicating that 'It is creating view on target'. This is the step that is causing trouble.
    Query description is :
    create view dbo.C$_0City_Trg
    as
    select      *
    from     [].odi_work.dbo.City_Trg
    Thanks in Advance!!!

  • Oracle (Linux) to MS SQL Server 2000 (Windows 2003) with OTG

    I have Oracle 9i Release 1 running on linux and i want to use Transparent Gateway to connect to MS SQL Server 2000 running on Windows 2003. Is it possible to setup this connection?
    If yes, please include the detail approach of installation.
    Thank you....

    Dear kgronau
    i tried the transperent gateway in Win2003
    both sqlserver and oracle 10 g onthe same os (win2003)
    Created listener and tnsname settings as per the documention spec..
    then created a database link for sqlserver here.
    my transpernet gateway works without any problem,
    Then,
    I have Oracle on Linux also,
    i created a tnsname settings here for the win2003 listener (for sqlserver connection).
    then created a database link for sqlserver here
    im not able to connect sqlserver.
    i tried to desc one table (sqlserver)
    the following error i get,
    do you have any idea, what i have missed???
    SQL> DESC CUSTOMERS@SQLDB
    ERROR:
    ORA-02068: following severe error form SQLDB
    ORA-03135: connection lost contact
    please give some hints what is the problem
    remember the listener is running on windows 2003
    regards

  • Regarding Microsoft SQL Server 2000 Driver for JDBC (2.2.0019)

    I have downloaded and installed Microsoft SQL Server 2000 Driver for JDBC (2.2.0019). Now i have to configure it for my development purpose. Can i use this driver for my development purpose or not. If yes does it create any kind of problem in future when i change the platform. My development should not depend on driver and database.
    Can i use any other driver provided by sun microsystem. If yes let me know where can i download and configure it.
    Waiting for the updates ASAP

    See, the bridge, being a type 1 driver has
    river has all the inherent limitations of that type
    drivers, due to the extra levels the data must
    passthrough inthe journey between the DB and the
    client. Also the use of native code.. makes it
    unsuitable to be used in applets.. the odbc should be
    configured in the client for this driver to work. etc.
    etc.
    It may be stable and useful for some
    for some applications.. but for sccenarios where one
    needs the solution tobe platform independent, ...By definition that would be the case. Of course the odbc-bridge does work on Windows, Solaris and Linux. So what other platform were you thinking about?
    ... less dependent on the user configuration,The bridge doesn't need any configuration. Or at least not any more than any other driver. The ODBC driver of course does need configuration.
    ...needs the minimum preparations from theuser, and above all give
    the fastest response time for him, the bridge cannot
    beat type 4 drivers. You are going to have to provide a link for that particular performance quote. Given that performance is impact most severely by requirements then design and finally by round trip time to the database I doubt that for applications (rather than benchmarks) that any difference is going to be significant.
    the problem i think was my use of
    my use of 'commercial' that u pointed out..
    anyway.. u are of course right if what u intended was
    stability only. but what i intended with that word was
    different .. sorry for creating the confusion.
    And it still seems like you are implying that it is not suitable for deployment in production systems. And as I pointed out I did deploy it in a large scale production system.
    I am not saying that type 4 drivers do not have a place nor that they do not have advantages, but their mere existance does not prove that they are a better choice for all installations.

  • JDBC connection for SQL Server 2000

    How to connect SQL Server 2000 from java?
    If i can get any sites where i can get examples also fine.
    Thanks in advance
    Praveen.

    Developer's Daily  Java Education 
      front page | java | perl | unix | DevDirectory 
      Front Page
    Java
    Education
    Pure Java
       Articles
    JDBC 101: How to connect to an SQL database with JDBC
    Introduction
    If you're interested in connecting your Java applets and applications to standard SQL databases like Oracle, Informix, Sybase, and others, JDBC is your ticket to paradise.  The combination of Java's JDBC and standard SQL makes a simple and powerful database solution. JDBC makes the simple things easy -- without making the complex tasks too difficult either.
    In this first article in our series, we'll show you step-by-step how to establish a connection from your Java programs to an SQL database using JDBC. In the process we'll show you how to connect to two different databases -- Mini SQL (mSQL), and Interbase -- just so you can see how the code changes when you switch from one database to another.
    Obtaining the JDBC driver
    Before you start working with JDBC, you'll need a copy of the Java JDK. If you don't have it already, you can get the JDK for free at Sun's Java web site, or it will also be included with many IDE's that you can purchase, such as JBuilder or Visual Cafe.
    Once you have the JDK, the next thing you need to do is to get the correct JDBC driver for your database. In most cases the JDBC driver will be provided by your database vendor. For instance, if you purchase the Interbase database, the driver will be provided with the software, or you can obtain the most recent version at http://www.interbase.com/.
    (An exception to this rule is Mini SQL, or mSQL. Because it's a very low-cost database, the JDBC driver has actually been developed by a separate group of people, led by George Reese at imaginary.com. You can download the mSQL JDBC driver from the imaginary.com web site.)
    Once you have the correct JDBC driver for your database, install it according to the instructions that came with it. Installation instructions will vary somewhat for each vendor.
    Establishing a connection is a two-step process
    Once you have the correct JDBC driver installed, establishing a connection from your Java programs to your SQL database is pretty easy.
    Regardless of whether you're trying to connect to Oracle, Sybase, Informix, mSQL, or Interbase (or any other JDBC data source), establishing a connection to an SQL database with Java JDBC is a simple two-step process:
    Load the JDBC driver.
    Establish the connection.
    We'll show you two examples just so you can see how easy it is, and how little the code changes when you migrate from one database server to another.
    A Mini SQL Example
    Listing 1 provides the full source code required to establish a connection to a mSQL database on a server named "www.myserver.com".
      //  Establish a connection to a mSQL database using JDBC. 
    import java.sql.*; 
    class JdbcTest1 { 
        public static void main (String[] args) { 
            try { 
                // Step 1: Load the JDBC driver. 
                Class.forName("com.imaginary.sql.msql.MsqlDriver"); 
                // Step 2: Establish the connection to the database. 
                String url = "jdbc:msql://www.myserver.com:1114/contact_mgr"; 
                Connection conn = DriverManager.getConnection(url,"user1","password");  
            } catch (Exception e) { 
                System.err.println("Got an exception! "); 
                System.err.println(e.getMessage()); 
      Listing 1: This source code example shows the two steps required to establish a connection to a Mini SQL (mSQL) database using JDBC. 
    An Interbase Example
    Listing 2 provides the full source code required to establish a connection to an Interbase database. In this example, we're connecting to a local Interbase server (i.e., the server is running on the same PC that we're running the Java code on).
      //  Establish a connection to an Interbase database using JDBC. 
    import java.sql.*; 
    class JdbcTest1 { 
        public static void main (String[] args) { 
            try { 
                // Step 1: Load the JDBC driver. 
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); 
                // Step 2: Establish the connection to the database. 
                String url = "jdbc:odbc:contact_mgr"; 
                Connection conn = DriverManager.getConnection(url,"user1","password");  
            } catch (Exception e) { 
                System.err.println("Got an exception! "); 
                System.err.println(e.getMessage()); 
      Listing 2: This source code example shows the two steps required to establish a connection to an Interbase database using JDBC. 
    What's the difference?
    The difference between the two source code listings is very small, so we highlighted them in a dark blue color. The only difference between connecting to the two databases is:
    The name of the JDBC driver.
    The URL used to connect to the database.
    Everything else in the two source code listings -- except for the comment at the top -- is identical. Here's a slightly more detailed discussion of the two differences:
    1. The JDBC Driver
    The name of the JDBC driver will be supplied to you by your database vendor. As you can see in the class.forName() statements, these names will vary. In the first case we're using the mSQL-JDBC driver. In the second case we're using the JDBC-ODBC Bridge driver supplied with the Interbase server.
    2. The URL
    The syntax of the DriverManager.getConnection() method is:
    DriverManager.getConnection(String url, String username, String password);
    The username and password are the normal names you use to log into your database. The URL you use will again vary with the database you use. In both examples shown, we're establishing a connection to a database named contact_mgr. (We'll use this database for all of our examples in this series of JDBC articles.)
    If you stick with standard SQL commands, it can be very easy to switch from one database server to another. In fact, I've heard from several developers who are using mSQL to prototype their software (because it's so inexpensive), and then switching to another commercial vendor when it's time to take their product "live".
    Conclusion
    Establishing a connection to an SQL database with Java JDBC is a simple, two-step process. The process is nearly identical for all SQL databases, and the only real differences are (a) the driver name, and (b) the URL used to connect to the database. Your database vendor will provide this information in their documentation.
    Resources mentioned in this article
    Here are a few links to resources we mentioned in this article:
    Interbase
    The Mini SQL (mSQL) database
    The mSQL-JDBC driver at imaginary.com
      [an error occurred while processing this directive]
     

Maybe you are looking for