V$undostat, maxquerylen varies during the intervals

Hi,
Oracle 10.2.0.4 with undo_retention=900 and no guarantee.
I have been staring at this all day. I noticed that our current undo recommendation on one of our production databases was telling us the undo tablespace needs to be 2 times larger (+250GB). I got a little concerned because just last week the recommendation was well below half of that. Looking at v$undostat, I noticed where the problem must be. The maxquerylen is saying that there is a sql statement that ran on 7/19/2010 that v$undostat still, apparently, thinks that the query is active I guess. The job related to the query finished successfully in less than 40 minutes on the day it ran(on 7/19).
So, to be clear... there is no active transaction, even now, that is more than 500 seconds old.
Anybody have any clue as to why/how the maxquerylen would jump up and down as shown below?
TO_CHAR(END_TIME,'MM- MAXQUERYLEN MAXQUERYID
07-21-2010 16:38:2010 1839 9xvq4g6100pdy
07-21-2010 16:48:2010 213380 60mwzy51cs6sx
07-21-2010 16:58:2010 213987 60mwzy51cs6sx
07-21-2010 17:08:2010 164 cbq154rd1rag1
07-21-2010 17:18:2010 770 cbq154rd1rag1
07-21-2010 17:28:2010 215807 60mwzy51cs6sx
07-21-2010 17:38:2010 216414 60mwzy51cs6sx
07-21-2010 17:48:2010 497 cbq154rd1rag1
07-21-2010 17:58:2010 217627 60mwzy51cs6sx
07-21-2010 18:08:2010 218233 60mwzy51cs6sx
07-21-2010 18:18:2010 218842 60mwzy51cs6sx
07-21-2010 18:28:2010 219448 60mwzy51cs6sx
07-21-2010 18:38:2010 220055 60mwzy51cs6sx
07-21-2010 18:48:2010 220662 60mwzy51cs6sx
07-21-2010 18:58:2010 221269 60mwzy51cs6sx
07-21-2010 19:08:2010 221876 60mwzy51cs6sx
07-21-2010 19:18:2010 1003 ck24v2bkkru13
07-21-2010 19:28:2010 1611 ck24v2bkkru13
07-21-2010 19:38:2010 2217 ck24v2bkkru13
07-21-2010 19:48:2010 2824 ck24v2bkkru13
07-21-2010 19:58:2010 416 g9b1yvbnj8qbv
07-21-2010 20:07:2010 225213 60mwzy51cs6sx
Thanks!!

Hello,
Yes you are right, the MAXQUERYLEN of the query *60mwzy51cs6sx* is very high (213380 seconde = 2,5 day) :
07-21-2010 16:48:2010 213380 60mwzy51cs6sx
07-21-2010 20:07:2010 225213 60mwzy51cs6sxAnd more over, it seems that the same query repeat several time and the MAXQUERYLEN is higher and higher.
You may get the offending query as follow:
Select sql_text from v$sqltext where sql_id = '60mwzy51cs6sx'  /* MAXQUERYID value */It seems that the MAXQUERYLEN is never resetted for this query.
If you are sure that this query is not still running for almost 3 days so, I don't know why there's this kind of behaviour and, if I were you, I'll ask to the support.
Best regards,
Jean-Valentin

Similar Messages

  • Problem with udev during the boot

    Hi guys,
    Sorry if I didn't post this message in the good section but I didn't find any support section, so I supposed that this section was the most apropriate.
    So, I have a really ennoying problem with udevd since the latest kernel upgrade (3.2.2-1) during the boot.
    I have the following error at the boot:
    "udevd[37]: No such file or directory." and then the OS is unable to mount the disks and give me the weakest shell ever while saying me "You're on your own". Thank you Arch!
    I can't find any informations on google about this error, and I d'ont find a complete explanation of udev debug (specialy because no logs are written at this moment).
    Thank you very much guys.

    GreenTime wrote:
    qaws or someone else:
    Could you elaborate on how to just reinstall the kernel? Somehow I'm stuck
    Usually, you'll need a live CD (I recommend an ArchLinux Installation CD) or an LTS kernel sitting around on the same machine that can get you more or less into your favored machine.  It can also be done, by pxe/diskless booting from an installation (I'm a fan of quick and efficient)!  Then you have to mount all the necessary partitions /, /usr (sometimes /var if you need your packages) and most importantly /boot.  They have to be mounted underneath the rescue system being used , usually under /mnt.  Also needed is a mock-up of your /proc. /sys and /dev.  Once they are mounted accordingly, then you chroot into your installation you need to fix.  It helps if the rescue system has the same kernel, because the chroot'ed system usually tries to build your kernel based on the rescue system, but if you have your kernel package handy, it will build it with the packages modules & kernel.

  • Declaring var, changing the name

    I have an myArray created from list of master pageItems:
    myDoc.masterSpreads[0].pageItems.everyItem().name.sort());
    I am going to use every of this Array element in my dialog as a
    checkboxControls.add ({staticLabel: myArray[k]});
    At the same time I should declare a variables which will keep user checkedState:  .
    So thats should be myChck_1, myChck_2, ... myChck_n,  - depends on myArray.length - declared.
    How can I declare variables with names changing with counter "k" value?
    Thx

    Let's try to make it clear.
    Given an array of strings—say myNames—the goal is to associate a control (here a checkbox) to each string.
    The first stage is to create each control within the UI container. This can be done easily, as illustrated in the original post:
    // myNames is an array of strings
    var i;
    for( i=0 ; i < myNames.length ; ++i )
       myCheckboxControls.add({ staticLabel: myNames[i] });
    The above code produces the corresponding control objects—instances of CheckboxControl—but it does not provide a convenient way to access these objects using the original index (in myNames). What the author needs is to keep a reference to each control and to have access to each reference the same way he loops through myNames (i.e., by index). Hence, the ideal structure for this is another array.
    The point is that the CheckboxControls.add(...) method returns a reference to the CheckboxControl object  it just created. You can store this reference in a variable, or directly within your destination array.
    In JavaScript, arrays basically behave as regular objects in that you can fill them 'on the fly' using an integer—the index—in the role of the property name. We can therefore develop the initial code as follows:
    // myNames is an array of strings
    var i;
    var destArray = []; // declare an empty Array
    for( i=0 ; i < myNames.length ; ++i )
       destArray[i] = myCheckboxControls.add({ staticLabel: myNames[i] });
    The only improvement is that the reference to each newly created control is registered in destArray.
    > How does one loop through the new array for the names while also looping through the checkbox array?
    In fact, the code loops through an existing array (myNames), builds for each index a control based on myNames[i] and stores the corresponding reference in destArray using the same index. The resulting array is gradually filled during the loop. and the correspondence between destArray and myNames is maintained through a common index.
    Now, given a specific index, k, one can easily access to both the corresponding label (myNames[k]) and the corresponding control state: destArray[k].checkedState.
    @+
    Marc

  • Concern during the creation of a menu contextual

    Hello has all, I am a french developer using
    Flex/ActionScript for the development of application to work.
    I have a concern during the creation of a menu contextual.
    I have could contater that a contextMenuItem with the value
    “delete” is not posted in my menu contextual.
    Sample :
    var myContextMenu : ContextMenu() = new ContextMenu();
    myContextMenu.hideBuiltInItems();
    var customItemsArr : Array = new Array();
    var item : ContextMenuItem = new
    ContextMenuItem("supprimer");
    item.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT,
    deleteHandler);
    customItemsArr.push(item);
    myContextMenu.customItems = customItemsArr;
    on the other hand the same code with a different value that
    to delete will be taken into account.
    Is this an error of my share??
    Does Y have you it of another words which are not to accept
    in a menu contextual (nothing on this subject is specified in the
    api one)??
    thank you for your answer

    Hi,
    It is probably that the one or both of the following situations
    apply:
    1)  please check the value for field BEXCLUDE in table GB01 for the
    relevant field(s).  If the field has the value X then it cannot be
    substituted in the standard system.
    Please refer to the attached note 42615 regarding this.
    2) please check if any of these substitutions involved a modification
    at callup point 3.
    See the attached note 386896, where it states:
    "As of Release ERP 2004, you can no longer use the source code
    corrections as these can cause inconsistencies between the entry
    view and the general ledger view.
    As of Release ERP 2004 you can also use the AC_DOCUMENT BADI for
    postings using the accounting interface."
    Reg
    Madhu M

  • I want to reinstall CS4 as it has been doing some strange things regarding printing, etc. However, when I did this before, it created a major problem and I ended up buying a new computer because no one could figure out why it kept hanging up during the in

    I want to reinstall CS4 as it has been doing some strange things regarding printing, etc. However, when I did this before, it created a major problem and I ended up buying a new computer because no one could figure out why it kept hanging up during the installation. Hours on the phone, no results. I'm scared to do it on this computer. Should I try? Not even the Adobe support could get it resolved. I believe it was somehow reading a product number that could not be deleted or something, and nothing worked.
    Message was edited by: Doug Doug

    Hello, as an addition:
    In your case I would download a really new trial version of your program(s) in question and change it/them into a "real" version later, BUT because you said, that you "re-installed" already, so it will become a little bit more complicated. It would be necessary that you have to use "Adobe Creative Suite Cleaner Tool" as Keith wrote.
    Here an advice for that (The order varies depending on your individual needs. Please read all my proposals first, so you can better choose the first step:)
    1. Maybe you have to activate/deactivate, so please have a look there:
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html
    2. Sometimes, we know in the meantime, the "opm.db file" is the culprit. In this case you should delete it.
    3. Be careful with (de)installing aso. by (de)installing by your own resources. As much as I regret it and as strange as it may seem I fear it's a challenge for Adobe's Creative Cloud Cleaner Tool. Sometimes - for whatever reasons - CC doesn't "want" to work. In this case you should CC completely delete and reinstall by help of Adobe Creative Cloud Cleaner Tool. (A try to uninstall by own resources is not enough!)
    I quote: Adobe Creative Suite Cleaner Tool helps resolve installation problems for Adobe Creative Cloud and Adobe Creative Suite (CS3-CS6) applications. The tool removes installation records for prerelease installations of Creative Cloud or Creative Suite applications. It does not affect existing installations of previous versions of Creative Cloud or Creative Suite applications.
    Please use: http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html   and follow the prescribed sequence of operations
    4. If necessary and for further questions click through http://helpx.adobe.com/contact.html and if "open" please use the chat, I for may part - as it seems unlike you - had the best experiences. I quote from Adobe's employee Preran: The chat button is activated as soon as there is an agent available to help.
    Hans-Günter

  • ERROR CREATING DATABASE INSTANCE during the installation

    I try to install NW04 SP16 in my desktop. During the installation, one error occured that stop the installation process.
    I remembered last time I had the similar problem on my laptop. I reinstalled my Windows OS, and tried again, everything goes smooth.
    But now, I cannot reinstall the Windows OS in my client company.
    What seems to be the problem here?
    <i>ERROR      2006-11-03 14:38:49 [iaxxinscbk.cpp:289]
               abortInstallation
    CJS-00030  Assertion failed: in
    function sapdb_db_create(db_nm, db_host, db_ver) {
        var dep_root = sapdb_inst_root(db_nm);
        var sdb_i = new sdbInstance();
        sdb_i.dbName = db_nm;
        sdb_i.dbHost = db_host;
        sdb_i.dbVer = db_ver[0] + "." + db_ver[1];
        sdb_i.ctlUser = sapdb_get_db_user("CONTROL", db_nm, db_host);
        sdb_i.ctlUserPasswd = sapdb_get_db_user_passwd("CONTROL", db_nm, db_host);
        var actorObj = new SdbExtActor();
        actorObj.setSdbInstance(sdb_i);
        actorObj.setDbmCmd("DB_CREATE");
        actorObj.setExecutable(sapdb_dbmcli_path());
        actorObj.setDbRoot(dep_root);
        var rv = actorObj.sessionExecute();
        ASSERT(arguments.callee, rv == "OK", " SDB: ERROR CREATING DATABASE INSTANCE! Check the XCMDOUT.LOG FILE");
        var creation_ok = false;
        var i_size = actorObj.outSize();
        for (var i = 0; i < i_size; i++) {
            var s_line = actorObj.getOutputLine(i);
            if (/OK/.test(s_line)) {
                creation_ok = true;
        ASSERT(arguments.callee, creation_ok, "SDB: ERROR WHILE DB INSTANCE CREATION! CHECK THE XCMDOUT.LOG FILE! ");
    SDB: ERROR CREATING DATABASE INSTANCE! Check the XCMDOUT.LOG FILE</i>
    Thanks for advise.
    Kent

    Hi, I have exactly the same problem. How do you solved this issue?

  • Cacaoadm error during the installation

    Hello everyone
    I haven't much experience with Solaris and decieded to play a bit with it and the whole software available for the system. The N1 System Manager sounded quite nice so I tried to install it. I had a few problems but until now, I was able to overcome them but now, I'm stuck with the following error:
    -bash-3.00# ./install
    Please read the Software License Agreement before proceeding.
    Do you accept the license agreement? [y/n]:
    y
    Checking required perl modules...
                    N1SM Installer (version 1.3.3 on SunOS)
    1. Install OS packages.                                             [Completed]
    2. Install Expect.                                                  [Completed]
    3. Install IPMI tool.                                               [Completed]
    4. Install JDK 1.5.                                                 [Completed]
    5. Install service provisioning components.                         [Completed]
    6. Install OS provisioning components.                              [Completed]
    7. Copy DHCP configuration file.                                    [Completed]
    8. Install user interface components.                               [Completed]
    9. Install service container components.                        [Partially Run]
    10. Install N1 System Manager.                                   [Not Completed]
    Non-interactive install in progress.
    Executing current step:  Install service container components...
                    N1SM Installer (version 1.3.3 on SunOS)
    1. Install OS packages.                                             [Completed]
    2. Install Expect.                                                  [Completed]
    3. Install IPMI tool.                                               [Completed]
    4. Install JDK 1.5.                                                 [Completed]
    5. Install service provisioning components.                         [Completed]
    6. Install OS provisioning components.                              [Completed]
    7. Copy DHCP configuration file.                                    [Completed]
    8. Install user interface components.                               [Completed]
    9. Install service container components.                        [Partially Run]
    10. Install N1 System Manager.                                   [Not Completed]
    Failed Step:  Install service container components.
    The following is a portion of the installer
    log which may indicate the cause of the error.
    If this does not indicate the cause of the
    error, you will need to view the full log
    file. More information on how to do that is
    available below.
    Installation of <SUNWjdmk-runtime-jmx> was successful.
    /opt/SUNWcacao/bin/cacaoadm: test: argument expected
    Error setting cacao java flags "-Dsun.security.pkcs11.enable-solaris=false -Xmx1                                                           024m -Xss256k -server"
    Please fix the problem and then try this step again.
    For a full log of the failed install see the file: /var/tmp/installer.log.8863.
    t. Try this step again (correct the failure before proceeding)
    x. Exit
    Enter selection: (t/x)Any ideas what's wrong with the "/opt/SUNWcacao/bin/cacaoadm: test: argument expected"?

    Hello Kishore,
    I'm using Solaris 10 11/06 s10x_u3wos_10 X86.
    /var/tmp/installer.log.8863:
    All required perl modules installed.
    Ignoring job: 01removeEmptyDirs.pl
    Ignoring job: 0checkRPMs.pl
    Ignoring job: 0installPython.pl
    Executing job: jobs/4installCacao.pl --install 
    Calling installPackage(/software/Solaris_x86/Product//components/cacao//SUNWcacaocfg)
    installPKG() from dir /software/Solaris_x86/Product//components/cacao/ "SUNWcacaocfg"
    installPKG(): Installing from /software/Solaris_x86/Product//components/cacao/ pkg SUNWcacaocfg
    Processing package instance <SUNWcacaocfg> from </software/Solaris_x86/Product/components/cacao>
    Cacao configuration files(i386) 1.1,REV=15
    This appears to be an attempt to install the same architecture and
    version of a package which is already installed.  This installation
    will attempt to overwrite this package.
    Copyright 2004-2005 Sun Microsystems, Inc.  All rights reserved.
    Use is subject to license terms.
    Using </> as the package base directory.
    ## Processing package information.
    ## Processing system information.
       15 package pathnames are already properly installed.
    ## Verifying disk space requirements.
    ## Checking for conflicts with packages already installed.
    ## Checking for setuid/setgid programs.
    This package contains scripts which will be executed with super-user
    permission during the process of installing this package.
    Do you want to continue with the installation of <SUNWcacaocfg> [y,n,?]
    Installing Cacao configuration files as <SUNWcacaocfg>
    ## Installing part 1 of 1.
    Installation of <SUNWcacaocfg> was successful.
    Calling installPackage(/software/Solaris_x86/Product//components/cacao//SUNWcacao)
    installPKG() from dir /software/Solaris_x86/Product//components/cacao/ "SUNWcacao"
    installPKG(): Installing from /software/Solaris_x86/Product//components/cacao/ pkg SUNWcacao
    Processing package instance <SUNWcacao> from </software/Solaris_x86/Product/components/cacao>
    Cacao Component(i386) 1.1,REV=15
    This appears to be an attempt to install the same architecture and
    version of a package which is already installed.  This installation
    will attempt to overwrite this package.
    Copyright 2004-2005 Sun Microsystems, Inc.  All rights reserved.
    Use is subject to license terms.
    Using </opt> as the package base directory.
    ## Processing package information.
    ## Processing system information.
       73 package pathnames are already properly installed.
    ## Verifying package dependencies.
    ## Verifying disk space requirements.
    ## Checking for conflicts with packages already installed.
    ## Checking for setuid/setgid programs.
    The following files are being installed with setuid and/or setgid
    permissions:
    * /opt/SUNWcacao/lib/tools/cacaocsc <setuid root>
    * /opt/SUNWcacao/lib/tools/suexec <setuid root>
    * - overwriting a file which is also setuid/setgid.
    Do you want to install these as setuid/setgid files [y,n,?,q]
    This package contains scripts which will be executed with super-user
    permission during the process of installing this package.
    Do you want to continue with the installation of <SUNWcacao> [y,n,?]
    Installing Cacao Component as <SUNWcacao>
    ## Executing preinstall script.
    ## Installing part 1 of 1.
    ## Executing postinstall script.
    Saving cacao configuration parameters in //etc/opt/SUNWcacao/old_config.bak
    Installation of <SUNWcacao> was successful.
    Calling installPackage(/software/Solaris_x86/Product//components/cacao//ext_pkgs/jdmk/SUNWjdmk-runtime.pkg)
    installPKG() from file /software/Solaris_x86/Product//components/cacao//ext_pkgs/jdmk/SUNWjdmk-runtime.pkg "SUNWjdmk-runtime"
    installPKG(): Installing from /software/Solaris_x86/Product//components/cacao//ext_pkgs/jdmk/SUNWjdmk-runtime.pkg pkg SUNWjdmk-runtime
    Processing package instance <SUNWjdmk-runtime> from </software/Solaris_x86/Product/components/cacao/ext_pkgs/jdmk/SUNWjdmk-runtime.pkg>
    Java DMK 5.1 Runtime Library(all) 5.1,REV=34
    This appears to be an attempt to install the same architecture and
    version of a package which is already installed.  This installation
    will attempt to overwrite this package.
    Using </opt> as the package base directory.
    ## Processing package information.
    ## Processing system information.
       11 package pathnames are already properly installed.
    ## Verifying disk space requirements.
    ## Checking for conflicts with packages already installed.
    ## Checking for setuid/setgid programs.
    Installing Java DMK 5.1 Runtime Library as <SUNWjdmk-runtime>
    ## Installing part 1 of 1.
    [ verifying class <none> ]
    Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
    Use is subject to license terms.
    Installation of <SUNWjdmk-runtime> was successful.
    Calling installPackage(/software/Solaris_x86/Product//components/cacao//ext_pkgs/jdmk/SUNWjdmk-runtime-jmx.pkg)
    installPKG() from file /software/Solaris_x86/Product//components/cacao//ext_pkgs/jdmk/SUNWjdmk-runtime-jmx.pkg "SUNWjdmk-runtime-jmx"
    installPKG(): Installing from /software/Solaris_x86/Product//components/cacao//ext_pkgs/jdmk/SUNWjdmk-runtime-jmx.pkg pkg SUNWjdmk-runtime-jmx
    Processing package instance <SUNWjdmk-runtime-jmx> from </software/Solaris_x86/Product/components/cacao/ext_pkgs/jdmk/SUNWjdmk-runtime-jmx.pkg>
    Java DMK 5.1 JMX libraries(all) 5.1,REV=34
    This appears to be an attempt to install the same architecture and
    version of a package which is already installed.  This installation
    will attempt to overwrite this package.
    Using </opt> as the package base directory.
    ## Processing package information.
    ## Processing system information.
       9 package pathnames are already properly installed.
    ## Verifying disk space requirements.
    ## Checking for conflicts with packages already installed.
    ## Checking for setuid/setgid programs.
    Installing Java DMK 5.1 JMX libraries as <SUNWjdmk-runtime-jmx>
    ## Installing part 1 of 1.
    [ verifying class <none> ]
    Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
    Use is subject to license terms.
    Installation of <SUNWjdmk-runtime-jmx> was successful.
    /opt/SUNWcacao/bin/cacaoadm: test: argument expected
    Error setting cacao java flags "-Dsun.security.pkcs11.enable-solaris=false -Xmx1024m -Xss256k -server"# pkginfo | grep SUNWcacao:
    application SUNWcacao                    Cacao Component
    application SUNWcacaocfg                 Cacao configuration files
    application SUNWcacaort                  Common Agent Container - Runtime# pkginfo -l SUNWcacao
       PKGINST:  SUNWcacao
          NAME:  Cacao Component
      CATEGORY:  application
          ARCH:  i386
       VERSION:  1.1,REV=15
       BASEDIR:  /opt
        VENDOR:  Sun Microsystems, Inc.
          DESC:  Cacao framework
        PSTAMP:  1.1,REV=15-patch_01,Aug/23/05
      INSTDATE:  Jul 01 2007 22:21
       HOTLINE:  Please contact your local service provider
        STATUS:  completely installed
         FILES:       73 installed pathnames
                      16 directories
                       5 executables
                       2 setuid/setgid executables
                    2589 blocks used (approx)

  • HT201366 When I try to install this update on 10.6.8, it dies during the installation

    During the install, just after it says "moving files into place with shove" it then goes into failed state and has a 'ok' button to continue & reboot. 
    The /var/log/system.log shows:
    Jul  7 21:57:06: --- last message repeated 3 times ---
    Jul  7 21:57:06 James-Lindemans-MacBook-Pro [0x0-0x1d01d].com.apple.SoftwareUpdate[404]: Input/output error
    Jul  7 21:57:07 James-Lindemans-MacBook-Pro Software Update[404]: REQ: moving files into place with shove
    Jul  7 21:57:07 James-Lindemans-MacBook-Pro Software Update[404]: REQ: install failed
    Jul  7 21:57:07 James-Lindemans-MacBook-Pro Software Update[404]: SWU: installing "Security Update 2013-003, 1.0"
    Jul  7 21:57:07 James-Lindemans-MacBook-Pro Software Update[404]: SWU: installing "iTunes, 11.0.4"
    Jul  7 21:57:25 James-Lindemans-MacBook-Pro [0x0-0x1d01d].com.apple.SoftwareUpdate[404]: /: no supported helper partitions to update.
    Jul  7 21:57:25 James-Lindemans-MacBook-Pro kextd[10]: updated kernel boot caches
    Jul  7 21:57:25 James-Lindemans-MacBook-Pro Software Update[404]: kextcache returned 0
    Jul  7 21:57:25 James-Lindemans-MacBook-Pro Software Update[404]: Running /sbin/reboot
    I have Mac OS 10.6.8 installed.

    Repair permissions, restart your computer, reinstall the update directly from Apple's download website instead of Software Update - Security Update  2013 - 003 ( Snow Leopard).
    After the installation, repair permissions and restart your computer again.

  • Can I return my macbook air that I brought during the holidays (Thanksgiving)

    I was gifted a Macbook air during the thanksgiving season, and since I am a computer science developer ( a student to be precise), I want to return my Mac and opt in for a Windows machine ( so that I can get enough software support if needed, there are several people around me with a pc). I was wondering, how can I return my laptop ? What are the terms and conditions ?
    Thank you in advance.

    I would think you cannot return a product after the return date has passed.
    Call the Apple Store and ask them.

  • Upgrade fails in the phase STARTSAP_TBUPG during the upgrade of CRM 4 to 5

    Hello,
    Upgrade failed with the below message in the upgrade phase STARTSAP_TBUPG during the upgrade of CRM 4.0 to CRM 5.0
    Error Message:
    SYSTEM START failed, code -1
                 -1: 'startsap.exe' returned an error
                 See file 'D:\usr\sap\put\log\R3up.ECO' for details.
    R3up.ECO:
    SAPup>  Starting subprocess startsap.exe with id 5844 at 20080402142258
    EXECUTING D:\usr\sap\put\exe\startsap.exe name=SID nr=00 SAPDIAHOST=Hostname
    Environment: dbms_type=mss
    Environment: dbs_mss_schema=cdu
    STARTSAP failed
    Details are written to D:\usr\sap\put\tmp\startSID.log
    Process with ID 6276 terminated with status -1
    startSID.log
    running D:\usr\sap\put\exe\sapstart.exe name=SID nr=00 SAPDIAHOST=Hostname -wait
    SAPSTART finished successfully on Host_SID_00, but at least one process doesn't run correctly:
         msg_server.exe, MessageServer, Running, 2008 04 02 14:22:58, 0:03:19
         disp+work.exe, Dispatcher, Running, Message Server connection ok, Dialog Queue time: 0.00 sec, 2008 04 02 14:22:58, 0:03:19
         igswd.exe, IGS Watchdog, Stopped, 2008 04 02 14:22:58, 0:00:00
    D:\usr\sap\put\exe\sapstart.exe=>sapparam(1c): No Profile used.
    It is trying to start the shadow instance and failing by ending all the work process
    DEV_DISP:
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      01
    sid        SID
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    150
    intno      20050900
    make:      multithreaded, ASCII, optimized
    pid        5348
    Wed Apr 02 17:22:10 2008
    kernel runs with dp version 234(ext=109) (@(#) DPLIB-INT-VERSION-234)
    length of sys_adm_ext is 364 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (01 5348) [dpxxdisp.c   1245]
         shared lib "dw_xml.dll" version 150 successfully loaded
         shared lib "dw_xtc.dll" version 150 successfully loaded
         shared lib "dw_stl.dll" version 150 successfully loaded
         shared lib "dw_gui.dll" version 150 successfully loaded
         shared lib "dw_mdm.dll" version 150 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    Wed Apr 02 17:22:22 2008
    WARNING => DpNetCheck: NiHostToAddr(www.doesnotexist0100.qqq.nxst) took 12 seconds
    Wed Apr 02 17:22:40 2008
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 18 seconds
    ***LOG GZZ=> 2 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5373]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >HOSTNAME_SID_01                      <
    DpShMCreate: sizeof(wp_adm)          22968     (1044)
    DpShMCreate: sizeof(tm_adm)          3642120     (18120)
    DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528040/528048
    DpShMCreate: sizeof(comm_adm)          528048     (1048)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0     (96)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1296)
    DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 05560040, size: 4281040)
    DpShMCreate: allocated sys_adm at 05560040
    DpShMCreate: allocated wp_adm at 05561B30
    DpShMCreate: allocated tm_adm_list at 055674E8
    DpShMCreate: allocated tm_adm at 05567518
    DpShMCreate: allocated wp_ca_adm at 058E0820
    DpShMCreate: allocated appc_ca_adm at 058E4E70
    DpShMCreate: allocated comm_adm at 058E65E0
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 05967490
    DpShMCreate: allocated gw_adm at 059674D0
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 05967500
    DpShMCreate: allocated wall_adm at 05967508
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    ThTaskStatus: rdisp/reset_online_during_debug 0
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 2039 blocks reserved for free list.
    ES initialized.
    WARNING => System running without ICM - check rdisp/start_icman [dpxxdisp.c   12553]
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG Q0K=> DpMsAttach, mscon ( HOSTNAME) [dpxxdisp.c   11867]
    DpStartStopMsg: send start message (myname is >HOSTNAME_SID_01                      <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 40000000 for monitoring segment.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 150
    Release check o.K.
    Wed Apr 02 17:23:20 2008
    my types changed after wp death/restart 0x1f --> 0x1e
    my types changed after wp death/restart 0x1e --> 0x1c
    my types changed after wp death/restart 0x1c --> 0x18
    my types changed after wp death/restart 0x18 --> 0x10
    my types changed after wp death/restart 0x10 --> 0x0
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=1477
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Wed Apr 02 17:23:30 2008
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)               Wed Apr 02 11:53:30 2008
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program          Cl  User         Action                    Table
    0 DIA     6916 Ended         no      1   0        0                                                                         
    1 DIA     7724 Ended         no      1   0        0                                                                         
    2 DIA     6044 Ended         no      1   0        0                                                                         
    3 DIA     4300 Ended         no      1   0        0                                                                         
    4 DIA     6992 Ended         no      1   0        0                                                                         
    5 DIA     2412 Ended         no      1   0        0                                                                         
    6 DIA      432 Ended         no      1   0        0                                                                         
    7 DIA     8168 Ended         no      1   0        0                                                                         
    8 DIA     5420 Ended         no      1   0        0                                                                         
    9 DIA     9712 Ended         no      1   0        0                                                                         
    10 UPD     4320 Ended         no      1   0        0                                                                         
    11 ENQ     3476 Ended         no      1   0        0                                                                         
    12 BTC     2676 Ended         no      1   0        0                                                                         
    13 BTC     6816 Ended         no      1   0        0                                                                         
    14 BTC     9636 Ended         no      1   0        0                                                                         
    15 BTC     8356 Ended         no      1   0        0                                                                         
    16 BTC     7004 Ended         no      1   0        0                                                                         
    17 BTC     7284 Ended         no      1   0        0                                                                         
    18 BTC    10048 Ended         no      1   0        0                                                                         
    19 BTC     4560 Ended         no      1   0        0                                                                         
    20 BTC     4196 Ended         no      1   0        0                                                                         
    21 SPO     4268 Ended         no      1   0        0                                                                         
    Dispatcher Queue Statistics               Wed Apr 02 11:53:30 2008
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    1
    2000
    1
    1
    --------++++--
    +
    DIA
    3
    3
    2000
    3
    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          7
    wake_evt_udp_now     0
    wake events           total     3,  udp     3 (100%),  shm     0 (  0%)
    since last update     total     3,  udp     3 (100%),  shm     0 (  0%)
    Dump of tm_adm structure:               Wed Apr 02 11:53:30 2008
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks               Wed Apr 02 11:53:30 2008
    =============================
    Slots: 300, Used: 1, Max: 0
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    0
    DISPATCHER
    -1
    WPCAAD000
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1477
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Wed Apr 02 17:23:35 2008
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >HOSTNAME_SID_01                      < (normal)
    DpJ2eeDisableRestart
    DpModState: buffer in state MBUF_PREPARED
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=110,pac=1,MESG_IO)
    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 (1860) (SOFT_KILL)
    Terminate gui connections
    wait for end of work processes
    wait for end of gateway
    [DpProcDied] Process lives  (PID:1860  HANDLE:1448)
    waiting for termination of gateway ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1477
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Wed Apr 02 17:23:36 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:1860  HANDLE:1448)
    DpStartStopMsg: send stop message (myname is >HOSTNAME_SID_01                      <)
    NiIMyHostName: hostname = 'HOSTNAME'
    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 = 189 bytes
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=562,pac=1,MESG_IO)
    MsINiWrite: sent 562 bytes
    send msg (len 110+452) to name                    -, type 4, key -
    DpStartStopMsg: stop msg sent
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    NiIRead: read for hdl 2 timed out (0ms)
    DpHalt: no more messages from the message server
    DpHalt: send keepalive to synchronize with the message server
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=114,pac=1,MESG_IO)
    MsINiWrite: sent 114 bytes
    send msg (len 110+4) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_NOOP ok
    Send 4 bytes to MSG_SERVER
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    NiIPeek: peek successful for hdl 2 (r)
    NiIRead: hdl 2 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MSG received, len 110+4, flag 3, from MSG_SERVER          , typ 0, key -
    Received 4 bytes from MSG_SERVER                             
    Received opcode MS_NOOP from msg_server, reply MSOP_OK
    MsOpReceive: ok
    MsSendKeepalive : keepalive sent to message server
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    Wed Apr 02 17:23:37 2008
    NiIPeek: peek for hdl 2 timed out (r; 1000ms)
    NiIRead: read for hdl 2 timed out (1000ms)
    DpHalt: no more messages from the message server
    DpHalt: sync with message server o.k.
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   12213]
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiBufISelUpdate: new MODE -- (r-) for hdl 2 in set0
    SiSelNSet: set events of sock 1356 to: ---
    NiBufISelRemove: remove hdl 2 from set0
    SiSelNRemove: removed sock 1356 (pos=2)
    SiSelNRemove: removed sock 1356
    NiSelIRemove: removed hdl 2
    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/22
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 9)
    MBUF component DOWN
    NiICloseHandle: shutdown and close hdl 2 / sock 1356
    NiBufIClose: clear extension for hdl 2
    MsIDetach: detach MS-system
    cleanup EM
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 5348) [dpxxdisp.c   10461]
    Good Bye .....
    Please help me in resolving this issue
    Thanks,
    Vadi

    Hi Suhas,
    Have checked the hostname and it is correct.
    I am getting the below output When i run r3trans -x
    This is r3trans version 6.14 (release 700 - 04.03.08 - 16:43:00).
    r3trans finished (0000).
    I could see the below error message in dev_W21
    ExecuteAndFlush return code: 0x80040e14 Stmt: [if user_name() != 'sid_shd' setuser 'sid_shd']
    C  sloledb.cpp [ExecuteAndFlush,line 6470]: Error/Message: (err 15157, sev 0), Setuser failed because of one of the following reasons: the database principal 'cdu_shd' does not exist, its corresponding server principal does not have server access, this type of database principal cannot be impersonated, or you do not have permission.
    C  Procname: [ExecuteAndFlush - no proc]
    C  setuser 'cdu_shd' failed -- connect terminated
    C  failed to establish conn. 0
    Thanks,
    Vadi

  • Error during the upgrade phase "start_shdi_first"

    Hello,
    We are having issue with upgrading r/3 4.7 enterprise extension set to ECC 6.0
    Here the error message goes....
    starting system failed rc=0
    to analyse the error during start of shadow instance
    view files 'Startsfi.log' and 'devtrace.log'
    in directory usr\..put
    repeat phase until shadow instance is started
    and u can logon instance no '01'"
    We have changed the DDIC password during upgrade.after that we ran the initphase to update the password.
    I think sapup is referring the old password which was entered initially during the upgrade and we dont remember the old password also.
    Appreciate your response
    Startsfi.log
    1 ETQ201XEntering upgrade-phase "START_SHDI_FIRST" ("20080218175653")
    2 ETQ366 Connect variables are set for shadow instance access
    4 ETQ399 System-nr = '01', GwService = 'sapgw01'
    4 ETQ399 Environment variables:
    4 ETQ399   dbs_mss_schema=de4
    4 ETQ399   auth_shadow_upgrade=1
    4 ETQ399 Set environment for shadow connect:
    4 ETQ399 ENV: dbs_mss_schema=de4
    4 ETQ399 ENV: auth_shadow_upgrade=1
    4 ETQ399 Set RFC variables for shadow connect:
    4 ETQ399 System-nr = '01', GwService = 'sapgw01'
    4 ETQ399 Set tool parameters for shadow connect:
    4 ETQ380 computing toolpath for request "TP_SHADOW_CONNECT"
    4 ETQ381 request "TP_SHADOW_CONNECT" means "tp needs to connect to shadow system"
    4 ETQ382 translates to group "R3UP_TOOL_GROUP_NEW"
    4 ETQ383 translates to path "exe"
    4 ETQ383 translates to path "exe"
    4 ETQ399   default TPPARAM: SHADOW.TPP
    4 ETQ380 computing toolpath for request "TP_ALWAYS_NEW"
    4 ETQ381 request "TP_ALWAYS_NEW" means "always tp from DIR_PUT/exe, for phase KX_SWITCH"
    4 ETQ382 translates to group "R3UP_TOOL_GROUP_NEW"
    4 ETQ383 translates to path "exe"
    4 ETQ383 translates to path "exe"
    2 ETQ399 Starting shadow instance
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    4 ETQ233 Calling function module "UPG_IS_SHADOW_SYSTEM" by RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    2EETQ235 Call of function module "UPG_IS_SHADOW_SYSTEM" by RFC failed (error-status "-3")
    4 ETQ239 Logging off from SAP system
    2 ETQ353 Starting system
    2 ETQ370 starting test RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    4 ETQ233 Calling function module "UPG_IS_SHADOW_SYSTEM" by RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    2EETQ235 Call of function module "UPG_IS_SHADOW_SYSTEM" by RFC failed (error-status "-3")
    4 ETQ239 Logging off from SAP system
    2WETQ372 test RFC failed, rc="-3"
    2 ETQ370 starting test RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    4 ETQ233 Calling function module "UPG_IS_SHADOW_SYSTEM" by RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    2EETQ235 Call of function module "UPG_IS_SHADOW_SYSTEM" by RFC failed (error-status "-3")
    4 ETQ239 Logging off from SAP system
    2WETQ372 test RFC failed, rc="-3"
    2 ETQ370 starting test RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    4 ETQ233 Calling function module "UPG_IS_SHADOW_SYSTEM" by RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    2EETQ235 Call of function module "UPG_IS_SHADOW_SYSTEM" by RFC failed (error-status "-3")
    4 ETQ239 Logging off from SAP system
    2WETQ372 test RFC failed, rc="-3"
    2 ETQ370 starting test RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    4 ETQ233 Calling function module "UPG_IS_SHADOW_SYSTEM" by RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    2EETQ235 Call of function module "UPG_IS_SHADOW_SYSTEM" by RFC failed (error-status "-3")
    4 ETQ239 Logging off from SAP system
    2WETQ372 test RFC failed, rc="-3"
    2 ETQ370 starting test RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    4 ETQ233 Calling function module "UPG_IS_SHADOW_SYSTEM" by RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    2EETQ235 Call of function module "UPG_IS_SHADOW_SYSTEM" by RFC failed (error-status "-3")
    4 ETQ239 Logging off from SAP system
    2WETQ372 test RFC failed, rc="-3"
    2 ETQ370 starting test RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    4 ETQ233 Calling function module "UPG_IS_SHADOW_SYSTEM" by RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    2EETQ235 Call of function module "UPG_IS_SHADOW_SYSTEM" by RFC failed (error-status "-3")
    4 ETQ239 Logging off from SAP system
    2WETQ372 test RFC failed, rc="-3"
    2 ETQ370 starting test RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    4 ETQ233 Calling function module "UPG_IS_SHADOW_SYSTEM" by RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    2EETQ235 Call of function module "UPG_IS_SHADOW_SYSTEM" by RFC failed (error-status "-3")
    4 ETQ239 Logging off from SAP system
    2WETQ372 test RFC failed, rc="-3"
    2EETQ399 Starting shadow instance failed
    2EETQ399 Test RFC failed finally
    2EETQ399 Dialogue: ERROR
    2EETQ399 Starting system failed, rc=0
    DEVTRACE:
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      01
    sid        DE4
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    111
    intno      20050900
    make:      multithreaded, ASCII, optimized
    pid        2272
    Mon Feb 18 16:08:40 2008
    kernel runs with dp version 229(ext=109) (@(#) DPLIB-INT-VERSION-229)
    length of sys_adm_ext is 364 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (01 2272) [dpxxdisp.c   1239]
         shared lib "dw_xml.dll" version 111 successfully loaded
         shared lib "dw_xtc.dll" version 111 successfully loaded
         shared lib "dw_stl.dll" version 111 successfully loaded
         shared lib "dw_gui.dll" version 111 successfully loaded
         shared lib "dw_mdm.dll" version 111 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    Mon Feb 18 16:08:52 2008
    WARNING => DpNetCheck: NiHostToAddr(www.doesnotexist0065.qqq.nxst) took 12 seconds
    Mon Feb 18 16:09:10 2008
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 18 seconds
    ***LOG GZZ=> 2 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5361]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >MTW02SDEC01_DE4_01                      <
    DpShMCreate: sizeof(wp_adm)          19976     (908)
    DpShMCreate: sizeof(tm_adm)          3605136     (17936)
    DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528040/528048
    DpShMCreate: sizeof(comm_adm)          528048     (1048)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0     (96)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1296)
    DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 065C0040, size: 4241064)
    DpShMCreate: allocated sys_adm at 065C0040
    DpShMCreate: allocated wp_adm at 065C1B30
    DpShMCreate: allocated tm_adm_list at 065C6938
    DpShMCreate: allocated tm_adm at 065C6968
    DpShMCreate: allocated wp_ca_adm at 06936BF8
    DpShMCreate: allocated appc_ca_adm at 0693B248
    DpShMCreate: allocated comm_adm at 0693C9B8
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 069BD868
    DpShMCreate: allocated gw_adm at 069BD8A8
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 069BD8D8
    DpShMCreate: allocated wall_adm at 069BD8E0
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 2046 blocks reserved for free list.
    ES initialized.
    WARNING => System running without ICM - check rdisp/start_icman [dpxxdisp.c   12437]
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG Q0K=> DpMsAttach, mscon ( MTW02SDEC01) [dpxxdisp.c   11753]
    DpStartStopMsg: send start message (myname is >MTW02SDEC01_DE4_01                      <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 111
    Release check o.K.
    Mon Feb 18 16:09:13 2008
    MBUF state ACTIVE
    DpModState: change server state from STARTING to ACTIVE
    trc file: "dev_ms", trc level: 1, release: "700"
    [Thr 4724] Mon Feb 18 16:08:40 2008
    [Thr 4724] MsSSetTrcLog: trc logging active, max size = 20971520 bytes
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    110
    intno      20050900
    make:      multithreaded, ASCII, optimized
    pid        5420
    [Thr 4724] ***LOG Q01=> MsSInit, MSStart (Msg Server 1 5420) [msxxserv.c   1824]
    [Thr 4724] MsInitAclInfo: acl file D:\usr\sap\put\DE4\SYS\global\ms_acl_info.DAT not found, unrestricted access
    [Thr 4724] MsGetOwnIpAddr: my host addresses are :
    [Thr 4724]   1 : [172.20.28.159] MTW02SDEC01.mindsap.com (HOSTNAME)
    [Thr 4724]   2 : [127.0.0.1] MTW02SDEC01.mindsap.com (LOCALHOST)
    [Thr 4724] MsHttpInit: full qualified hostname = MTW02SDEC01.mindsap.com
    [Thr 4724] HTTP logging is switch off
    [Thr 4724] MsHttpOwnDomain: own domain[1] = mindsap.com
    [Thr 4724] ms/icf_info_server : deleted
    [Thr 4724] *** I listen to port sapmsSHDDE4 (3601) ***
    [Thr 4724] CUSTOMER KEY: >J1537289841<
    trc file: "dev_rd", trc level: 1, release: "700"
    Mon Feb 18 16:09:10 2008
    ***LOG S00=> GwInitReader, gateway started ( 2344) [gwxxrd.c     1694]
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    110
    intno      20050900
    make:      multithreaded, ASCII, optimized
    pid        2344
    gateway runs with dp version 229(ext=109) (@(#) DPLIB-INT-VERSION-229)
    gw/local_addr : 0.0.0.0
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 40000000 for monitoring segment.
    Bind service sapgw01 (socket) to port 3301
    GwPrintMyHostAddr: my host addresses are :
      1 : [172.20.28.159] MTW02SDEC01.mindsap.com (HOSTNAME)
      2 : [127.0.0.1] MTW02SDEC01.mindsap.com (LOCALHOST)
    DpSysAdmExtCreate: ABAP is active
    DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    DpShMCreate: sizeof(wp_adm)          19976     (908)
    DpShMCreate: sizeof(tm_adm)          3605136     (17936)
    DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528040/528048
    DpShMCreate: sizeof(comm_adm)          528048     (1048)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0     (96)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1296)
    DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 06110040, size: 4241064)
    DpShMCreate: allocated sys_adm at 06110040
    DpShMCreate: allocated wp_adm at 06111B30
    DpShMCreate: allocated tm_adm_list at 06116938
    DpShMCreate: allocated tm_adm at 06116968
    DpShMCreate: allocated appc_ca_adm at 0648B248
    DpShMCreate: allocated comm_adm at 0648C9B8
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 0650D868
    DpShMCreate: allocated gw_adm at 0650D8A8
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 0650D8D8
    MtxInit: -2 0 0
    Mon Feb 18 16:09:14 2008
    GwDpInit: attached to gw_adm at 0650D8A8
    Thanks,
    Vadi

    Dear All,
    The issue has been resolved by changing the DDIC password to what it was when we have started the upgrade.The password was "welcome" when we have started with upgrade after that it has been changed to
    "basis05" during upgrade.we changed it back to welcome and it started working fine.
    Here it took long time to find out what was the password when we have starte upgrade.Resetting to standard ddic password also ddint help out in our case.
    Thanks for all your replies.

  • Can i charge my MacBook Pro during the airplane time because battery's life is 3 hours only? so is there any cable or something like that? Thanks in advance

    Greetings
    i have a question regarding my MacBook Pro laptop regarding charging it during the airplane time because in fact my battery's life is 3-4 hours, no more,
    so is there any cable or something like that to recharge on the plane? if not, please till me advices to save power for long life battery?
    Kind regargs
    Thanks in advance
    Kerollus Abdelnour

    To keep track of the battery charge and condition go to Apple Menu/System Preferences/EnergySaver and check the show battery status in menu bar.

  • No data in IT0007 during the period 05.05.2010 - 31.05.2010

    Hi experts,
            When i am running PY simulation for a particular employee who has joined as trainee a year before and was confirmed on 05.05.2011 I am getting error in log saying No data in IT0007 during the period 05.05.2010 to 31.05.2010. Pls brief me to overcome this issue ASAP.
    Thanks in advance
    Upensap

    Please go to PA30 select the IT0007 and go for overview
    check the start date of the records, check if there is data  for the mentioned period in the error?
    if not maintain it .
    from which date the employees payroll is going to start?

  • Why am I being charged data usage during the times my phone is not being used?

    I got a notice on my phone that my number has used all of its allowed data usage for the month.  I looked at my current usage and seen that I was being charged for data usage during the times that I am not using my phone.  I figured it up and it adds up to be more than the amount that you say I am over.  Explain please.

    Ok, what all should I turn off on my 5s and I should get any additional fees waived.  I just got this new phone about a week before Thanksgiving and never got a notice till it was full.  I have never went over before.  I also have never been told that I could be charged data even if I am not using my phone and I should make these changes to prevent this.
    Also, the phone was 2 days late getting to me.  So in addition to any additional fees that I may occur from the overage I should get a credit for the delay in my phone being sent.  Oh, and it probably would have been longer had I not called to see where it was at, which the guy that helped me put in the order and was to follow up the next day with a phone call to let me know what the status was and never did.

  • Attachments during the Ordering Moment

    Can attachments be added to a request during the ordering moment?
    We would like to allow customers the abilibty to add attachments prior to submitting a request.  Is this possible?
    Thank you,
    Brian

    Hi Tim,
    Indeed it does, it's all JSP as part of the RC environment - we're running it on a clustered WebSphere environment now.  It also abstracts the actual files away from the DB and in to a file share which I find is a far more sustainable architecture than bloating a DB with blobs.
    It also wraps some nice little security features around the attachments as well (we have it so links to the files can't be copied, and access to the file share is actually completely locked down which means the application HAS to open the attachment for a user - beneficial for Human Resources-style files).
    It was frequently requested on the old site, I would hope that it would become a productised feature in future by way of a 'field type' but it is quite a customisation so not sure if anytime soon.
    Cheers,
    Ant

Maybe you are looking for

  • Error while calling the webservice from XML spy

    HI , I hve imported the wsdl file into the xml spy and not trying to send a SOAP message to it . its asking for a user authentication . I am using the XIAPPLUSER for it and once i send the soap request . I am getting the error <b>HTTP operation 'POST

  • DVD burn on Vista can not be mount on Tiger

    Hi, I've received DVD burned on Vista which contains jpg file, but my Tiger doesn't want to mount it. It's visible on Disk Utility but Mount option is unavailable. Do you have any ideas what might be wrong? DVD is ok I've chcked it on XP.

  • IPod mini broken...how can I fix it?!?!

    Hi there, Can anyone give me some advice on how to solve my iPod mini problem (and yes, I have followed the support instructions to ABSOLUTELY NO AVAIL). My iPod mini always says I have no battery left, even when I have just charged it overnight. Now

  • Open Number document with template chooser

    Hi I have written a script that merges an address book group to a numbers document. I would like it to automatically open a Numbers document preferably with a chosen template (this would help with a label script). If Numbers is not set to open throug

  • Business Partner - Role

    Hi All, Please educate, I have a doubt in BP master usage. Let say for example totaly there are 4 BP role available (ZBP1, ZBP2, ZBP3, ZBP4) I have created a BP master data under role ZBP1 (lets say number of BP master is 10). After creating BP maste