FIX: An access violation may occur in the Msmdsrv.exe process, and the server may crash when you try to run an Alter DDL command in SQL Server 2005 Analysis Services (916820)



The information in this article applies to:

  • Microsoft SQL Server 2005 Analysis Services

Bug: #433 (SQL Hotfix)
Microsoft distributes Microsoft SQL Server 2005 fixes as one downloadable file. Because the fixes are cumulative, each new release contains all the hotfixes and all the security fixes that were included with the previous SQL Server 2005 fix release.

SUMMARY

This article describes the following about this hotfix release:
  • The issues that are fixed by the hotfix package
  • The prerequisites for installing the hotfix package
  • Whether you must restart the computer after you install the hotfix package
  • Whether the hotfix package is replaced by any other hotfix package
  • Whether you must make any registry changes
  • The files that are contained in the hotfix package

SYMPTOMS

Consider the following scenario. In Microsoft SQL Server 2005 Analysis Services, you try to run an Alter data definition language (DDL) command. This Alter DDL command deletes the dimension hierarchies from the database without deleting the dimension hierarchies from the cube. In this scenario, an access violation may occur in the Msmdsrv.exe process. Additionally, the server may crash.

RESOLUTION

Hotfix information

This hotfix is included in the cumulative hotfix package (build 2153) for SQL Server 2005 that is discussed in Microsoft Knowledge Base article 918222. For more information, click the following article number to view the article in the Microsoft Knowledge Base:

918222 Cumulative hotfix package (build 2153) for SQL Server 2005 is available

A supported hotfix is now available from Microsoft, but it is only intended to correct the problem that is described in this article. Only apply it to systems that are experiencing this specific problem. This hotfix may receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next SQL Server 2005 Analysis Services service pack that contains this hotfix.

To resolve this problem immediately, contact Microsoft Product Support Services to obtain the hotfix. For a complete list of Microsoft Product Support Services telephone numbers and information about support costs, visit the following Microsoft Web site:Note In special cases, charges that are ordinarily incurred for support calls may be canceled if a Microsoft Support Professional determines that a specific update will resolve your problem. The usual support costs will apply to additional support questions and issues that do not qualify for the specific update in question.

Prerequisites

To apply this hotfix, you must have Analysis Services installed on the computer.

Restart information

You do not have to restart the computer after you apply this hotfix. However, this hotfix stops and then restarts the Analysis Services service. If you configured the server for HTTP access, you must stop Microsoft Internet Information Services (IIS) and then restart IIS after the installation is finished. If you installed Analysis Services as a named instance, you must stop the SQL Server Browser service. You must stop the SQL Server Browser service because the Msmdredir.dll component of the SQL Server Browser service is updated during the installation of this hotfix.

Registry information

You do not have to change the registry.

Hotfix file information

This hotfix contains only those files that are required to correct the issues that this article lists. This hotfix may not contain all the files that you must have to fully update a product to the latest build.

The English version of this hotfix has the file attributes (or later file attributes) that are listed in the following table. The dates and times for these files are listed in Coordinated Universal Time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the Time Zone tab in the Date and Time item in Control Panel.SQL Server 2005 Analysis Services 32-bit versions
File nameFile versionFile sizeDateTimePlatform
Msmdlocal.dll9.0.1534.015,597,78422-Mar-200603:07x86
Msmdpump.dll9.0.1534.03,913,94422-Mar-200603:07x86
Msmdredir.dll9.0.1534.03,927,25622-Mar-200603:07x86
Msmdsrv.exe9.0.1534.014,575,83222-Mar-200603:07x86
Msmgdsrv.dll9.0.1534.05,935,32022-Mar-200603:07x86
Msolap90.dll9.0.1534.04,205,27222-Mar-200603:07x86
SQL Server 2005 Analysis Services 64-bit version
File nameFile versionFile sizeDateTimePlatform
Msmdlocal.dll9.0.1534.030,035,67223-Mar-200601:20x64
Msmdpump.dll9.0.1534.04,959,44823-Mar-200601:20x64
Msmdredir.dll9.0.1534.04,832,47223-Mar-200601:20x64
Msmdsrv.exe9.0.1534.029,360,34423-Mar-200601:20x64
Msmgdsrv.dll9.0.1534.08,910,04023-Mar-200601:20x64
Msolap90.dll9.0.1534.05,669,08023-Mar-200601:20x64
SQL Server 2005 Analysis Services Itanium-architecture version
File nameFile versionFile sizeDateTimePlatform
Msmdlocal.dll9.0.1534.048,464,08822-Mar-200607:02IA-64
Msmdpump.dll9.0.1534.06,528,72822-Mar-200607:04IA-64
Msmdredir.dll9.0.1534.06,073,56022-Mar-200607:04IA-64
Msmdsrv.exe9.0.1534.047,423,19222-Mar-200607:04IA-64
Msmgdsrv.dll9.0.1534.012,842,20022-Mar-200607:04IA-64
Msolap90.dll9.0.1534.07,687,38422-Mar-200607:04IA-64

WORKAROUND

To work around this problem by using the Analysis Management Objects (AMO), wrap the Dimension.Update method call in a transaction. Then, call the Dimension.Update method by using the UpdateOptions.ExpandFull parameter. Additionally, add code to delete the dimension hierarchies from the cube. For example, follow these steps:
  1. Start the transaction.
  2. Update the dimension.
  3. Iterate through the cubes.
  4. Alter the cubes that contain the dimension, and then delete the dimension hierarchies.
  5. Commit the transaction.
The following code example illustrates these steps.
server.BeginTransaction();
try
{
    dim.Update(UpdateOptions.ExpandFull, UpdateMode.UpdateOrCreate);
    foreach (string hierarchyName in BadHierarchies)
    {
         foreach (Cube cub in db.Cubes) 
         {
              CubeDimension cub_dim = (CubeDimension)cub.Dimensions.Find(dim.Name.Trim());
              if (cub_dim != null) 
              {
                   cub_dim.Hierarchies.Remove(hierarchyName.Trim());
                   cub_dim.Dispose();
                   cub.Update(UpdateOptions.ExpandFull, UpdateMode.UpdateOrCreate);
               }
           }
       }
       server.CommitTransaction();
}
catch (Exception ex) 
{
       System.Diagnostics.Trace.WriteLine(ex.Message);
       server.RollbackTransaction();
}

STATUS

Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.

MORE INFORMATION

For more information, click the following article number to view the article in the Microsoft Knowledge Base:

824684 Description of the standard terminology that is used to describe Microsoft software updates


Modification Type:MinorLast Reviewed:7/26/2006
Keywords:kbsql2005as kbQFE kbpubtypekc KB916820 kbAudITPRO kbAudDeveloper