RTMT Timezone data version mismatch

When opening the RTMT tool I get an error "There is a mismatch between timezone versions on this RTMT and the server you are trying to connect." Both my workstation and CUCM server are pointing to the same NTP so the time is the same. If I click Yes to update it errors and the tool closes. If I click NO to just let the mismatch be the tools opens up. Any suggestions on how to resolve this problem?
Thanks,
john

Hey John,
We experienced the same issue after we upgraded the callmanager.
Our fix was to uninstall RTMT and download it again from CCM and reinstall it.
Hope this helps,
if so, please rate.
Thanks.

Similar Messages

  • TimeZone data updates?

    Hi,
    In three weeks, Indiana will begin observing Daylight Savings Time for the first time, and several Indiana counties will be switching from Eastern Time to Central Time (http://en.wikipedia.org/wiki/Daylight_savings_time#Indiana). This change will have an impact on some legacy code in one of my company's applications which uses the java.util.TimeZone class to retrieve a TimeZone based on a zone String passed to the TimeZone.getTimeZone method.
    Is there any patch or other mechanism available that would allow us to update the TimeZone data for our JVM? The version that I'm working with is j2sdk1.4.2_07, but I anticipate that we'll also need to update our 1.5 environments as well. Any help would be greatly appreciated. Thanks,
    Rick

    sorry, i guess i wasn't clear. i meant the timezone data version, such as tzdata2005m, tzdata2005n, etc. or at least the dates, etc. for the data.
    w/the upcoming US DST changes & the recent australian DST monkey business i'd like to know which servers (ie JVM version) are going to be giving me tz heachaches.
    thanks.

  • Version Mismatch on Deployment

    Hi,
    I think I have a version mismatch problem here on deployment, but cannot figure out how to resolve it. We have two ASP.NET web apps deployed, called App1 and App2. Both use Crystal Reports. The reports display fine in a report viewer on App1 but on App2 all I get is a blank viewer.
    App1 was originally developed in Visual Studio 2008 along with CR2008, incorporating CrystalDecisions.Web ver. 12.0.2000. Then it was deployed to the server, along with appropriate redistributable. It all worked fine.
    App2 came along, and I switched to VS2010 and CR2010. I also converted App1 to build and run on my dev machine in VS2010 and CR2010, using CrystalDecisions.Web ver. 13.0.2000. On my dev machine, both apps run fine and report fine.
    I deployed App2 to the server, along with the appropriate redistributable for CR. I did not deploy the updated App1. So now on the server, App1 is looking for ver. 12.0.2000.0 of CrystalDecisions.Web in the GAC, and App2 is looking for ver. 13.0.2000.0.
    I have verified that both versions of CrystalDecisions.Web are in the GAC.
    Now App1 still reports fine on the server (although there were some non-reproducible hiccups), but App2 will not display the report. The viewer comes up blank. Again, this works on my dev machine.
    Any suggestions as to why App2 will not view the reports? The relevant code from the App2 web.config is listed below.  The source code from the page that actually displays the report is in a followup reply, since it seems too large to put in this message.
    Thanks.
    --Dan
    web.config
    <?xml version="1.0"?>
    <configuration>
      <configSections>
        <sectionGroup name="businessObjects">
          <sectionGroup name="crystalReports">
            <section name="rptBuildProvider" type="CrystalDecisions.Shared.RptBuildProviderHandler, CrystalDecisions.Shared, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304, Custom=null"/>
          </sectionGroup>
        </sectionGroup>
      </configSections>
         <appSettings>
           <add key="CrystalImageCleaner-Age" value="120000"/>
           <add key="CrystalImageCleaner-AutoStart" value="true"/>
           <add key="CrystalImageCleaner-Sleep" value="60000"/>
           <!--     DB credentials for CrystalReports -->
              <add key="ReportDatabaseName" value="MyDB"/>
              <add key="ReportPassword" value="myPassword?"/>
              <add key="ReportServerName" value="MyServer"/>
              <add key="ReportUserID" value="MyUser"/>
         </appSettings>
         <system.web>
          <compilation debug="true" targetFramework="4.0">
             <assemblies>
               <add assembly="CrystalDecisions.CrystalReports.Engine, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
               <add assembly="CrystalDecisions.ReportSource, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
               <add assembly="CrystalDecisions.Shared, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
               <add assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
               <add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
             </assemblies>
             <buildProviders>
                <add extension=".rpt" type="CrystalDecisions.Web.Compilation.RptBuildProvider, CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
             </buildProviders>
          </compilation>
           <httpHandlers>
              <add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
              <add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
           </httpHandlers>
           <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/>
         </system.web>
         <system.webServer>
           <handlers>
              <add name="CrystalImageHandler.aspx_GET" verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" preCondition="integratedMode"/>
              <add name="CrystalImageHandler.aspx_GET" verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" preCondition="integratedMode"/>
           </handlers>
         </system.webServer>
       <businessObjects>
          <crystalReports>
             <rptBuildProvider>
                <add embedRptInResource="true"/>
             </rptBuildProvider>
          </crystalReports>
       </businessObjects>
    </configuration>

    Here is the rest of the source code, both declarative and code-behind.
    ReportPage.aspx
    <%@ Page Title="" Language="C#" AutoEventWireup="true" CodeFile="ReportPage.aspx.cs"
         Inherits="Reports_ReportPage" %>
    <%@ Register Assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"
         Namespace="CrystalDecisions.Web" TagPrefix="CR" %>
    <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head id="Head2" runat="server">
         <title></title>
    </head>
    <body>
         <form id="form1" runat="server">
        <asp:ScriptManager ID="ScriptManager2" runat="server"></asp:ScriptManager>
         <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server"
          AutoDataBind="True"
              GroupTreeImagesFolderUrl=""
              Height="1158px"
              ToolbarImagesFolderUrl=""
              ToolPanelWidth="200px"
              Width="1059px" />
         </form>
    </body>
    </html>
    ReportPage.aspx.cs
    using CrystalDecisions.CrystalReports.Engine;
    using CrystalDecisions.Shared;
    using System;
    using System.Configuration;
    using System.Data;
    using System.Text;                                   
    public partial class Reports_ReportPage : Page
         ReportDocument rptDoc;
         protected void Page_Load(object sender, EventArgs e)
              #region QueryStrings
              long lngKeyFieldID = -1;
              string strReportName = string.Empty;
              string strReportType = string.Empty;
              if (Request.QueryString["strReportName"] != null)
                   strReportName = Request.QueryString["strReportName"].ToString();
              if (Request.QueryString["strReportType"] != null)
                   strReportType = Request.QueryString["strReportType"].ToString();
              if (Request.QueryString["KFID"] != null)
                   lngKeyFieldID = Convert.ToInt64(Request.QueryString["KFID"]);
              #endregion          //  QueryStrings
              rptDoc = new ReportDocument();
              string strReportSourceFolder = ConfigurationManager.AppSettings["ReportSourceFolder"];
              rptDoc.Load(strReportSourceFolder + strReportName + ".rpt");
          #region parameters
          if (lngKeyFieldID > 0)
             //  set parameters based on rpt name
                   switch (strReportName)
                        case "JobDetails":
                             rptDoc.SetParameterValue("JobID", lngKeyFieldID);
                             rptDoc.SetParameterValue("IsPaid", true);
                             break;
              #endregion          //  parameters
              #region DB connection
              //  from Deepu at SAP tech support
              //  this is necessary to pass db credentials programmatically
              //  the report must be designed in CR using an OLE DB connection type
              ConnectionInfo conn = new ConnectionInfo();
              conn.ServerName = ConfigurationManager.AppSettings["ReportServerName"];
              conn.DatabaseName = ConfigurationManager.AppSettings["ReportDatabaseName"];
              if (conn.ServerName == "Dev")
                   conn.IntegratedSecurity = true;
              else
                   conn.UserID = ConfigurationManager.AppSettings["ReportUserID"];
                   conn.Password = ConfigurationManager.AppSettings["ReportPassword"];
              Tables tables = rptDoc.Database.Tables;
              foreach (Table table in tables)
                   TableLogOnInfo tableLogonInfo = table.LogOnInfo;
                   tableLogonInfo.ConnectionInfo = conn;
                   table.ApplyLogOnInfo(tableLogonInfo);
              #endregion          //  DB connection
              #region Viewer
              CrystalReportViewer1.DisplayGroupTree = false;          //  deprecated, but still works
              CrystalReportViewer1.DisplayToolbar = true;
              CrystalReportViewer1.HasToggleGroupTreeButton = false;
              CrystalReportViewer1.HasToggleParameterPanelButton = false;
              CrystalReportViewer1.Page.Title = strReportName;
              CrystalReportViewer1.ReportSource = rptDoc;
              #endregion          //  Viewer
         protected void Page_Unload(object sender, EventArgs e)
              if (rptDoc != null)
                   rptDoc.Close();
                   rptDoc.Dispose();

  • Coherence version mismatch

    Hi ,
    I have a scenario where I run a bunch of coherence jvms in a cluster.
    There is a slight mismatch in coherence version on the data nodes (3.5.3/465 p2) & that of the non-storage nodes (3.5.3/465).
    I intermittently see issues which prevents the managed node from joining the cluster, with the following error  -
    This member could not join the cluster because of an incompatibility between the cluster protocol used by this member and the one being used by the rest of the cluster.  This is most likely caused by a Coherence version mismatch, or by mismatched protocol filters (e.g. compression, or encryption). Rejected by Member(Id=1 ....
    All my nodes have the same config override file.
    Is it mandatory that the non-storage & storage nodes have the same minor version of coherence (in this case it seems like the difference is in build# right ? ).
    I am using unicast listener for WKA which explicitly points the data nodes in cluster.
    Any pointers/suggestions , highly appreciated.

    I was told by coherence support that having things on different minor versions is "not really supported". They let you join them together to support a gradual rolling upgrade, but they really want them all on the same version.
    That being said I've never had that issue that you are talking about with things with the same minor version since the protocol versions don't change in minor versions.
    There is no source visibility so it is impossible to say what exactly changed between those versions - but it is unlikely that the protocol changed. (I'm not super familiar with the nuances of 3.5.3 - we were on Ye Olde Coherence 3.1 for far too long and then did a crazy jump straight to 3.7.1)

  • Java Plug-in version mismatch crash IE8 with DEP error

    We are running Windows XP SP3 with IE8 and some of our internal sites that require JRE will crash the browser with a DEP error. The machines that exhibit this behaviour have multiple versions of JRE installed. However, we haven't been able to nail it down to specific version(s). The only common thread we can find is when looking at the IE8 add-on list the Java plug-in doesn't look quite right. The name column will show "Java Plug-in 1.6.0_19" but the version column lists 1.6.0.7. Has anyone seen that where the name of the Java plug-in add-on doesn't match the version column? I still can't repro the version mismatch issue yet and we've only seen it on a handful of machines so far. However, we are getting ready to rollout IE8 to our enterprise and I want to get a handle on this issue.
    I have found two workarounds so far. One is to the disable the Java Plug-in with the version mismatch issue. Then it will fall back on one of the other JRE versions installed. The second workaround is to install the latest version of JRE which also resolves the issue. Seems like a no brainer but in our environment we have requirements for specific versions of JRE and simply pushing out the latest version to everyone may break the other apps.
    Anyone heard of this behaviour before?

    jre4life wrote:
    We are running Windows XP SP3 with IE8 and some of our internal sites that require JRE will crash the browser with a DEP error. The machines that exhibit this behaviour have multiple versions of JRE installed. However, we haven't been able to nail it down to specific version(s). The only common thread we can find is when looking at the IE8 add-on list.. Try looking in the JCP.
    - Open the [Java Control Panel|http://pscode.org/player.jnlp] *(<- link).*
    - Close the Java Cache Viewer (that opens on top of it).
    - Go to the Java tab.
    - Click View.
    - (Disable all but the JRE version you wish to test.)
    ..the Java plug-in doesn't look quite right. The name column will show "Java Plug-in 1.6.0_19" but the version column lists 1.6.0.7. .. I do not understand what you mean. After clicking on the Java entry on IE8 and doing a Ctrl-c, then Ctrl-a in a text editor I get..
    Name          Java(tm) Plug-In 2 SSV Helper
    Publisher     Sun Microsystems, Inc.
    Status        Enabled
    File date     Friday, July 16, 2010, 8:04 AM
    Version       6.0.200.2
    Load time     0.06 sThat info. is a good representation of what I see on-screen, except that the copy automatically drops in the column names for me (very convenient).
    Here, the "Name" column is not showing any version information.
    ..Has anyone seen that where the name of the Java plug-in add-on doesn't match the version column? I still can't repro the version mismatch issue yet and we've only seen it on a handful of machines so far. However, we are getting ready to rollout IE8 to our enterprise and I want to get a handle on this issue.
    I have found two workarounds so far. One is to the disable the Java Plug-in with the version mismatch issue. Then it will fall back on one of the other JRE versions installed. The second workaround is to install the latest version of JRE which also resolves the issue. Seems like a no brainer but in our environment we have requirements for specific versions of JRE and simply pushing out the latest version to everyone may break the other apps.
    Anyone heard of this behaviour before?No. But then, I only have one version of JRE installed on this Win 7 box, and it is _20.

  • TimeZone data update/patch?

    Hi,
    In three weeks, Indiana will begin observing Daylight Savings Time for the first time, and several Indiana counties will be switching from Eastern Time to Central Time (http://en.wikipedia.org/wiki/Daylight_savings_time#Indiana). This change will have an impact on some legacy code in one of my company's applications which uses the java.util.TimeZone class to retrieve a TimeZone based on a zone String passed to the TimeZone.getTimeZone method.
    Is there any patch or other mechanism available that would allow us to update the TimeZone data for our JVM? The version that I'm working with is j2sdk1.4.2_07, but I anticipate that we'll also need to update our 1.5 environments as well. Any help would be greatly appreciated. Thanks,
    Rick

    The Indiana TZ change is apparently part of tzdata2005m, which is included in 1.5.0_06 and 1.4.2_11.
    You'd have to update all the JVMs running your program (unless you're bundling a JVM yourself).

  • How to accurately test if timezone data is updated?

    Dear Sir,
    I updated JRE 1.5.0_13 with the newly released tzupdater version. The output of the command:
    #java -jar tzupdater.jar -V
    tzupdater version 1.3.0-b01
    JRE time zone data version: tzdata2007h
    Embedded time zone data version: tzdata2007h
    Even through it shows that the tzdata used by JRE is updated, I was interested to know if there is any other method that can systematically find out if the timezone data is updated eg. By displaying the date of a country that uses DST whose details have been newly updated by tzupdate.
    Thank you for investing your precious time to read this message.
    With regards,
    Santhoshkumar.
    [email protected]

    I don't bother going online when I am using maps except when I am using the satellite map option.
    For the moment the best way to keep your map data up to date is do use Map Loader once every month or two, delete all map data and then reinstall whatever bits you want.
    Hopefully we will be able to check map status with the next Map Loader update.

  • Dp lib version mismatch-After kernel upgrade

    Hi All,
    After kernel upgrade from 700 162 to 179 all the workprocess are not coming up i am getting the below error:
    Full qualified hostname = XXXXXX.saipc.XXX.com
    ***LOG Q0Z=> DpSysAdmExtCreate, bad version (lib=241000 krn=239000) [dpxxtool2.c  681]
    LOCATION    SAP-Gateway on host XXXXXXX / sapgw01
    ERROR       dp lib version mismatch, please check installation
    TIME        Mon Oct 20 00:33:37 2008
    RELEASE     700
    COMPONENT   DP
    VERSION     241000
    RC          -9999
    MODULE      dpxxtool2.c
    LINE        688
    DETAIL      version of external and kernel dp lib mismatch (ext lib
                 version is 241000 / kernel lib version is 239000)
    COUNTER     1
    ERROR => DpIPCInit2: DpSysAdmExtCreate [dpxxtool2.c  369]
    ***LOG S0V=> GwStopGateway, gateway stopped () [gwxxrd.c     14652]
    XXXXXXXXX:ts2adm 30% pg sapcpe.log
    ================ >>> main =======================
    INFO:    sapcpe version: @(#) $Id: //bas/700_REL/src/ccm/sapstart/sapxxcpe.c#18 $ SAP
    =================================================
    INFO:    Try to find file table sapcpeft (default:sapcpeft)
    INFO:    Try to find file table in the central directory /usr/sap/TS2/SYS/exe/ctrun/sapcpeft
    INFO:    not found any file table.
    =================================================
    Update Local Programs (dir-sync + file-path + ln)
    =================================================
    Starting at 2008/10/20 00:33:34
    ERROR:   can't change to central Executable-Dir /usr/sap/TS2/SYS/exe/ctrun (No such file or directory) [sapxxcpe.c:1488]
    Mon Oct 20 00:50:19 2008
    ERROR => gateway (pid 24413) died [dpxxdisp.c   16063]
    DpGwCheck: appc_adm.stat = 2
    DP_FATAL_ERROR => Gateway could not be started - I better exit now
    please help in solving this problem
    Thanks
    Giridhar
    Edited by: giridhar n on Oct 20, 2008 12:47 PM

    Hi,
    We faced an issue with workprocesses which are not coming up after the kernel(700) upgrade from patch 162 to 179. below are the error logs:
    Error Log
    (XXXXXXXXX is the hostname)
    Dev_W1:
    XXXXXXXXX:ts2adm 9% more dev_w1.old
    trc file: "dev_w1", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ
    M sysno      01
    M sid        TS2
    M systemid   370 (Solaris on SPARCV9 CPU)
    M relno      7000
    M patchlevel 0
    M patchno    162
    M intno      20050900
    M make:      single threaded, Unicode, 64 bit, optimized
    M pid        3867
    M
    M
    M Mon Oct 20 03:59:26 2008
    M  kernel runs with dp version 239000(ext=110000) (-(#) DPLIB-INT-VERSION-239000-UC)
    M  length of sys_adm_ext is 576 bytes
    M  ***LOG Q01=> ThInit, WPStart (Workproc 1 1 3867) [thxxhead.c   1281]
    M  ThInit: running on host XXXXXXXXX
    M  calling db_connect ...
    C  Oracle Client Version: '10.2.0.2.0'
    C
    C Mon Oct 20 03:59:27 2008
    C  Client NLS settings: AMERICAN_AMERICA.UTF8
    C  Logon as OPS$-user to get SAPTS2's password
    C  Connecting as /-TS2 on connection 0 (nls_hdl 0) ... (dbsl 700 030508)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1 0x106eea0c0 0x106ef1b80 0x106f02318
    C  Attaching to DB Server TS2 (con_hdl=0,svchp=0x106f02248,srvhp=0x106f04598)
    C  Starting user session (con_hdl=0,svchp=0x106f02248,srvhp=0x106f04598,usrhp=0x106ef2398)
    C  Now '/-TS2' is connected: con_hdl=0, nls_hdl=0, session_id=475.
    C  Got SAPTS2's password from OPS$-user
    C  Disconnecting from connection 0 ...
    C  Closing user session (con_hdl=0,svchp=0x106f02248,usrhp=0x106ef2398)
    C  Now I'm disconnected from ORACLE
    C  Connecting as SAPTS2/<pwd>-TS2 on connection 0 (nls_hdl 0) ... (dbsl 700 030508)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1 0x106eea0c0 0x106ef1b80 0x106f02318
    C  Starting user session (con_hdl=0,svchp=0x106f02248,srvhp=0x106f04598,usrhp=0x106ef2398)
    C  Now 'SAPTS2/<pwd>-TS2' is connected: con_hdl=0, nls_hdl=0, session_id=475.
    C  Database NLS settings: AMERICAN_AMERICA.UTF8
    C  DB instance TS2 is running on XXXXXXXXX with ORACLE version 10.2.0.2.0 since OCT 20, 2008, 03:49:47
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20081020 035926 XXXXXXXXX
    C  build_stmt: reallocating stmt buffer: 256 -> 2000 characters
    M  db_connect o.k.
    M  ICT: exclude compression: .zip,.cs,.rar,.arj,.z,.gz,.tar,.lzh,.cab,.hqx,.ace,.jar,.ear,.war,.css,.pdf,.js,.gzip,.uue,.bz2,.iso,.sda,
    .sar,.gif
    I
    I Mon Oct 20 03:59:30 2008
    I  MtxInit: 1 0 0
    M  SHM_PRES_BUF                 (addr: 0xffffffff64c00000, size: 20000768)
    M  SHM_ROLL_AREA                (addr: 0xfffffffe40000000, size: 268435456)
    M  SHM_PAGING_AREA              (addr: 0xfffffffe36000000, size: 134217728)
    M  SHM_ROLL_ADM                 (addr: 0xffffffff7597a000, size: 3715586)
    M  SHM_PAGING_ADM               (addr: 0xffffffff79a00000, size: 656416)
    M  ThCreateNoBuffer             allocated 572152 bytes for 1000 entries at 0xfffffffe2c004000
    M  ThCreateNoBuffer             index size: 3000 elems
    M  ThCreateVBAdm                allocated 12176 bytes (50 server) at 0xffffffff7a900000
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 1 initializing ....
    X  Using implementation std
    X  <ES> Info: use normal pages (no huge table support available)
    X  ES initialized.
    B  dbntab: NTAB buffers attached
    B  dbntab: Buffer FTAB(hash header)  (addr: 0xfffffffe2c092088, size: 576)
    B  dbntab: Buffer FTAB(anchor array) (addr: 0xfffffffe2c0922c8, size: 798968)
    B  dbntab: Buffer FTAB(item array)   (addr: 0xfffffffe2c1553c0, size: 3195648)
    B  dbntab: Buffer FTAB(data area)    (addr: 0xfffffffe2c4616c0, size: 30740480)
    B  dbntab: Buffer IREC(hash header)  (addr: 0xfffffffe2e1b6088, size: 576)
    B  dbntab: Buffer IREC(anchor array) (addr: 0xfffffffe2e1b62c8, size: 798968)
    B  dbntab: Buffer IREC(item array)   (addr: 0xfffffffe2e2793c0, size: 798912)
    B  dbntab: Buffer IREC(data area)    (addr: 0xfffffffe2e33c480, size: 6148096)
    B  dbntab: Buffer STAB(hash header)  (addr: 0xfffffffe2e91c088, size: 576)
    B  dbntab: Buffer STAB(anchor array) (addr: 0xfffffffe2e91c2c8, size: 798968)
    B  dbntab: Buffer STAB(item array)   (addr: 0xfffffffe2e9df3c0, size: 798912)
    B  dbntab: Buffer STAB(data area)    (addr: 0xfffffffe2eaa2480, size: 3072000)
    B  dbntab: Buffer TTAB(hash header)  (addr: 0xfffffffe2ed94088, size: 3072)
    B  dbntab: Buffer TTAB(anchor array) (addr: 0xfffffffe2ed94c88, size: 798968)
    B  dbntab: Buffer TTAB(item array)   (addr: 0xfffffffe2ee57d80, size: 1997280)
    B  dbntab: Buffer TTAB(data area)    (addr: 0xfffffffe2f03f760, size: 14580144)
    B  db_con_shm_ini:  WP_ID = 1, WP_CNT = 24, CON_ID = -1
    B  dbstat: TABSTAT buffer attached (addr: 0xfffffffe28012008)
    B  dbtbxbuf: Buffer TABL  (addr: 0xfffffffe24000100, size: 60000256, end: 0xfffffffe27938900)
    B  dbtbxbuf: Buffer TABLP (addr: 0xfffffffe20000100, size: 40960000, end: 0xfffffffe22710100)
    B  dbexpbuf: Buffer EIBUF (addr: 0xffffffff5d800108, size: 4194304, end: 0xffffffff5dc00108)
    B  dbexpbuf: Buffer ESM   (addr: 0xfffffffe5f800108, size: 4194304, end: 0xfffffffe5fc00108)
    B  dbexpbuf: Buffer CUA   (addr: 0xfffffffe2fe30108, size: 5120000, end: 0xfffffffe30312108)
    B  dbexpbuf: Buffer OTR   (addr: 0xfffffffe59800108, size: 4194304, end: 0xfffffffe59c00108)
    B  dbcalbuf: Buffer CALE  (addr: 0xffffffff75d08000, size: 500000, end: 0xffffffff75d82120)
    I  *** ERROR => ShmProtect(62,3) shmat(268435641,0x0xfffffffe5a000000,(SHM_RND | 0)) (22: Invalid argument) [shmux.c      2782]
    I  *** ERROR => ShmCreate: ShmProtect( 62, 3) failed [shmux.c      1359]
    I  *** ERROR => ShmCreate( ATTACH 62, 86228824) failed 1 [mpixx.c      855]
    M  *** ERROR => DpInitMpi: MpiInit failed (1) [dpxxtool2.c  5064]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: DpInitMpi (step 1, th_errno 17, action 3, level 1) [thxxhead.c   10506]
    M
    M  Info for wp 1
    M
    M    pid = 3867
    M    severity = 0
    M    status = 0
    M    stat = WP_RUN
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source =
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    mode_cleaned_counter = 0
    M    control_flag = 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    attachedVm = no VM
    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >SAP-Trace buffer write< for event BEFORE_DUMP
    M  TrThHookFunc: called for WP dump
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   724]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  261]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    B  dbtbxbuf: Saving TBX statistics:
    B  dbtbxbuf: 0 object entries written.
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 1 3867) [dpuxtool.c   269]
    dev_icm:
    trc file: "dev_icm", trc level: 1, release: "700"
    sysno      01
    sid        TS2
    systemid   370 (Solaris on SPARCV9 CPU)
    relno      7000
    patchlevel 0
    patchno    177
    intno      20050900
    make:      multithreaded, Unicode, 64 bit, optimized
    pid        3865
    [Thr  1] started security log to file dev_icm_sec
    [Thr  1] ICM running on: XXXXXXXXX.saipc.XXX.com
    [Thr  1] MtxInit: 30001 0 2
    [Thr  1] IcmInit: listening to admin port: 64999
    [Thr  1] ***LOG Q0Z=> DpSysAdmExtCreate, bad version (lib=241000 krn=239000) [dpxxtool2_mt 681]
    [Thr  1]
    [Thr  1] *  LOCATION    ICM runing on host XXXXXXXXX
    [Thr  1] *  ERROR       dp lib version mismatch, please check installation
    [Thr  1] *
    TIME        Mon Oct 20 03:59:28 2008
    [Thr  1] *  RELEASE     700
    [Thr  1] *  COMPONENT   DP
    [Thr  1] *  VERSION     241000
    [Thr  1] *  RC          -9999
    [Thr  1] *  MODULE      dpxxtool2_mt.c
    [Thr  1] *  LINE        688
    [Thr  1] *  DETAIL      version of external and kernel dp lib mismatch (ext lib
                 version is 241000 / kernel lib version is 239000)
    [Thr  1] *  COUNTER     3
    [Thr  1] *
    [Thr  1] *****************************************************************************
    [Thr  1] *** ERROR => DpIPCInit2: DpSysAdmExtCreate [dpxxtool2_mt 369]
    [Thr  1] *** ERROR => IcmInit: IcmIPCInit failed (rc=-9999) [icxxman_mt.c 1741]
    [Thr  1] *** ICM shutdown completed (pid: 3865) ***
    dev_ms:
    trc file: "dev_ms", trc level: 1, release: "700"
    [Thr  1] Mon Oct 20 03:59:24 2008
    [Thr  1] MsSSetTrcLog: trc logging active, max size = 20971520 bytes
    systemid   370 (Solaris on SPARCV9 CPU)
    relno      7000
    patchlevel 0
    patchno    145
    intno      20050900
    make:      multithreaded, Unicode, 64 bit, optimized
    pid        3853
    [Thr  1] ***LOG Q01=> MsSInit, MSStart (Msg Server 1 3853) [msxxserv_mt. 1834]
    [Thr  1] SigISetDefaultAction : default handling for signal 18
    [Thr  1] load acl file = /usr/sap/TS2/SYS/global/ms_acl_info
    [Thr  1] MsGetOwnIpAddr: my host addresses are :
    [Thr  1]   1 : [148.92.31.49] XXXXXXXXX (HOSTNAME)
    [Thr  1]   2 : [127.0.0.1] localhost (LOCALHOST)
    [Thr  1]   3 : [148.92.31.157] XXXXXXXXX-maint (NILIST)
    [Thr  1]   4 : [10.220.6.72] XXXXXXXXX-bkup (NILIST)
    [Thr  1] MsHttpInit: full qualified hostname = XXXXXXXXX.saipc.XXX.com
    [Thr  1] HTTP logging is switch off
    [Thr  1] MsHttpOwnDomain: own domain[1] = saipc.XXX.com
    [Thr  1] ms/icf_info_server : deleted
    [Thr  1] *** I listen to port sapmsTS2 (3601) ***
    [Thr  1] *** I listen to internal port 3901 (3901) ***
    [Thr  1] CUSTOMER KEY: >C0395101982<
    [Thr  1] Mon Oct 20 04:01:28 2008
    [Thr  1] *** ERROR => MsSClientHandle: no server provides service ENQ  (4), requested from XXXXXXXXX_TS2_01 [msxxserv_mt. 4687]
    [Thr  1] Mon Oct 20 04:05:07 2008
    [Thr  1] MsSExit: received SIGINT (2)
    [Thr  1] ***LOG Q02=> MsSHalt, MSStop (Msg Server 3853) [msxxserv_mt. 5998]
    dev_rd:
    trc file: "dev_rd", trc level: 1, release: "700"
    Mon Oct 20 03:59:26 2008
    ***LOG S00=> GwInitReader, gateway started ( 3864) [gwxxrd.c     1757]
    systemid   370 (Solaris on SPARCV9 CPU)
    relno      7000
    patchlevel 0
    patchno    176
    intno      20050900
    make:      single threaded, Unicode, 64 bit, optimized
    pid        3864
    gateway runs with dp version 241000(ext=110000) (-(#) DPLIB-INT-VERSION-241000-UC)
    gateway (version=700.2008.06.23)
    gw/local_addr : 0.0.0.0
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    Mon Oct 20 03:59:27 2008
    CCMS: Checking Downtime Configuration of Monitoring Segment.
    Bind service sapgw01 (socket) to port 3301
    GwPrintMyHostAddr: my host addresses are :
      1 : [148.92.31.49] XXXXXXXXX (HOSTNAME)
      2 : [127.0.0.1] localhost (LOCALHOST)
      3 : [148.92.31.157] XXXXXXXXX-maint (NILIST)
      4 : [10.220.6.72] XXXXXXXXX-bkup (NILIST)
    Full qualified hostname = XXXXXXXXX.saipc.XXX.com
    ***LOG Q0Z=> DpSysAdmExtCreate, bad version (lib=241000 krn=239000) [dpxxtool2.c  681]
    LOCATION    SAP-Gateway on host XXXXXXXXX / sapgw01
    ERROR       dp lib version mismatch, please check installation
    TIME        Mon Oct 20 03:59:27 2008
    RELEASE     700
    COMPONENT   DP
    VERSION     241000
    RC          -9999
    MODULE      dpxxtool2.c
    LINE        688
    DETAIL      version of external and kernel dp lib mismatch (ext lib
                 version is 241000 / kernel lib version is 239000)
    COUNTER     1
    ERROR => DpIPCInit2: DpSysAdmExtCreate [dpxxtool2.c  369]
    ***LOG S0V=> GwStopGateway, gateway stopped () [gwxxrd.c     14652]
    dev_rfc24:
    Trace file opened at 20081020 031506 EDT SAP-REL 700,0,162 RFC-VER U 3 985555
    ======> User is locked. Please notify the person responsible
    ABAP Programm: SAPLTMSC (Transaction: )
    Called function module: TMS_CI_START_SERVICE
    User: DDIC (Client: 015)
    Destination: TMSADM-TS2.DOMAIN_DV2 (handle: 2, 11671309, {48FC3006-2FF4-60E5-E100-0000945C1F31})
    dev_disp
    trc file: "dev_disp.new", trc level: 1, release: "700"
    sysno      01
    sid        TS2
    systemid   370 (Solaris on SPARCV9 CPU)
    relno      7000
    patchlevel 0
    patchno    162
    intno      20050900
    make:      single threaded, Unicode, 64 bit, optimized
    pid        3854
    Mon Oct 20 03:59:25 2008
    kernel runs with dp version 239000(ext=110000) (-(#) DPLIB-INT-VERSION-239000-UC)
    length of sys_adm_ext is 576 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (01 3854) [dpxxdisp.c   1257]
            shared lib "dw_xml.so" version 162 successfully loaded
            shared lib "dw_xtc.so" version 162 successfully loaded
            shared lib "dw_stl.so" version 162 successfully loaded
            shared lib "dw_gui.so" version 162 successfully loaded
            shared lib "dw_mdm.so" version 162 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3901
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >XXXXXXXXX_TS2_01                         <
    DpShMCreate: sizeof(wp_adm)             42240   (1760)
    DpShMCreate: sizeof(tm_adm)             150350080       (30064)
    DpShMCreate: sizeof(wp_ca_adm)          31232   (104)
    DpShMCreate: sizeof(appc_ca_adm)        208000  (104)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/548056/548064
    DpShMCreate: sizeof(comm_adm)           548064  (1088)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0       (104)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)           0       (72)
    DpShMCreate: sizeof(vmc_adm)            0       (2080)
    DpShMCreate: sizeof(wall_adm)           (1000056/862328/88/192)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY             (addr: 0xffffffff66000000, size: 153051096)
    DpShMCreate: allocated sys_adm at 0xffffffff66000000
    DpShMCreate: allocated wp_adm at 0xffffffff66002218
    DpShMCreate: allocated tm_adm_list at 0xffffffff6600c718
    DpShMCreate: allocated tm_adm at 0xffffffff6600c778
    DpShMCreate: allocated wp_ca_adm at 0xffffffff6ef6f078
    DpShMCreate: allocated appc_ca_adm at 0xffffffff6ef76a78
    DpShMCreate: allocated comm_adm at 0xffffffff6efa96f8
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 0xffffffff6f02f3d8
    DpShMCreate: allocated gw_adm at 0xffffffff6f02f458
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 0xffffffff6f02f488
    DpShMCreate: allocated wall_adm at 0xffffffff6f02f490
    Mon Oct 20 03:59:26 2008
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    rdisp/queue_size_check_value :  -> off
    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 std
    <ES> Info: use normal pages (no huge table support available)
    EsStdUnamFileMapInit: ES base = 0x0xfffffffe60000000
    EsStdInit: Extended Memory 4048 MB allocated
    <ES> 4047 blocks reserved for free list.
    ES initialized.
    Mon Oct 20 03:59:31 2008
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1659]
    ***LOG Q0K=> DpMsAttach, mscon ( XXXXXXXXX) [dpxxdisp.c   12153]
    DpStartStopMsg: send start message (myname is >XXXXXXXXX_TS2_01                         <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    ERROR => DpWPCheck: W0 (pid 3866) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3866) exited with exit code 255
    my types changed after wp death/restart 0xbf --> 0xbd
    ERROR => DpWPCheck: W1 (pid 3867) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3867) exited with exit code 255
    ERROR => DpWPCheck: W2 (pid 3868) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3868) exited with exit code 255
    ERROR => DpWPCheck: W4 (pid 3870) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3870) exited with exit code 255
    ERROR => DpWPCheck: W5 (pid 3871) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3871) exited with exit code 255
    ERROR => DpWPCheck: W6 (pid 3872) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3872) exited with exit code 255
    ERROR => DpWPCheck: W7 (pid 3873) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3873) exited with exit code 255
    ERROR => DpWPCheck: W8 (pid 3874) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3874) exited with exit code 255
    ERROR => DpWPCheck: W9 (pid 3875) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3875) exited with exit code 255
    ERROR => DpWPCheck: W10 (pid 3885) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3885) exited with exit code 255
    ERROR => DpWPCheck: W11 (pid 3888) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3888) exited with exit code 255
    ERROR => DpWPCheck: W12 (pid 3890) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3890) exited with exit code 255
    ERROR => DpWPCheck: W13 (pid 3902) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3902) exited with exit code 255
    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 162
    Release check o.K.
    Mon Oct 20 03:59:51 2008
    my types changed after wp death/restart 0xbd --> 0x81
    ERROR => DpWPCheck: W14 (pid 3903) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3903) exited with exit code 255
    ERROR => DpWPCheck: W15 (pid 3904) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3904) exited with exit code 255
    ERROR => DpWPCheck: W16 (pid 3905) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3905) exited with exit code 255
    ERROR => DpWPCheck: W17 (pid 3908) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3908) exited with exit code 255
    ERROR => DpWPCheck: W18 (pid 3911) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3911) exited with exit code 255
    ERROR => DpWPCheck: W19 (pid 3914) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3914) exited with exit code 255
    ERROR => DpWPCheck: W20 (pid 3915) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3915) exited with exit code 255
    ERROR => DpWPCheck: W21 (pid 3916) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3916) exited with exit code 255
    ERROR => DpWPCheck: W22 (pid 3919) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3919) exited with exit code 255
    ERROR => DpWPCheck: W23 (pid 3924) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3924) exited with exit code 255
    Mon Oct 20 04:00:11 2008
    ERROR => gateway (pid 3864) died [dpxxdisp.c   16063]
    DpGwCheck: appc_adm.stat = 2
    DP_FATAL_ERROR => Gateway could not be started - I better exit now
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    kill(3869,0) successful -> process alive
    killing W3-3869 (SIGUSR2)
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=12
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Oct 20 04:00:21 2008
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)                        Mon Oct 20 08:00:21 2008
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program          Cl  User         Action                    Table
    0 DIA     3866 Ended         no      3   0        0
    1 DIA     3867 Ended         no      3   0        0
    2 DIA     3868 Ended         no      3   0        0
    3 DIA     3869 Run           yes     0   0        0
    4 DIA     3870 Ended         no      3   0        0
    5 DIA     3871 Ended         no      3   0        0
    6 DIA     3872 Ended         no      3   0        0
    7 DIA     3873 Ended         no      3   0        0
    8 DIA     3874 Ended         no      3   0        0
    9 DIA     3875 Ended         no      3   0        0
    10 UPD     3885 Ended         no      3   0        0
    11 UPD     3888 Ended         no      3   0        0
    12 UPD     3890 Ended         no      3   0        0
    13 UPD     3902 Ended         no      3   0        0
    14 ENQ     3903 Ended         no      2   0        0
    15 BTC     3904 Ended         no      2   0        0
    16 BTC     3905 Ended         no      2   0        0
    17 BTC     3908 Ended         no      2   0        0
    18 BTC     3911 Ended         no      2   0        0
    19 BTC     3914 Ended         no      2   0        0
    20 BTC     3915 Ended         no      2   0        0
    21 SPO     3916 Ended         no      2   0        0
    22 UP2     3919 Ended         no      2   0        0
    23 UP2     3924 Ended         no      2   0        0
    Dispatcher Queue Statistics                     Mon Oct 20 08:00:21 2008
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    0
    4000
    0
    0
    --------++++--
    +
    DIA
    4
    4
    4000
    4
    0
    --------++++--
    +
    UPD
    0
    0
    4000
    0
    0
    --------++++--
    +
    ENQ
    0
    0
    4000
    0
    0
    --------++++--
    +
    BTC
    0
    0
    4000
    0
    0
    --------++++--
    +
    SPO
    0
    0
    4000
    0
    0
    --------++++--
    +
    UP2
    0
    0
    4000
    0
    0
    --------++++--
    +
    max_rq_id               7
    wake_evt_udp_now        0
    wake events             total     3,  udp     2 ( 66%),  shm     1 ( 33%)
    since last update       total     3,  udp     2 ( 66%),  shm     1 ( 33%)
    Dump of tm_adm structure:                       Mon Oct 20 08:00:21 2008
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks                   Mon Oct 20 08:00:21 2008
    =============================
    Slots: 300, Used: 1, Max: 0
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    0
    DISPATCHER
    -1
    WPCAAD000
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=12
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Oct 20 04:00:26 2008
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >XXXXXXXXX_TS2_01                         < (normal)
    DpJ2eeDisableRestart
    DpModState: buffer in state MBUF_PREPARED
    please help me to solve this.
    Thanks
    Giridhar

  • 2012 R2 - One server not applying two updates. Lists AD / SYSVOL Version Mismatch

    So we have a bunch of servers running 2012 R2.  On 1 or 2 of them I have a certain GPO that isn't applying.  The specific one I'm having trouble with is our SNMP settings.  The base settings applied but then we updated the GPO to add in an
    additional IP address.  Most servers pulled it down fine but 1 or 2 did not.  Tried gpupdate /force and normal things and just can't get it to apply.
    I can the gpresult /h and in the html file it says:
    The following GPOs have special alerts
    Default Domain Policy - AD / SYSVOL Version Mismatch
    SNMP - AD / SYSVOL Version Mismatch
    The only info I found on that error talks about a particular patch but we already have that patch installed.  The change was put in over a week ago and is still not flowing to just these specific machines.
    Anyone have any idea how I can figure out what the problem is?  They are production machines so I can't reboot them until Saturday night when we are scheduled to do the Feb Patches anyway.  I don't know if that will help or not so if there's something
    else I can check in the meantime, that'd be great.
    Thanks!

    Quick note on this issue:
    I was running RSOP against a user and server other than the local server, and the error would not go away,  I tried installing the patches and rollups on the DC I was seeing the error on.   Since these were already installed I tried installing
    them from the stand alone download.
    They complained about already being installed, so I was relegated to doing more research.
    After some time, and while chasing a separate issue on the other server, I noticed that the updates on THAT SERVER were not up to date.   I ran into issues updating due to corruption (another story altogether), but with the help of Microsoft Support,
    I was able to get THAT SERVER updated.
    I went back to troubleshooting the AD / Sysvol error, starting from scratch...trying to install the patches that were already installed...etc.
    Just for grins and giggles, I re-ran the RSOP against the original user and the other server and viola, the error is gone.
    Longer story than it needed to be, I know, but this leads me to believe that the error is NOT on the DC to DC but an issue with the server your running RSOP against.   I am not positive that this is actually the case, but this may help someone out.
      So if anyone can test and/or verify this please post.
    Supreme executive power is derived from a mandate from the masses, not from some farcical aquatic ceremony. -- Dennis the peasant Les Waggoner WCC Internet Technologies

  • Patching 10.2.0.1 database to timezone file version 4

    Hello,
    I can't manage upgrading my timezone file to version 4. It's version 2 all the time.
    What I have done:
    1. downloaded patch p5601428_10201_GENERIC from Metalink.
    2. unzipped the patch
    3. copied "etc" and "files" directories to $ORACLE_HOME/OPatch.
    4. changed directory to $ORACLE_HOME/OPatch and entered "opatch apply".
    Nothing changed.
    The file is still in version2.
    Thanks in advance for any help.
    Aliq

    It's Windows, so ls -l doesn't work.
    Here's what I found in the README:
    Current Structure version: 2
    Current Content Version : 2
    Content Version 2
    Timezones updated:
    timezone.dat
    America/Havana (2000 -> 2020)
    America/Mazatlan(1932, 1942, 2001)
    America/Mexico_City (1932, 1943, 2001 -> 2002)
    America/Santiago (1966 -> 1969)
    America/Sao_Paulo (2000 -> 2020)
    America/St_Johns (1936 -> 1945, 1987 -> 2020)
    America/Winnipeg (1942, 1945, 1987 -> 2020)
    American/Tijuana (1922, 1924, 1930, 1931, 1942, 1945, 1948, 1976)
    Asia/Jerusalem (2000 -> 2020)
    Asia/Teheran (1945 -> 2020)
    Australia/Lord_Howe (1982 -> 2020)
    Pacific/Easter (1966 -> 2020)
    timezlrg.dat
    America/Araguaina (2000 -> 2020)
    America/Boa_Vista (2000 -> 2020)
    America/Buenos_Aires (1894, 1920, 1967, 1974, 1988, 1999, 2000)
    America/Cambridge_Bay (1942, 1945, 2000 -> 2020)
    America/Cancun (1981, 1996, 1997, 2001)
    America/Chihuahua (1932, 2001)
    America/Cuiaba (2000 -> 2020)
    America/Fortaleza (2000 -> 2020)
    America/Goose_Bay (1918, 1917, 1936 -> 1945, 1987 -> 2020)
    America/Havana (2000 -> 2020)
    America/Iqualuit (1942, 1945, 2001 -> 2020)
    America/Maceio (2000 -> 2020)
    America/Mazatlan (1932, 1942, 2001)
    America/Mexico_City (1932, 1943, 2001 -> 2002)
    America/Ramkin_Inlet (1942, 1945, 2000)
    America/Santiago (1966 -> 1969)
    America/Sao_Paulo (2000 -> 2020)
    America/St_Johns (1936 -> 1945, 1987 -> 2020)
    America/Tijuana (1922, 1924, 1930, 1931, 1942, 1945, 1948, 1976)
    America/Winnipeg (1942, 1945, 1987 -> 2020)
    Asia/Almaty (1991 -> 2020)
    Asia/Amman (1999 -> 2020)
    Asia/Anadyr (1930, 1982 -> 2020)
    Asia/Aqtau (1991 -> 2020)
    Asia/Aqtobe (1924 -> 2020)
    Asia/Baghdad (1991 -> 2020)
    Asia/Jerusalem (2000 -> 2020)
    Asia/Karachi (2002)
    Asia/Teheran (1945 -> 2020)
    Atlantic/Stanley (1996, 2001 -> 2020)
    Australia/Lord_Howe (1982 -> 2020)
    Europe/Riga (2000 -> 2001)
    Europe/Tallinn (2002 -> 2020)
    Europe/Vilnus (2000 -> 2002)
    Pacific/Easter (1966 -> 2020)
    Pacific/Fiji (2000 -> 2020)
    Pacific/Guam (1800, 1844, 2000)
    Pacific/Saipan (1800, 1844, 2000)
    Pacific/Tongatapu (1999 -> 2002 added, 2003 -> 2020 deleted)
    Timezones added:
    GMT-14
    America/Rio_Branco (synonym for America/Porto_Acre)
    Asia/Dhaka (synonym for Asia/Dacca)
    Asia/Chongqing (synonym for Asia/Chungking)
    Asia/Macau (synonym for Asia/Macao)
    Asia/Makassar (synonym for Asia/Ujung_Pandang)
    In $ORACLE_HOME\oracore\zoneinfo there are the following files:
    readme
    timezlrg.dat
    timezone.data
    timezdif.csv (it was copied here by opatch apply).
    Aliq
    Edited by: user547746 on Feb 3, 2009 3:39 PM

  • Obeserver dll version mismatch -8003

    hello,
    i created a Company object and want to connect to the SAP BO Database but we always get the following error:
    Obeserver dll version mismatch -8003
    Please help for gods sake..!!!!!

    Hi Amit,
    Try the following steps:
    1.  Locate the Temp folder by going to Start -> Run and type %temp%.
    2.  Locate the SM_OBS_DLL folder here and delete it.
    3.  Uninstall the DI API from Add/Remove Programs.
    4.  Reboot your PC
    5.  Install the DI API from your current patch. (Download patch, extract it and then browse to Packages\DI API and run setup.exe)
    6. Run the Upgrader Common again (From the same patch as above - very important!). Browse to Packages\Upgrader Common and run setup.exe. This will update the SBO-COMMON to this patch level again. You will not lose any data.
    The error you see is usually due to a mismatch between your SBO-COMMON and the DI API that is attempting to connect to it. By taking the above steps, you ensure the same patch level is in use.
    Regards,
    Niall
    SAP Business One Forums Team

  • Firefox won't open website(site requires flash player) - my other browsers open it successfully, flash player is installed correctly and up to to date version

    Firefox won't open website(site requires flash player) - my other browsers open it successfully, flash player is installed correctly and is the up to to date version, using Firefox 4

    Hi there
    Sorry, but you aren't in the right place for getting help with this. Try clicking the link below and choose a forum dedicated to Adobe Flash.
    Click here
    Best of luck to you in resolving your issue! Rick

  • What is the most up-to-date Version of 5.0 for Windows XP Destop?

    I currently have Firefox 6.0 beta on my Windows XP Desktop. I want to change back to Firefox 5.0 version. How can I be sure to download the correct up-to-date version of 5? The 6.0 beta is too much for my limited expertise and I don't want to deal with that. Please help.

    Latest Firefox release (all languages) is always found here:
    *Firefox 5.0.x: http://www.mozilla.com/en-US/firefox/all.html
    Firefox 6 will be released later this week (Aug 16) if it goes as planned.

  • How can I tell if Adobe Flash is installed properly and upto date version?

    How can I tell if Adobe Flash is installed properly and upto date version?
    Hi Guys and girls, hopefully an easy question for you.
    I installed Adobe flash and lightsource last night, cos I needed it to run Weebly website maker.
    Anyone know if Weebly runs correctly on 10.9.1??
    I have a new comp, so no previous version of flash on here, I am running OSX 10.9.1
    I just want to know How I can tell if Adobe Flash is installed properly and is the upto date version?
    Where do I go in the comp to find out,
    If I type in Adobe flash into search it only brings up flash manager, when I click this it is an uninstaller program.
    Lightsource shows in finder apps.
    If I type in flash player it shows up in plugins with a version number see screen shot.
    Where would I go to check for updates for things like flash on my comp?
    Thanks Team,
    Jason in oz.   :?):)  

    1. Safari > Preferences > Security > Internet Plug-ins
        Allow Plug-ins
    2. Go to this Adobe site to check. You will see the animation above the tree.
    How to know whether AdobeFlash Player is installed
    http://helpx.adobe.com/flash-player.html?promoid=ISMRY

  • Just wanted to make sure I had the most up to date version of ITunes on my desktop first.  Tried to get on site, and got an error message saying; The folder ITunes is on a locked disk or you do not have write permissions for this folder.  Help!

    Wanted to sync up my new IPhone4, and thought that I should make sure I had the most up to date version of ITunes on my desktop first.  Tried to get on site, and got an error message saying; "The folder ITunes is on a locked disk or you do not have write permissions for this folder."   Cannot get on ITunes at all now.  Help!  Thx.

    In my case its a new computer the old one was stolen and the time machine disk did not work for a restore but did for copying the info to the new mac

