Stopping sql server services while applying Service pack On SQL server 2008 and 2008 R2

Hi,
I am planning to apply service pack 3 for SQL 2008 R2 and Service pack 4 for SQL server 2008. This is my first time and I am applying first QA and DEV environment. I have one confusion. In cluster once you fail over sql resources to active node all of the
sql services including SQLSERVER and Agent are automatically stopped in passive node where we apply service pack. But in Stand alone, The services are not automatically stopped. Do I need to manually  stop those services like SQLSERVER, Agent, Browser
and others if any  before I start applying service pack?
Early Response is highly appreciated.
Thanks In Advance

Hello,
You don’t need to stop SQL Server services. Let SQL Server setup do it as needed.
Please read the following article for the cluster you would like to update:
https://support.microsoft.com/kb/958734?wa=wsignin1.0
The following article may be useful too:
http://www.sqlcoffee.com/Tips0014.htm
Hope this helps.
Regards,
Alberto Morillo
SQLCoffee.com

Similar Messages

  • Install Netweaver 7.1, service pack 3 on Windows 2008 Server 64bit

    Hi All,
    Good Morning. I am working as Oracle APPS DBA. I had a requirement for installing  Netweaver 7.1, service pack 3 on Windows 2008 Server 64bit machine.
    I need this Application server for Vertex O-Series which is working with SQL Server as the database.
    Can any of you guys help me in providing the document or steps in order to install this application server?
    1. Pre-Requisties steps
    2. Installation
    3. Post steps
    I apperciat your help in this.
    Thanks,
    Srinivas.

    Hello.
    We are at the same point too.
    Anybody here install the Vertex O series 6 running on the Java Stack? if so, what NW release and what component?
    We are currently running an older version on SAP NW640 JAVA with no issue, and I am making the assumption the new Vertex would be running on the same SAP java AS for 7*... maybe not?
    The install  documents from Vertex say the requirement for SAP is:
    "SAP NetWeaver 7.1 with Service Pack 3 or higher" and I see that there is only 7.1 for PI and Mobile.
    (Maybe they mean SAP NW 7 SP3?)
    We did ask Vertex, the company, about running this on the java app and they wrote:
    "Netweaver 7.1 is currently supported for deployment of O Series 6.0. Versions 7.0 and 7.3 of Netweaver are not supported.
    O Series 6.0 is supported for use with Java 1.5 and Java 1.6. "
    Thanks for your help. And I will post here again if I find my answer.

  • Issue while apply support pack SAP_BASIS SAPKB70013 -18

    Hi Gurus,
    We have issue while apply support pack to Development system, we have implemented SAPKB70012 pack first and then we have implemented SPAU and saved in Trasport request  . while applying other patch SAPKB70013 -18 in one go system asked us to release SPAU  transport and then we released that transport after that same transport with auotomatic job it has got implemneted to Quality system and then after that we got below error in quality system :-
    The function module "EXTENDED_AUTH_CHECK_FOR_REPS" is called, but
    cannot be found in its function group.
    Error in the ABAP Application Program
    The current ABAP program "SAPLS38E" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    Please suggest now both system is not working .
    Regards,
    Jeetendra

    Also you can check object modifications in transaction SE03 looking for request that touched object SAPLS38E.
    Could you please share the syntax error message ?
    Best regards

  • Starting/Stopping Application Server Forms and Reports

    Hello,
    Are there any scripts (like dbstart and dbshut for Oracle DB) for starting and stopping "Application Server Forms and Reports". If not, any special suggestions?
    I must automatically start this application on Unix. I know that during starting some steps must be performedy by the root user (export DISPLAY env variable and issue the "xhost +" command) and later the oracle user must do some things( export ORACLE_HOME and DISPLAY and issue the "opmnctl startall" command). Does anybody have scripts like that?
    Regards,
    Tim

    If you're on 10.1.2, there is a script (requires an X Windows session). It's called runstartupconsole.sh, but you've got to update the install type to Portal in the ias.properties file if I remember right. It looks cool, but a shell script works better.
    Here is a shell script that does some of those things. You still need to run xhost+ after running a display if you're using something that requires a DISPLAY to start. Someone may have a better one, but this one works.
    We actually use one that starts all the different components individually except for Reports in rc scripts. That is the only thing we have that needs a Display set to start. So then xhost + is run & at the same time, the Unix sysadmin runs a script that start Reports from opmn.
    I hope this is useful.
    Cordially,
    Steve
    #!/bin/sh
    # =======================
    # Collect Global Variables
    # =======================
    # Collect server specific install location
    export ORACLE_BASE=/u01/app/oracle
    export MIDDLE_TIER_ORACLE_HOME=$ORACLE_BASE/product/ias/101202_EE/mt_maxportal_02
    export INFRASTRUCTURE_ORACLE_HOME=$ORACLE_BASE/product/ias/101202_EE/if_maxportal_02
    export SID=orcl
    # Collect current PATH and LD_LIBRARY_PATH for reuse
    export OLD_PATH=$PATH
    export OLD_LD_LIBRARY_PATH=$LD_LIBRARY_PATH
    # Unset variables that can cause problems starting or stopping
    unset CLASSPATH
    case "$1" in
    start)
    # =======================
    # Start Infrastructure
    # =======================
    # Set environment to start infrastructure components
    export ORACLE_SID=$SID
    export ORACLE_HOME=$INFRASTRUCTURE_ORACLE_HOME
    export LD_LIBRARY_PATH=$OLD_LD_LIBRARY_PATH:$ORACLE_HOME/lib
    export PATH=$ORACLE_HOME/bin:$OLD_PATH
    # Start Infrastructure Database Listener
    echo -n "Starting Infrastructure Database Listener: "
    $ORACLE_HOME/bin/lsnrctl start
    echo "OK"
    # Start Infrastructure Database
    echo -n "Starting Infrastructure Database: "
    $ORACLE_HOME/bin/dbstart
    echo "OK"
    # Start Infrastructure OPMN managed components
    echo -n "Starting Infrastructure OPMN Managed Components: "
    $ORACLE_HOME/opmn/bin/opmnctl startall
    echo "OK"
    # =======================
    # Start Middle Tier
    # =======================
    # Change environment for middle tier
    unset ORACLE_SID
    export ORACLE_HOME=$MIDDLE_TIER_ORACLE_HOME
    export LD_LIBRARY_PATH=$OLD_LD_LIBRARY_PATH:$ORACLE_HOME/lib
    export PATH=$ORACLE_HOME/bin:$OLD_PATH
    # Start Middle Tier OPMN managed components
    echo -n "Starting Middle Tier OPMN Managed Components: "
    $ORACLE_HOME/opmn/bin/opmnctl startall
    echo "OK"
    # Start Application Server Control
    echo -n "Starting Application Server Control: "
    $ORACLE_HOME/bin/emctl startifdown iasconsole
    echo "OK"
    stop)
    # =======================
    # Stop Middle Tier
    # =======================
    # Set environment for middle tier
    unset ORACLE_SID
    export ORACLE_HOME=$MIDDLE_TIER_ORACLE_HOME
    export LD_LIBRARY_PATH=$OLD_LD_LIBRARY_PATH:$ORACLE_HOME/lib
    export PATH=$ORACLE_HOME/bin:$OLD_PATH
    # Stop Application Server Control
    echo -n "Stopping Application Server Control: "
    $ORACLE_HOME/bin/emctl stop iasconsole
    echo "OK"
    # Stop Middle Tier OPMN managed components
    echo -n "Stopping Middle Tier OPMN managed components: "
    $ORACLE_HOME/opmn/bin/opmnctl stopall
    echo "OK"
    # =======================
    # Stop Infrastructure
    # =======================
    # Set environment to start infrastructure components
    export ORACLE_SID=$SID
    export ORACLE_HOME=$INFRASTRUCTURE_ORACLE_HOME
    export LD_LIBRARY_PATH=$OLD_LD_LIBRARY_PATH:$ORACLE_HOME/lib
    export PATH=$ORACLE_HOME/bin:$OLD_PATH
    # Stop Infrastructure OPMN managed components
    echo -n "Stopping Infrastructure OPMN managed components: "
    $ORACLE_HOME/opmn/bin/opmnctl stopall
    echo "OK"
    # Stop Infrastructure Database
    echo -n "Stopping Infrastructure Database: "
    $ORACLE_HOME/bin/dbshut
    echo "OK"
    # Stop Infrastructure Database Listener
    echo -n "Stopping Infrastrucutre Database Listener: "
    $ORACLE_HOME/bin/lsnrctl stop
    echo "OK"
    reload|restart)
         $0 stop
    $0 start
    echo "Usage: `basename $0` start|stop|restart|reload"
    exit 1
    esac
    exit 0

  • Error: while applying Maintenance Pack

    Hiii..,
    IM applying the Maintanence Pack Patch 7303030, im upgrading my Apps version from 12.0.4 to 12.1.1.
    Im following the MEtalink Document *Oracle E-Business Suite Release 12.1.1 Maintenance Pack Installation Instructions [ID 752619.1]*
    while applying the patch i got the following error,
    There are now 36259 jobs remaining (current phase=A2):
    3 running, 0 ready to run and 36256 waiting.
    Deferred: file cst4274743.sql on worker 4 for product bom username BOM. (Deferment number 2 for this job)
    Assigned: file cst4274743.sql on worker 4 for product bom username BOM.
    FAILED: file cst4274743.sql on worker  4 for product bom username BOM.
    Completed: file zxdrpidx.sql on worker 3 for product zx username ZX.
    Completed: file xtrdstrg.sql on worker 2 for product xtr username XTR.
    Completed: file peovndis.sql on worker 1 for product per username HR.
    ATTENTION: All workers either have failed or are waiting:
    FAILED: file cst4274743.sql on worker  4.
    ATTENTION: Please fix the above failed worker(s) so the manager can continue.
    Plz anyone can help me in resolving the issue..
    Thankss..

    Hi;
    Please check worker logs file for error details.? Did you check alert.log? Did you try to restart workers via adctrl utulity?
    Regard
    Helios

  • Errors with Fixpack or Service Pack for Crystal Reports 2008

    all,
    I am trying to update Crystal Reports Server 2008 since I understand that there is some security issue: SAP BusinessObjects Crystal Reports Server CMS.exe Remote Code Execution Vulnerability
    I downloaded twice CRSRV03_0-10008663.EXE and the first download is 670.494 kb the second time is 517182 kb... something is wrong with SUPPORT PACKAGES AND PATCHES server at SAP....
    I ran CRSRV03_0-10008663.EXE and  there isn't a setup.exe in this package and the downloads contains problems and some CAB are not being unpacked... 
    I never patch CRServer2008 and I wonder if I need to install the previous packs or patches and where I can download the service pack 3
    Thanks
    Rg

    Hi Bob,
    Here is an article which will give you a clear idea of what runtimes you need to install on your web server.
    [http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=56787567|http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=56787567]
    [https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm]
    i would suggest to install the latest runtimes (sp6 in case of CR XI R2)
    - Bhushan.

  • Vista Service Pack 2 install error message and Realtek incompatibility

    Just want to inform that service pack 2 install gave me an error message when I installed it on a clean rebuild of my Toshiba laptop. Something about an incompatible driver. As I had already installed the latest drivers from Toshiba pages, I choose the 'ignore and continue' action at install, and the update successfully completed.
    I then ran the Windows Upgrade advisor utility (just search a Microsoft website to find it) which checks for hardware/driver compliance with Vista.
    Their report says that the Realtek RTL8187B wireless adapter driver has an issue with Vista, and recommends that the latest driver be installed. Since I do have the latest Toshiba driver installed, what is the procedure to follow?
    The wifi connection with this laptop functions well, with the only 'problem' being a 45 second delay when waking up from sleep mode to being able to open a new web page. This is the time it takes to establish a connection to my router/modem.

    > Their report says that the Realtek RTL8187B wireless adapter driver has an issue with Vista, and recommends that the latest driver be installed. Since I do have the latest Toshiba driver installed, what is the procedure to follow?
    You could try the Realtek WLan driver from the Realtek driver page.
    There you can find the latest Realtek drivers for different Realtek chips.
    But to be honest I would not be worried about this massage.
    Something like that can happens always after any installations of the Microsoft service packs.
    I remember that many drivers were not supported by SP1 but they ran properly
    So take it easy ;)

  • Since upgrading the software on my iPhone 3GS to the iOS 5 i have not been able to sync my iphone.  It is not my internet securtity causing the problem, I have just downloaded service pack 3 for windows XP and i have uninstalled and re installed itunes! ?

    Since Upgrading the software on my Iphone 3GS to the iOS5, I have not been able to back up my on my laptop, it starts syncing then kicks me out.
    I have uninstalled my internet security and that is not the problem (so re-installed)
    I have updated the Windows XP to service Pack 3
    I have un installed and re installed iTunes as well
    And none of this has worked!
    I was going to upgrade my phone to the iPhone 4S but dont feel i can now as worried it wont sync.
    Please can anyone help me as this is rather frustrating now!
    Thanks
    Morris1979

    ***, a text I tried to send but saved,chops up and pastes in the forum question in my attempt to reach out for a technical resolve of my phone, not my heart. Hahaha.

  • How to uninstall a service pack BPC 5.1 SP09 and revert back

    We are planning to upgrade from BPC 5.1 SP03 to BPC 5.1 SP09 on our test servers and would like to develop a backout plan incase we need backout this new service pack.  Does anybody have any ideas on how to do this?

    Unfortunately, support pack of BPC is foward-only packages. There is no option to uninstall specific SP or rollback. I like to suggest to use some image making tools such as Norton ghost.
    However, you may have to backup your appset also. Because some of support packs have database related changes such as table design update as well as stored procedures.

  • Error while applying Mini-pack 11i.BNE.D

    I am in the process of applying ATG RUP6.
    For the above patch we need to apply reprequsite patch 3218526 (BNE: Patch 11i.BNE.D ) , We are already on We are on Web Applications Desktop Integrator 11i.BNE.C
    BUt while applying 3218526 (BNE: Patch 11i.BNE.D ) ,patching failed with the following error.
    AutoPatch error:
    Error copying the Forms Registry file to /u04/Rel11i/devcomn/java/oracle/forms/registry/Registry.dat.
    adogjf() Unable to copy Registry.Dat.
    AutoPatch error:
    Failed to generate the product JAR files
    I have tried with touching the Regstry.dat file and followed all relevant docs in metalink. But its not helping me. Can any one please help me on thi issue.
    Regards,
    Farhat

    Duplicate Thread
    error in generating Jar file

  • Applying Support Pack in ABAP For Basis and ABAP components

    Hi,
    Can one please provide a document for appying support packs for ABAP and BASIS componets in SAP system.
    Thanks
    Arun

    Hello Arun
    http://www.sappoint.com/PHPWebUI/Documents/Applying%20Support%20Pack%20and%20Plug-ins.pdf
    http://www.sap-img.com/basis/apply-support-packs-to-my-sap-system.htm
    But, service.sap.com is always there, you must read Notes too for any procedure and strategy for applying support packs or infact to do anything in SAP.
    thanks
    Bhudev

  • Dispatcher stopped because of error while applying patches.

    <b>Hi All,
    I was applying basis patch level 12 on a Netweaver '04 application server but unfortunately the tablespace got filled up and the SAP application became unresponsive.
    Now i have created new datafiles and also deleted the patch entry from tables PAT01 and PAT02. But still the dispatcher stops when i try to logon.
    I am pasting the contents of the file dev_disp.
    Please somebody help me out.</b>
    trc file: "dev_disp", trc level: 1, release: "640"
    Tue Feb 27 13:00:30 2007
    kernel runs with dp version 128000(ext=102000) (@(#) DPLIB-INT-VERSION-128000-UC)
    length of sys_adm_ext is 524 bytes
    systemid   560 (PC with Windows NT)
    relno      6400
    patchlevel 0
    patchno    43
    intno      20020600
    make:      multithreaded, Unicode
    pid        3816
    ***LOG Q00=> DpSapEnvInit, DPStart (00 3816) [dpxxdisp.c   1100]
         shared lib "dw_xml.dll" version 43 successfully loaded
         shared lib "dw_xtc.dll" version 43 successfully loaded
         shared lib "dw_stl.dll" version 43 successfully loaded
         shared lib "dw_gui.dll" version 43 successfully loaded
    Tue Feb 27 13:00:35 2007
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 4 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  3886]
    MtxInit: -2 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: JAVA is not active
    DpShMCreate: sizeof(wp_adm)          25008     (1316)
    DpShMCreate: sizeof(tm_adm)          2780232     (13832)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpShMCreate: sizeof(comm_adm)          290000     (580)
    DpShMCreate: sizeof(vmc_adm)          0     (372)
    DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 04550040, size: 3207168)
    DpShMCreate: allocated sys_adm at 04550040
    DpShMCreate: allocated wp_adm at 04551B58
    DpShMCreate: allocated tm_adm_list at 04557D08
    DpShMCreate: allocated tm_adm at 04557D30
    DpShMCreate: allocated wp_ca_adm at 047FE978
    DpShMCreate: allocated appc_ca_adm at 04804738
    DpShMCreate: allocated comm_adm_list at 04806678
    DpShMCreate: allocated comm_adm at 04806690
    DpShMCreate: allocated vmc_adm_list at 0484D360
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 0484D388
    DpShMCreate: allocated wall_adm at 0484D390
    MBUF state OFF
    Tue Feb 27 13:00:36 2007
    EmInit: MmSetImplementation( 2 ).
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation flat
    <EsNT> Memory Reset disabled as NT default
    <ES> 1227 blocks reserved for free list.
    ES initialized.
    Tue Feb 27 13:00:37 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 2244
      argv[0] = F:\usr\sap\HMI\DVEBMGS00/j2ee/os_libs/jcontrol.exe
      argv[1] = F:\usr\sap\HMI\DVEBMGS00/j2ee/os_libs/jcontrol.exe
      argv[2] = pf=F:\usr\sap\HMI\SYS\profile\HMI_DVEBMGS00_hsdnt2400904
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1108
      argv[5] = -DLISTEN_PORT=1109
      argv[6] = -DSAPSYSTEM=00
      argv[7] = -DSAPSYSTEMNAME=HMI
      argv[8] = -DSAPMYNAME=hsdnt2400904_HMI_00
      argv[9] = -DSAPPROFILE=F:\usr\sap\HMI\SYS\profile\HMI_DVEBMGS00_hsdnt2400904
      argv[10] = -DFRFC_FALLBACK=ON
      argv[11] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 2.6.1 2.6 4.0) [dpxxdisp.c   1462]
    ***LOG Q0K=> DpMsAttach, mscon ( hsdnt2400904) [dpxxdisp.c   9736]
    Tue Feb 27 13:00:39 2007
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 6400, patchlevel 0
    Tue Feb 27 13:00:40 2007
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1025]
    DpMsgAdmin: Set patchno for this platform to 43
    Release check o.K.
    Tue Feb 27 13:00:42 2007
    DpJ2eeLogin: j2ee state = CONNECTED
    Tue Feb 27 13:01:17 2007
    ERROR => W0 (pid 936) died [dpxxdisp.c   12187]
    ERROR => W1 (pid 2252) died [dpxxdisp.c   12187]
    ERROR => W2 (pid 3820) died [dpxxdisp.c   12187]
    ERROR => W3 (pid 2264) died [dpxxdisp.c   12187]
    ERROR => W4 (pid 732) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xbf --> 0xbe
    ERROR => W5 (pid 2268) died [dpxxdisp.c   12187]
    ERROR => W6 (pid 2292) died [dpxxdisp.c   12187]
    ERROR => W7 (pid 2300) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xbe --> 0xbc
    ERROR => W8 (pid 2308) died [dpxxdisp.c   12187]
    ERROR => W9 (pid 2316) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xbc --> 0xb8
    ERROR => W10 (pid 1732) died [dpxxdisp.c   12187]
    ERROR => W11 (pid 1704) died [dpxxdisp.c   12187]
    ERROR => W12 (pid 2344) died [dpxxdisp.c   12187]
    ERROR => W13 (pid 2352) died [dpxxdisp.c   12187]
    ERROR => W14 (pid 2360) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xb8 --> 0xb0
    ERROR => W15 (pid 2368) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xb0 --> 0xa0
    ERROR => W16 (pid 1740) died [dpxxdisp.c   12187]
    ERROR => W17 (pid 2384) died [dpxxdisp.c   12187]
    ERROR => W18 (pid 2328) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xa0 --> 0x80
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    killing W0-936 (SIGUSR2)
    ERROR => DpWpKill(936, SIGUSR2) failed [dpxxtool.c   2468]
    killing W1-2252 (SIGUSR2)
    ERROR => DpWpKill(2252, SIGUSR2) failed [dpxxtool.c   2468]
    killing W2-3820 (SIGUSR2)
    ERROR => DpWpKill(3820, SIGUSR2) failed [dpxxtool.c   2468]
    killing W3-2264 (SIGUSR2)
    ERROR => DpWpKill(2264, SIGUSR2) failed [dpxxtool.c   2468]
    killing W4-732 (SIGUSR2)
    ERROR => DpWpKill(732, SIGUSR2) failed [dpxxtool.c   2468]
    killing W5-2268 (SIGUSR2)
    ERROR => DpWpKill(2268, SIGUSR2) failed [dpxxtool.c   2468]
    killing W6-2292 (SIGUSR2)
    ERROR => DpWpKill(2292, SIGUSR2) failed [dpxxtool.c   2468]
    killing W7-2300 (SIGUSR2)
    ERROR => DpWpKill(2300, SIGUSR2) failed [dpxxtool.c   2468]
    killing W8-2308 (SIGUSR2)
    ERROR => DpWpKill(2308, SIGUSR2) failed [dpxxtool.c   2468]
    killing W9-2316 (SIGUSR2)
    ERROR => DpWpKill(2316, SIGUSR2) failed [dpxxtool.c   2468]
    killing W10-1732 (SIGUSR2)
    ERROR => DpWpKill(1732, SIGUSR2) failed [dpxxtool.c   2468]
    killing W11-1704 (SIGUSR2)
    ERROR => DpWpKill(1704, SIGUSR2) failed [dpxxtool.c   2468]
    killing W12-2344 (SIGUSR2)
    ERROR => DpWpKill(2344, SIGUSR2) failed [dpxxtool.c   2468]
    killing W13-2352 (SIGUSR2)
    ERROR => DpWpKill(2352, SIGUSR2) failed [dpxxtool.c   2468]
    killing W14-2360 (SIGUSR2)
    ERROR => DpWpKill(2360, SIGUSR2) failed [dpxxtool.c   2468]
    killing W15-2368 (SIGUSR2)
    ERROR => DpWpKill(2368, SIGUSR2) failed [dpxxtool.c   2468]
    killing W16-1740 (SIGUSR2)
    ERROR => DpWpKill(1740, SIGUSR2) failed [dpxxtool.c   2468]
    killing W17-2384 (SIGUSR2)
    ERROR => DpWpKill(2384, SIGUSR2) failed [dpxxtool.c   2468]
    killing W18-2328 (SIGUSR2)
    ERROR => DpWpKill(2328, SIGUSR2) failed [dpxxtool.c   2468]
    NiWait: sleep (10000 msecs) ...
    NiISelect: timeout 10000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:27 2007
    NiISelect: TIMEOUT occured (10000 ms)
    dump system status
    Workprocess Table (long)               Tue Feb 27 07:31:27 2007
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program  Cl  User         Action                    Table
    0 DIA      936 Ended         no      1   0             0                                                             
    1 DIA     2252 Ended         no      1   0             0                                                             
    2 DIA     3820 Ended         no      1   0             0                                                             
    3 DIA     2264 Ended         no      1   0             0                                                             
    4 DIA      732 Ended         no      1   0             0                                                             
    5 UPD     2268 Ended         no      1   0             0                                                             
    6 UPD     2292 Ended         no      1   0             0                                                             
    7 UPD     2300 Ended         no      1   0             0                                                             
    8 ENQ     2308 Ended         no      1   0             0                                                             
    9 ENQ     2316 Ended         no      1   0             0                                                             
    10 BTC     1732 Ended         no      1   0             0                                                             
    11 BTC     1704 Ended         no      1   0             0                                                             
    12 BTC     2344 Ended         no      1   0             0                                                             
    13 BTC     2352 Ended         no      1   0             0                                                             
    14 BTC     2360 Ended         no      1   0             0                                                             
    15 SPO     2368 Ended         no      1   0             0                                                             
    16 UP2     1740 Ended         no      1   0             0                                                             
    17 UP2     2384 Ended         no      1   0             0                                                             
    18 UP2     2328 Ended         no      1   0             0                                                             
    Dispatcher Queue Statistics               Tue Feb 27 07:31:27 2007
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    3
    2000
    10
    10
    --------++++--
    +
    DIA
    5
    5
    2000
    5
    0
    --------++++--
    +
    UPD
    0
    0
    2000
    0
    0
    --------++++--
    +
    ENQ
    0
    0
    2000
    0
    0
    --------++++--
    +
    BTC
    0
    0
    2000
    0
    0
    --------++++--
    +
    SPO
    0
    0
    2000
    0
    0
    --------++++--
    +
    UP2
    0
    0
    2000
    0
    0
    --------++++--
    +
    max_rq_id          13
    wake_evt_udp_now     0
    wake events           total     9,  udp     7 ( 77%),  shm     2 ( 22%)
    since last update     total     9,  udp     7 ( 77%),  shm     2 ( 22%)
    Dump of tm_adm structure:               Tue Feb 27 07:31:27 2007
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks               Tue Feb 27 07:31:27 2007
    =============================
    Slots: 300, Used: 1, Max: 0
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    0
    DISPATCHER
    -1
    WPCAAD000
    NiWait: sleep (5000 msecs) ...
    NiISelect: timeout 5000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:32 2007
    NiISelect: TIMEOUT occured (5000 ms)
    Shutdown server ...
    DpJ2eeDisableRestart
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=2244)
    killing process (2244) (SOFT_KILL)
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    NiSelClear: removed hdl 8 from selectset
    DpDelSocketInfo: del info for socket 8 (type=8)
    NiBufClose: clear extensions for hdl 8
    NiBufSetStat: bufstat of hdl 8 changed from OK to OFF
    NiICloseHandle: shutdown and close hdl 8 / socket 1324
    NiSelClear: removed hdl 4 from selectset
    DpDelSocketInfo: del info for socket 4 (type=9)
    NiBufClose: clear extensions for hdl 4
    NiBufSetStat: bufstat of hdl 4 changed from OK to OFF
    NiICloseHandle: shutdown and close hdl 4 / socket 1548
    DpModState: buffer in state MBUF_PREPARED
    NiBufSend starting
    NiIWrite: write 110, 1 packs, MESG_IO, hdl 5, data complete
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    Stop work processes...
    Stop gateway
    killing process (2216) (SOFT_KILL)
    Stop icman
    killing process (2220) (SOFT_KILL)
    Terminate gui connections
    [DpProcDied] Process lives  (PID:2216  HANDLE:1568)
    waiting for termination of gateway
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:33 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process died  (PID:2216  HANDLE:1568)
    [DpProcDied] Process died  (PID:2220  HANDLE:1560)
    DpHalt: cancel all lcom connections
    MPI CancelAll 2 -> 0
    MPI DeleteAll 2 -> 0
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:34 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:35 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:36 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:38 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:39 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:40 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:41 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:42 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:43 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:44 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:45 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:46 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:47 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:48 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:49 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:50 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:51 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:52 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:54 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:55 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:56 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:57 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:58 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:01:59 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:02:00 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:02:01 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:02:02 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:02:03 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:02:04 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:02:05 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:02:06 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:02:07 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:02:08 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:02:09 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:02:10 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:02:11 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:02:12 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:02:13 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:02:14 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:02:15 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:02:16 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:02:17 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:02:18 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:2244  HANDLE:1536)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1589
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Feb 27 13:02:19 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process died  (PID:2244  HANDLE:1536)
    NiIMyHostName: hostname = 'hsdnt2400904'
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    DpConvertRequest: net size = 163 bytes
    NiBufSend starting
    NiIWrite: write 562, 1 packs, MESG_IO, hdl 5, data complete
    MsINiWrite: sent 562 bytes
    send msg (len 110+452) to name          -, type 4, key -
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   9962]
    NiBufSend starting
    NiIWrite: write 110, 1 packs, MESG_IO, hdl 5, data complete
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiSelClear: removed hdl 5 from selectset
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 1/300/19
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 19)
    MBUF component DOWN
    NiBufClose: clear extensions for hdl 5
    NiBufSetStat: bufstat of hdl 5 changed from OK to OFF
    NiICloseHandle: shutdown and close hdl 5 / socket 1540
    MsIDetach: detach MS-system
    EsCleanup ....
    ***LOG Q05=> DpHalt, DPStop ( 3816) [dpxxdisp.c   8495]
    Good Bye .....
    <b>Thanks in Advance,
    Abhishek Srivastava</b>

    Hi Matt,
    I am pasting the contents of tha file dev_w0.
    trc file: "dev_w0", trc level: 1, release: "640"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Tue Feb 27 17:34:23 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'F:\usr\sap\HMI\SYS\exe\run\dboraslib.dll' ...
    B  Library 'F:\usr\sap\HMI\SYS\exe\run\dboraslib.dll' loaded
    B  Version of 'F:\usr\sap\HMI\SYS\exe\run\dboraslib.dll' is "640.00", patchlevel (0.39)
    B  New connection 0 created
    M systemid   560 (PC with Windows NT)
    M relno      6400
    M patchlevel 0
    M patchno    43
    M intno      20020600
    M make:      multithreaded, Unicode
    M pid        2664
    M
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 2664) [dpxxdisp.c   1160]
    I  MtxInit: -2 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: JAVA is not active
    M  DpShMCreate: sizeof(wp_adm)          25008     (1316)
    M  DpShMCreate: sizeof(tm_adm)          2780232     (13832)
    M  DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpShMCreate: sizeof(comm_adm)          290000     (580)
    M  DpShMCreate: sizeof(vmc_adm)          0     (372)
    M  DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 04550040, size: 3207168)
    M  DpShMCreate: allocated sys_adm at 04550040
    M  DpShMCreate: allocated wp_adm at 04551B58
    M  DpShMCreate: allocated tm_adm_list at 04557D08
    M  DpShMCreate: allocated tm_adm at 04557D30
    M  DpShMCreate: allocated wp_ca_adm at 047FE978
    M  DpShMCreate: allocated appc_ca_adm at 04804738
    M  DpShMCreate: allocated comm_adm_list at 04806678
    M  DpShMCreate: allocated comm_adm at 04806690
    M  DpShMCreate: allocated vmc_adm_list at 0484D360
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 0484D388
    M  DpShMCreate: allocated wall_adm at 0484D390

    X Tue Feb 27 17:34:24 2007
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.

    M Tue Feb 27 17:34:27 2007
    M  calling db_connect ...
    C  Got ORACLE_HOME=F:\oracle\HMI\920 from environment
    C  *** ERROR => Couldn't initialize Oracle Client Library
    please check your installation
    [dbsloci.c    8095]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1269]
    M  in_ThErrHandle: 1
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   9413]

    M  Info for wp 0

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server hsdnt2400904_HMI_00 on host hsdnt2400904 (wp 0)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Tue Feb 27 17:34:27 2007
    M  *  RELEASE     640
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        9589
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   730]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  252]
    M  Entering ThSetStatError
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 2664) [dpnttool.c   357]
    Please help me out if you have any solution.
    Regards,
    Abhishek Srivastava

  • I can't download service packs for microsoft office home and student 2011

    I'm having difficulty downloading any service updates for Microsoft office 2011. Please send suggestions

    Microsoft Tech support should be able to tell you what ports you may need to open on your firewall to enable downloading.  http://www.microsoft.com/mac/

  • Conflict with Add-ons while applying Support pack SAPKB62051

    I am applying the above support pack and I get a conflict with the Add-on : APPINT.
    I have searched OSS and i cannot find any CRTs for this Add-on. I have looged a problem with SAP. However is there anyone who has had this issue and has found an answer ?

    Hi,
    I know it is there. Either I'm doing something wrong or it is invisible for me. I think the 'search area' depends on version of SAP software installed. I have SAP R/3 Enterprise 4.7 and that's probably the problem.

  • Issues with Service Pack 2 for Xcelsius 2008

    I installed SP2 for Xcelsius 2008 and after completion I opened the xcelisius and found the Vertical Axis Labels are disabled under
    the Apperance tab -> Text  for the columnar chart components. But when I insert a new component they become visible.
    It is a big dashboard and recreating all the components all over is a nightmare.
    Can someone please suggest if there is a fix for this ?
    THanks,
    Sam

    Sam,
    Copy all the components from the existing dashboard and paste it in a new one. This should solve your problem.
    -Anil

  • AveConnect driver error after SQL Server service pack upgrade

    I am currently testing aveConnect 3.0 (connection optimized) for SQL Server 2000 on a machine we have here.We updated SQL Server with Service Pack 2 & 3 this morning and since then we've been getting the exception below.This is only since we added the service packs to SQL Server,before it worked fine.
    java.sql.SQLException: [Avenir][JDBC SQL Server Driver] Connection refused: connect
    I also tested it with the older version of AveConnect (2.2) which we've been using until recently,and it returned the same error.
    I am currently testing aveConnect 3.0 for SQL Server 2000 on a machine we have here.We updated SQL Server with Service Pack 2 & 3 this morning and since then we've been getting the exception below.This is only since we added the service packs to SQL Server,before it worked fine.If anyonecould provide any advice I would be very grateful,as this is pretty urgent.

    Hi,
    I just contacted the driver vendor (Atinav Inc).heard that aveconnect jdbc driver is now updated to work with latest SQL server fixes from microsoft.
    FYI, aveconnect jdbc driver link http://www.atinav.com/products/aveconnect/aveconnect.htm
    HTH,
    -ashraff.

Maybe you are looking for

  • Hard drives not visible in Disk Utility

    I decided to add two additional 1.5 TB drives to my (early 2008) Mac Pro, in addition to the two 1.0 TB drives already there. I have a Mac RAID card, but the drives were not configured into an array because I was having battery and setting problems w

  • DBAdapter polling with logical delete x distrib polling x DB rows per trans

    Hi all. I'm trying to configure a DBAdapter with "logical delete" polling strategy, distributed polling (cluster environment) and a defined number of "Database Rows per Transaction". When I check the box "Distributed Polling", the SQL generated gets

  • Two Questions I Cannot Solve

    Hi There! I Am Setting Up My Public Skype Account. But Here Are Two Questions I Couldn't Figure Out How To Do. 1) How To Disable Messaging? (ex. you cannot message echo service)2) How Do I Message Everyone, Everything at the Same Time? (including the

  • N97 White screen of death (WSOD) with FW V11.0.21

    I have my nokia N97 almost a week now. This morning opera mini froze and I couldn't turn it off so I removed the battery. After reinserting the battery and turned the phone on I got the White screen of death (WSOD), just a white screen with the word

  • Restrict saving a form w/ data entries

    I would like to save my form such that when I enter client data this data will not show up the next time I open the form, even if I TRY to save it. I think this is essentially a Read Only format but I'm unsure how to do this while still allowing the