Maybe you are looking for

  • Problem with JSP and servlet in Tomcat

    hello all, I have made a simple hello world in Eclipse and Tomcat, it works well on my localhost, but now that I try to run it on the server in our lab I got this exception: type Exception report message description The server encountered an internal

  • Can I be connected to two networks at the same time?

    Hi there I have an imac desktop with 10.5.8 running. I have a wireless network with my timecapsule and a printer connected to it. We have two mac computers in the house that print wirelessly via this network. I also have the internet coming in via a

  • Getting error while creating the Shopping cart.

    Hi , I am getting error while creating the Shopping cart. a.Error in account assignment for item 1  (Item  Testing SC )  b.Duplicates of Cost Centre T10063 are defined in SRM  (Item  Testing SC )  Kindly provide the solutions. Thanks, Dev

  • IPod touch 4th gen no longer plays video on TV

    Can anyone tell me exactly why I can no longer play ANY (personal, purchased, downloaded) videos or pictures from my iPod 4th Generation to my TV with the same cables I've been using for several months to do just that?  I no longer have the "TV outpu

  • How to get rid of the dotted line border?

    I have created an interactive pdf in InDesign (v9.1) containing a series of buttons.  When the file is exported to Accobat Pro (v11.0.04) all the buttons have a dotted line border when they are clicked.  How do I get rid of the border?