.NET Questions and Solutions

As a software engineer, I focus on .NET, especially asp.net, C#, WCF and so on, and I am also very interested in Search Engine Optimization.

Entries for February, 2010

Description of the .NET Framework 1.1 post-Service Pack 1 hotfix rollup package for System.windows.forms.dll

Symptoms
This article describesthe Microsoft.NET Framework 1.1 issues that are fixed in the .NET Framework 1.1 post-Service Pack 1 hotfix rollup package for System.windows.forms.dll.
Issues that are fixed in the hotfix packageFor more information, click the following article number to view the article in the Microsoft Knowledge Base:
875434?(http://support.microsoft.com/kb/875434/) FIX: You receive a NullReferenceException exception when you manually set a Control ID in the .NET Framework 1.1
840503?(http://support.microsoft.com/kb/840503/) FIX: The scroll bar may not show the correct position in a spreadsheet in a Windows Forms application in the Microsoft .NET Framework 1.1
841096?(http://support.microsoft.com/kb/841096/) Validation event does not fire for Microsoft Windows Forms controls
873429?(http://support.microsoft.com/kb/873429/) FIX: A gradual memory leak occurs in a WinForm application when you create, modify, or remove a MenuItem property for an MDI form in the .NET Framework 1.1
884579?(http://support.microsoft.com/kb/884579/) FIX: The Click event for a button in a UserControl control occurs even though another UserControl control is set to cancel form validation in a Microsoft Windows Forms application that is built on the Microsoft .NET Framework 1.1
886802?(http://support.microsoft.com/kb/886802/) FIX: You may receive the “AxImp error object reference not set to an instance of an object” error message when you run AxImp.exe on an ActiveX control in the .NET Framework 1.1
886686?(http://support.microsoft.com/kb/886686/) FIX: You can close a form by using the Close button even if the Cancel property of a Validating event is set to True on an object in a Windows Forms application in the .NET Framework 1.1
885446?(http://support.microsoft.com/kb/885446/) FIX: You may experience unexpected behavior when you press TAB or ENTER in a Windows Form on a computer that is running the .NET Framework 1.1 S885446
Resolution
Hotfix informationA 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 .NET Framework 1.1 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:
http://support.microsoft.com/contactus/?ws=support(http://support.microsoft.com/contactus/?ws=support)NoteIn 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.PrerequisitesYou must have the.NET Framework 1.1 Service Pack 1 (SP1) installed to apply this hotfix.Restart informationYou do not have to restart your computer after you apply this hotfix.Hotfix replacement informationThis hotfix is not replaced by any later hotfix.Registry informationYou do not have to create or to modify any registry keys to activate any hotfixes that are contained in this package.Hotfix file informationThis hotfix contains only those files that you must have to correct the issues that this article lists. This hotfix may not contain of 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 tool in Control Panel.

DateTimeVersionSizeFile name———————————————————————07-Oct-200421:461.1.4322.20382,052,096System.windows.forms.dll

Description of database normalization basics in Access 2000

Symptoms
This article explains database normalization terminology for beginners. A basic understanding of this terminology is helpful when discussing the design of a relational database.
NOTE: Microsoft also offers a WebCast that discusses the basics of database normalization. To view this WebCast, please visit the following Microsoft Web site:
http://support.microsoft.com/servicedesks/webcasts/wc060600/wc060600.asp?fr=1(http://support.microsoft.com/?scid=http%3a%2f%2fsupport.microsoft.com%2fservicedesks%2fwebcasts%2fwc060600%2fwc060600.asp%3ffr%3d1) For additional information about this topic in an earlier version of Access, click the following article number to view the article in the Microsoft Knowledge Base:
100139?(http://support.microsoft.com/kb/100139/) Database normalization basics
Resolution
Description of normalization Normalization is the process of organizing data in a database. This includes creating tables and establishing relationships between those tables according to rules designed both to protect the data and to make the database more flexible by eliminating redundancy and inconsistent dependency.
Redundant data wastes disk space and creates maintenance problems. If data that exists in more than one place must be changed, the data must be changed in exactly the same way in all locations. A customer address change is much easier to implement if that data is stored only in the Customers table and nowhere else in the database.
What is an “inconsistent dependency”? While it is intuitive for a user to look in the Customers table for the address of a particular customer, it may not make sense to look there for the salary of the employee who calls on that customer. The employee’s salary is related to, or dependent on, the employee and thus should be moved to the Employees table. Inconsistent dependencies can make data difficult to access because the path to find the data may be missing or broken.
There are a few rules for database normalization. Each rule is called a “normal form.” If the first rule is observed, the database is said to be in “first normal form.” If the first three rules are observed, the database is considered to be in “third normal form.” Although other levels of normalization are possible, third normal form is considered the highest level necessary for most applications.
As with many formal rules and specifications, real world scenarios do not always allow for perfect compliance. In general, normalization requires additional tables and some customers find this cumbersome. If you decide to violate one of the first three rules of normalization, make sure that your application anticipates any problems that could occur, such as redundant data and inconsistent dependencies.
The following descriptions include examples.
First normal formEliminate repeating groups in individual tables. Create a separate table for each set of related data. Identify each set of related data with a primary key. Do not use multiple fields in a single table to store similar data. For example, to track an inventory item that may come from two possible sources, an inventory record may contain fields for Vendor Code 1 and Vendor Code 2.
What happens when you add a third vendor? Adding a field is not the answer; it requires program and table modifications and does not smoothly accommodate a dynamic number of vendors. Instead, place all vendor information in a separate table called Vendors, then link inventory to vendors with an item number key, or vendors to inventory with a vendor code key.
Second normal formCreate separate tables for sets of values that apply to multiple records. Relate these tables with a foreign key. Records should not depend on anything other than a table’s primary key (a compound key, if necessary). For example, consider a customer’s address in an accounting system. The address is needed by the Customers table, but also by the Orders, Shipping, Invoices, Accounts Receivable, and Collections tables. Instead of storing the customer’s address as a separate entry in each of these tables, store it in one place, either in the Customers table or in a separate Addresses table.
Third normal formEliminate fields that do not depend on the key. Values in a record that are not part of that record’s key do not belong in the table. In general, any time the contents of a group of fields may apply to more than a single record in the table, consider placing those fields in a separate table.
For example, in an Employee Recruitment table, a candidate’s university name and address may be included. But you need a complete list of universities for group mailings. If university information is stored in the Candidates table, there is no way to list universities with no current candidates. Create a separate Universities table and link it to the Candidates table with a university code key.
EXCEPTION: Adhering to the third normal form, while theoretically desirable, is not always practical. If you have a Customers table and you want to eliminate all possible interfield dependencies, you must create separate tables for cities, ZIP codes, sales representatives, customer classes, and any other factor that may be duplicated in multiple records. In theory, normalization is worth pursing. However, many small tables may degrade performance or exceed open file and memory capacities.
It may be more feasible to apply third normal form only to data that changes frequently. If some dependent fields remain, design your application to require the user to verify all related fields when any one is changed.
Other normalization forms Fourth normal form, also called Boyce Codd Normal Form (BCNF), and fifth normal form do exist, but are rarely considered in practical design. Disregarding these rules may result in less than perfect database design, but should not affect functionality.
Normalizing an example table These steps demonstrate the process of normalizing a fictitious student table. Unnormalized table:
Collapse this tableExpand this table
Student#AdvisorAdv-RoomClass1Class2Class31022Jones412101-07143-01159-024123Smith216201-01211-02214-01First Normal Form: No Repeating Groups
Tables should have only two dimensions. Since one student has several classes, these classes should be listed in a separate table. Fields Class1, Class2, and Class3 in the above records are indications of design trouble.
Spreadsheets often use the third dimension, but tables should not. Another way to look at this problem is with a one-to-many relationship, do not put the one side and the many side in the same table. Instead, create another table in first normal form by eliminating the repeating group (Class#), as shown below:
Collapse this tableExpand this table
Student#AdvisorAdv-RoomClass#1022Jones412101-071022Jones412143-011022Jones412159-024123Smith216201-014123Smith216211-024123Smith216214-01Second Normal Form: Eliminate Redundant Data
Note the multiple Class# values for each Student# value in the above table. Class# is not functionally dependent on Student# (primary key), so this relationship is not in second normal form.
The following two tables demonstrate second normal form: Students
Collapse this tableExpand this table
Student#AdvisorAdv-Room1022Jones4124123Smith216Registration
Collapse this tableExpand this table
Student#Class#1022101-071022143-011022159-024123201-014123211-024123214-01Third Normal Form: Eliminate Data Not Dependent On Key
In the last example, Adv-Room (the advisor’s office number) is functionally dependent on the Advisor attribute. The solution is to move that attribute from the Students table to the Faculty table, as shown below:Students
Collapse this tableExpand this table
Student#Advisor1022Jones4123SmithFaculty
Collapse this tableExpand this table
NameRoomDeptJones41242Smith21642

DataSet column mapping throws an InvalidOperationException exception when the specified column is missing in ADO.NET

Symptoms
When you use DataSet column mapping in ADO.NET, an InvalidOperationException exception is thrown if the MissingMappingAction property is set to Error and the column mapping that you specify is missing.
Resolution
To resolve this problem, ensure that the column mapping that you specify exists. Refer to the “More Information” section for code that checks whether the specified column mapping exists.

DEFECT ERROR: Object Reference not set to an Instance of an Object

Symptoms
“Object reference not set to an instance of an object” This error occurs when generating a report for a company that has been deleted from within FRx.
Resolution
This SMR has been fixed in R04670 Service Pack, please check our website () for availability of Service Packs for your General Ledger. You may also sign up for automatic notification of Services on our website .

DataSet column mapping throws an InvalidOperationException exception when the specified column is missing in a Visual C# application

Symptoms
When you use DataSet column mapping in ADO.NET, an InvalidOperationException exception is thrown if the MissingMappingAction property is set to Error, and if the column mapping that you specify is missing.
Resolution
To resolve this problem, ensure that the column mapping that you specify exists. Refer to the “More Information” section for code that checks whether the specified column mapping exists.

Cumulative update package 1 for SQL Server 2008

Symptoms
Cumulative Update 1 contains hotfixes for the Microsoft SQL Server 2008 issues that have been fixed since the release of SQL Server 2008.
Note This build of the cumulative update package is also known as build 10.00.1763.00.
We recommend that you test hotfixes before you deploy them in a production environment. Because the builds are cumulative, each new fix release contains all the hotfixes and all the security fixes that were included with the previous SQL Server 2008 fix release. We recommend that you consider applying the most recent fix release that contains this hotfix. For more information, click the following article number to view the article in the Microsoft Knowledge Base:
956909?(http://support.microsoft.com/kb/956909/) The SQL Server 2008 builds that were released after SQL Server 2008 was released
Important notes about the cumulative update packageSQL Server 2008 hotfixes are now multilanguage. Therefore, there is only one cumulative hotfix package for all languages.One cumulative hotfix package includes all the component packages. The cumulative update package updates only those components that are installed on the system.
Resolution
How to obtain Cumulative Update 1 for SQL Server 2008A supported cumulative update package is now available from Microsoft. However, it is intended to correct only the problems that are described in this article. Apply it only to systems that are experiencing these specific problems. This cumulative update package may receive additional testing. Therefore, if you are not severely affected by any of these problems, we recommend that you wait for the next SQL Server 2008 service pack that contains the hotfixes in this cumulative update package.
If the cumulative update is available for download, there is a “Hotfix download available” section at the top of this Knowledge Base article. If this section does not appear, contact Microsoft Customer Service and Support to obtain the cumulative update package.
Note If additional issues occur or any troubleshooting is required, you might have to create a separate service request. The usual support costs will apply to additional support questions and issues that do not qualify for this specific cumulative update package. For a complete list of Microsoft Customer Service and Support telephone numbers or to create a separate service request, visit the following Microsoft Web site:
http://support.microsoft.com/contactus/?ws=support(http://support.microsoft.com/contactus/?ws=support)Note The “Hotfix Download Available” form displays the languages for which the cumulative update package is available. If you do not see your language, it is because a cumulative update package is not available for that language.
SQL Server 2008 hotfixes that are included in Cumulative Update 1 for SQL Server 2008
Microsoft Knowledge Base articles that discuss these hotfixes will be released as they become available.
For more information about the SQL Server bugs, click the following article numbers to view the articles in the Microsoft Knowledge Base:
Collapse this tableExpand this table
SQL Hotfix bug numberKnowledge Base article numberDescription50003171When you use a SAP client computer to view a SQL Server database, the database may be smaller than expected50003196957810?(http://support.microsoft.com/kb/957810/)FIX: In SQL Server 2008, a query returns incorrect results for the Date data type when you run the query on a partitioned table that uses data compression on only one of the partitions50003200957375?(http://support.microsoft.com/kb/957375/)FIX: A mirror server cannot fail over to a principal server in a SQL Server 2008 failover cluster50003202957811?(http://support.microsoft.com/kb/957811/)FIX: You receive an error message that states that the broker GUIDs do not match when you try to establish database mirroring in SQL Server 2008 or in SQL Server 200550003203957205?(http://support.microsoft.com/kb/957205/)FIX: An XML query that contains the @Table variable or the @XML variable takes a long time to complete in SQL Server 200850003224926292?(http://support.microsoft.com/kb/926292/)FIX: When you query through a view that uses the ORDER BY clause in SQL Server 2008, the result is still returned in random order 50003238957814?(http://support.microsoft.com/kb/957814/)FIX: The result for the Sum or Count function returns an empty value when you query a SQL Server 2008 Analysis Services cube50003241957101?(http://support.microsoft.com/kb/957101/)FIX: Some lists that use visibility toggles may not work as expected when you upgrade to SQL Server 2008 Reporting Services50003242955719?(http://support.microsoft.com/kb/955719/)FIX: Some text characters are displayed as square glyphs in a report that you design or view by using SQL Server 2008 Reporting Services50003243958745?(http://support.microsoft.com/kb/958745/)FIX: Error message when you try to run or preview a very large report in Microsoft SQL Server 2008 Reporting Services: “Exception of type System.OutOfMemoryException was thrown”50003244957103?(http://support.microsoft.com/kb/957103/)FIX: Error message when you try to view a report in SQL Server 2008 Reporting Services: “Object reference not set to an instance of an object. (rsRuntimeErrorInExpression)”50003245FIX: SQL Server 2008 Reporting Services stops responding when you try to render a report in the Image format50003246957104?(http://support.microsoft.com/kb/957104/)FIX: When you try to run a report that has recursive hierarchy and that uses toggles in the hierarchy, you may receive unpredictable results in SQL Server 2008 Reporting Services50003247957107?(http://support.microsoft.com/kb/957107/)FIX: A dump file may be generated in the Reporting Services Logfiles folder and you may receive an error message when you try to render a report in SQL Server 2008 Reporting Services50003248957108?(http://support.microsoft.com/kb/957108/)FIX: The Gauge report item uses only one point after you add multiple points to the item in SQL Server 2008 Reporting Services50003249FIX: Some items are split over two pages when you export a report to a PDF in SQL Server 2008 Reporting Services and you set the KeepTogether property50003250The embedded Tablix row and column size is not 100% for cells that contain data when a Tablix is embedded inside another Tablix in SQL Server 2008 Reporting Services50003251FIX: An image that is nested in a Tablix cell in SQL Server 2008 Reporting Services is displayed incorrectly when the Sizing property of the image is set to AutoSize50003252957118?(http://support.microsoft.com/kb/957118/)FIX: Images in rows are not displayed correctly for static Tablix members in a SQL Server 2008 Reporting Services report50003253957111?(http://support.microsoft.com/kb/957111/)FIX: You receive an error message when you use the LoadReportDefinition API to view a drillthrough report or a subreport report in Report Builder in SQL Server 2008 Reporting Services50003254957120?(http://support.microsoft.com/kb/957120/)FIX: SQL Server 2008 Reporting Services interprets the Slant property as a positive slope50003255957112?(http://support.microsoft.com/kb/957112/)FIX: SQL Server 2008 Reporting Services may stop responding when you move a history snapshot or a linked report to a new folder location50003256957113?(http://support.microsoft.com/kb/957113/)FIX: Error message when you try to create a query against a Hyperion Essbase cube database: “OLAP error (1260046): Unknown Member PARENT_UNIQUE_NAME used in query”50003315956039?(http://support.microsoft.com/kb/956039/)FIX: Error message when you run an MDX query that uses the CREATE GLOBAL CUBE statement to create a local cube in SQL Server 2008 Analysis Services or in SQL Server 2005 Analysis Services: “The syntax for ‘<MDXFunctionName>’ is incorrect”50003316956376?(http://support.microsoft.com/kb/956376/)FIX: The SQL Server 2005 Distribution Agent and the SQL Server 2008 Distribution Agent do not skip error 20598 when you configure a SQL Server 2000 transactional publication to skip error 2059850003320954831?(http://support.microsoft.com/kb/954831/)FIX: In SQL Server 2008 or in SQL Server 2005, the session that runs the TRUNCATE TABLE statement may stop responding, and you cannot end the session50003325955896?(http://support.microsoft.com/kb/955896/)FIX: You cannot edit a component that has multiple inputs in a SQL Server 2008 or SQL Server 2005 Integration Services package50003330955372?(http://support.microsoft.com/kb/955372/)FIX: An incorrect aggregate value is returned when you run an MDX query against a parent/child dimension that has the HideMemberIf property set to ParentIsBlankSelfOrMissing in SQL Server 2008 or in SQL Server 200550003334FIX: Error message when you run an INSERT statement in SQL Server: “Cannot insert an explicit value into a timestamp column”50003336FIX: You cannot view calculated members in an Excel 2007 pivot table that references an OLAP table in SQL Server 2005 Analysis Services Service Pack 2 or in SQL Server 2008 Analysis Services50003339FIX: Error message when you run an MDX query in SQL Server 2008 Analysis Services: “The MDX function failed because the coordinate for the ‘<AttributeName>’ attribute contains a set”50003341955975?(http://support.microsoft.com/kb/955975/)FIX: Error message when you update a table at the subscriber in a transactional replication in SQL Server 2008: “Updateable Subscriptions: Rows do not match between Publisher and Subscriber” 50003342955958?(http://support.microsoft.com/kb/955958/)FIX: No rows are returned when you use the sp_replqueuemonitor stored procedure to list the queued messages for a queue-updating subscription in SQL Server50003344957872FIX: When you update rows by using a cursor in SQL Server 2008, the update may take a long time to finish50003345956036?(http://support.microsoft.com/kb/956036/)FIX: Error message when you process a partition from SQL Server 2005 Analysis Services Cumulative Update 7 or from the release version of SQL Server 2008 Analysis Services: “Detected inconsistency between User define slice and detected slice of partition”50003346FIX: You receive a “Current session is no longer valid” error message or an access violation occurs when you process a cube in SQL Server 2008 Analysis Services50003349FIX: Error message when you run an UPDATE statement against a table that has a DML trigger in SQL Server 2008: “An inconsistency was detected during an internal operation”50003350Analysis Services may stop responding when a NonEmpty clause causes many cell errors50003351957819?(http://support.microsoft.com/kb/957819/)FIX: A SQL Server 2008 Analysis Services server may stop responding when you try to run an MDX query that uses cell security50003352957820?(http://support.microsoft.com/kb/957820/)FIX: The mining model opens a blank task editor window when you try to deploy the Data Mining Model Training task in a SQL Server 2008 Integration Services project in Business Intelligence Development Studio50003360956718?(http://support.microsoft.com/kb/956718/)FIX: A MERGE statement may not enforce a foreign key constraint when the statement updates a unique key column that is not part of a clustering key and there is a single row as the update source in SQL Server 200850003364957277?(http://support.microsoft.com/kb/957277/)FIX: The IntelliSense feature does not work correctly for a database that uses the Turkish collation and that uses the case-insensitive collation sort order in SQL Server 200850003365956218?(http://support.microsoft.com/kb/956218/)FIX: A NullReferenceException error for T-SQL Debugger occurs when you use the SET SHOWPLAN_XML ON option in a Transact-SQL statement on an instance of SQL Server 200850003367957278?(http://support.microsoft.com/kb/957278/)FIX: The IntelliSense feature incorrectly completes the logical operators in the CASE WHEN clause in SQL Server 200850003368957239?(http://support.microsoft.com/kb/957239/)FIX: You receive an error message when you click the View Single Column Profile By Column button in the Data Profile Viewer in SQL Server 2008: “Unhandled Exception”50003369957279?(http://support.microsoft.com/kb/957279/)FIX: The IntelliSense feature stops working when you type a query that has a specific lexical combination in SQL Server Management Studio in SQL Server 200850003371957803?(http://support.microsoft.com/kb/957803/)FIX: You cannot start the Data Profile Viewer (DataProfileViewer.exe) in SQL Server 200850003373957281?(http://support.microsoft.com/kb/957281/)FIX: In SQL Server 2008, the IntelliSense feature may become unavailable when you type Transact-SQL statements in the Query Editor in SQL Server Management Studio50003382FIX: Error message when you start the SQL Server 2008 Reporting Services Configuration Manager: “Invalid namespace”50003383FIX: The SimSun font is not displayed correctly when you view a SQL Server 2008 Report Services report50003386957330?(http://support.microsoft.com/kb/957330/)FIX: Clients cannot connect to the Report Server Web service in SQL Server 2008 Reporting Services50003387FIX: Error message when you render a report in SQL Server 2008 Reporting Services: “A generic error occurred in GDI+”50003388957332?(http://support.microsoft.com/kb/957332/)FIX: Data disappears from a report that contains an inner group that is set to an initial state of “Hidden” in SQL Server 2008 Reporting Services50003389957333?(http://support.microsoft.com/kb/957333/)FIX: A SQL Server 2008 Reporting Services report may repaginate continually and consume 100% of CPU resources50003391957387?(http://support.microsoft.com/kb/957387/)FIX: No records may be returned when you call the SQLExecute function to execute a prepared statement and you use the SQL Native Client ODBC Driver in SQL Server 200850003393955814?(http://support.microsoft.com/kb/955814/)FIX: Error message when you install SQL Server 2008 Express edition on a domain controller that is running Windows Server 2003 SP2 or Windows Small Business Server 2003 SP1: “Exception has been thrown by the target of invocation”50003399956138?(http://support.microsoft.com/kb/956138/)You cannot upgrade a non-English instance of SQL Server 2000 Reporting Services to SQL Server 2008 Reporting Services50003400957805?(http://support.microsoft.com/kb/957805/)FIX: When you try to run SQL Server 2008 database engine repair from a DVD, the repair fails, and you may receive error messages50003401957453?(http://support.microsoft.com/kb/957453/)FIX: When you install SQL Server 2008, the installation fails, and the “Attributes do not match” error message is logged in the Summary.txt file50003402957804?(http://support.microsoft.com/kb/957804/)FIX: SQL Server Setup does not use the instance name that you provide in the modified Config.ini file when you try to install SQL Server 2008 Express50003407Data warehousing may stop collecting data when many time-outs occur50003409You receive a memory error message when you try to run SQL Server Setup from a network resource50003410You may be unable to uninstall a prepared instance of SQL Server 200850003411955949?(http://support.microsoft.com/kb/955949/)FIX: Cluster upgrade to SQL Server 2008 fails when SQL Server 2005 cluster nodes have different installed features50003412955948?(http://support.microsoft.com/kb/955948/)FIX: When you install a clustered instance of SQL Server 2008, account validation fails even though you have specified the correct domain account and password50003414957806?(http://support.microsoft.com/kb/957806/)FIX: The CompleteFailoverCluster action does not detect the correct SKU that is prepared by using the PrepareFailoverCluster action in SQL Server 200850003415957459?(http://support.microsoft.com/kb/957459/)FIX: Error message when you try to add a second node to a SQL Server 2008 failover cluster: “The current SKU is invalid”50003419957357?(http://support.microsoft.com/kb/957357/)FIX: You receive an error message that the file is being used by another process when you try to rename or move an output file from a job in SQL Server Agent in SQL Server 200850003427957807?(http://support.microsoft.com/kb/957807/)FIX: A new node is not added to a SQL Server 2008 Analysis Services cluster or a SQL Server 2008 Reporting Services cluster if the SQL Server 2008 Database Engine is not installed50003452957809?(http://support.microsoft.com/kb/957809/)FIX: Event ID 7904 is logged, and the SQL Server 2008 database is corrupted when you restore a SQL Server 2008 database from a sequence of transaction log backups50003453Whenyou programmatically retrieve data from a SQL Server 2008 database, the data in memory may be overwritten50003454The Service Broker connections between endpoints may experience a deadlock condition when the initiator queues contain many messages50003456957823?(http://support.microsoft.com/kb/957823/)FIX: The clustered index table may take longer than you expect to be rebuilt when you use the ALTER INDEX REBUILD statement in SQL Server 200850003458957816?(http://support.microsoft.com/kb/957816/)FIX: The Database Mirroring feature does not work on a SQL Server 2008-based mirror server when you perform a rolling upgrade on the mirror server50003460FIX: Extended Events session produces an empty value for data captured for certain actions50003467955943?(http://support.microsoft.com/kb/955943/)FIX: The Processes pane in the Activity Monitor incorrectly shows sessions as head blockers in SQL Server 200850003468When a SQL Server 2008 policy fileexecutes a WMI query, the policy always executes the query against the local server regardless of the intended target50003469957817?(http://support.microsoft.com/kb/957817/)FIX: You cannot expand the Facets node under the Policy Management node in SQL Server Management Studio in a non-English version of SQL Server 2008
Cumulative update package informationPrerequisites There are no prerequisites to apply this cumulative update package. Restart informationYou may have to restart the computer after you apply this cumulative update package.Registry informationTo use one of the hotfixes in this package, you do not have to make any changes to the registry.
Cumulative update package file informationThis cumulative update may not contain all the files that you must have to fully update a product to the latest build. This cumulative update contains only the files that you must have to correct the issue thatis listed in this article.
The English version of this cumulative update 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.32-bit versionsSQL Server 2008 Database Services Core Shared
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformDistrib.exe2007.100.1763.078,36019-Sep-200809:43×86Dtspipeline.dll2007.100.1763.0697,36819-Sep-200809:43×86Microsoft.sqlserver.dmf.dll10.0.1763.0295,96019-Sep-200809:53×86Microsoft.sqlserver.management.collectortasks.dll10.0.1763.087,06419-Sep-200809:53×86Rdistcom.dll2007.100.1763.0652,31219-Sep-200810:00×86Replmerg.exe2007.100.1763.0344,08819-Sep-200810:00×86Sql_engine_core_shared_keyfile.dll2007.100.1763.016,92019-Sep-200809:52×86SQL Server 2008 Database Services Core Instance
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformDatacollectorcontroller.dll2007.100.1763.0137,75219-Sep-200809:42×86Mssqlsystemresource.ldfNot applicable524,28818-Sep-200823:36Not applicableMssqlsystemresource.mdfNot applicable63,242,24018-Sep-200823:36Not applicableSql_engine_core_inst_keyfile.dll2007.100.1763.016,92019-Sep-200809:52×86Sqlagent.exe2007.100.1763.0369,68819-Sep-200810:14×86Sqlservr.exe2007.100.1763.041,003,03219-Sep-200810:14×86SQL Server 2008 Database Services Common Core
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformMsgprox.dll2007.100.1763.0204,82419-Sep-200809:53×86Replprov.dll2007.100.1763.0578,58419-Sep-200810:00×86Replrec.dll2007.100.1763.0793,11219-Sep-200810:00×86Sql_common_core_keyfile.dll2007.100.1763.016,92019-Sep-200809:52×86Xmlsub.dll2007.100.1763.0195,60819-Sep-200810:15×86SQL Server 2008 Business Intelligence Development Studio
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformDataprofileviewer.exe10.0.1763.0316,44019-Sep-200809:42×86Dtspipeline.dll2007.100.1763.0697,36819-Sep-200809:43×86Microsoft.datatransformationservices.design.dll10.0.1763.04,236,31219-Sep-200809:53×86Microsoft.reportingservices.dataextensions.xmlaclient.dll10.0.1763.0566,29619-Sep-200809:53×86Microsoft.reportingservices.diagnostics.dll10.0.1763.0902,16819-Sep-200809:53×86Microsoft.reportingservices.hpbprocessing.dll10.0.1763.0287,76819-Sep-200809:53×86Microsoft.reportingservices.htmlrendering.dll10.0.1763.0197,65619-Sep-200809:53×86Microsoft.reportingservices.imagerendering.dll10.0.1763.0144,40819-Sep-200809:53×86Microsoft.reportingservices.processingcore.dll10.0.1763.04,342,80819-Sep-200809:53×86Microsoft.reportingservices.processingobjectmodel.dll10.0.1763.095,25619-Sep-200809:53×86Microsoft.reportingservices.rdlobjectmodel.dll10.0.1763.0832,53619-Sep-200809:53×86Microsoft.reportingservices.richtext.dll10.0.1763.0103,44819-Sep-200809:53×86Microsoft.reportingservices.spbprocessing.dll10.0.1763.0246,80819-Sep-200809:53×86Microsoft.reportingservices.wordrendering.dll10.0.1763.0230,42419-Sep-200809:53×86Msmdlocal.dll10.0.1763.023,455,25619-Sep-200809:53×86Msmgdsrv.dll10.0.1763.08,560,66419-Sep-200809:53×86Sql_bids_keyfile.dll2007.100.1763.016,92019-Sep-200809:52×86SQL Server 2008 Analysis Services
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformMsmdlocal.dll10.0.1763.023,455,25619-Sep-200809:53×86Msmdsrv.exe10.0.1763.021,949,97619-Sep-200809:53×86Msmgdsrv.dll10.0.1763.08,560,66419-Sep-200809:53×86Sql_as_keyfile.dll2007.100.1763.016,92019-Sep-200809:52×86SQL Server 2008 Integration Services
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformDtspipeline.dll2007.100.1763.0697,36819-Sep-200809:43×86Sql_is_keyfile.dll2007.100.1763.016,92019-Sep-200809:52×86SQL Server 2008 Reporting Services
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformMicrosoft.reportingservices.dataextensions.xmlaclient.dll10.0.1763.0566,29619-Sep-200809:53×86Microsoft.reportingservices.diagnostics.dll10.0.1763.0902,16819-Sep-200809:53×86Microsoft.reportingservices.hpbprocessing.dll10.0.1763.0287,76819-Sep-200809:53×86Microsoft.reportingservices.htmlrendering.dll10.0.1763.0197,65619-Sep-200809:53×86Microsoft.reportingservices.imagerendering.dll10.0.1763.0144,40819-Sep-200809:53×86Microsoft.reportingservices.processingcore.dll10.0.1763.04,342,80819-Sep-200809:53×86Microsoft.reportingservices.processingobjectmodel.dll10.0.1763.095,25619-Sep-200809:53×86Microsoft.reportingservices.rdlobjectmodel.dll10.0.1763.0832,53619-Sep-200809:53×86Microsoft.reportingservices.richtext.dll10.0.1763.0103,44819-Sep-200809:53×86Microsoft.reportingservices.spbprocessing.dll10.0.1763.0246,80819-Sep-200809:53×86Microsoft.reportingservices.wordrendering.dll10.0.1763.0230,42419-Sep-200809:53×86Msmgdsrv.dll10.0.1763.08,560,66419-Sep-200809:53×86Reportingservicesservice.exe2007.100.1763.01,106,96819-Sep-200810:00×86Reportingserviceswebserver.dll10.0.1763.01,905,68819-Sep-200810:00×86Reportingserviceswebuserinterface.dll10.0.1763.01,610,77619-Sep-200810:00×86Rsconfigtool.exe10.0.1763.01,201,17619-Sep-200810:08×86Sql_rs_keyfile.dll2007.100.1763.016,92019-Sep-200809:52×86SQL Server 2008 Management Studio
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformDataprofileviewer.exe10.0.1763.0316,44019-Sep-200809:42×86Dtspipeline.dll2007.100.1763.0697,36819-Sep-200809:43×86Microsoft.datatransformationservices.design.dll10.0.1763.04,236,31219-Sep-200809:53×86Microsoft.reportingservices.diagnostics.dll10.0.1763.0902,16819-Sep-200809:53×86Microsoft.sqlserver.dmf.dll10.0.1763.0295,96019-Sep-200809:53×86Microsoft.sqlserver.management.collectortasks.dll10.0.1763.087,06419-Sep-200809:53×86Microsoft.sqlserver.management.resourcemonitorwidgets.dll10.0.1763.0394,26419-Sep-200809:53×86Microsoft.sqlserver.sqlparser.dll10.0.1763.02,151,44819-Sep-200809:53×86Objectexplorer.dll10.0.1763.03,253,27219-Sep-200809:54×86Radlangsvc.dll10.0.1763.0123,92819-Sep-200810:00×86Rsconfigtool.exe10.0.1763.01,201,17619-Sep-200810:08×86Sql_ssms_keyfile.dll2007.100.1763.016,92019-Sep-200809:52×86Sqleditors.dll10.0.1763.01,225,75219-Sep-200810:14×86SQL Server 2008 Tools and Workstation Components
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformDtspipeline.dll2007.100.1763.0697,36819-Sep-200809:43×86Microsoft.sqlserver.chainer.infrastructure.dll10.0.1763.0230,42419-Sep-200809:53×86Microsoft.sqlserver.configuration.sco.dll10.0.1763.01,303,57619-Sep-200809:53×86Microsoft.sqlserver.configuration.sstring.dll10.0.1763.024,60019-Sep-200809:53×86Msmdlocal.dll10.0.1763.023,455,25619-Sep-200809:53×86Msmgdsrv.dll10.0.1763.08,560,66419-Sep-200809:53×86Sql_tools_keyfile.dll2007.100.1763.016,92019-Sep-200809:52×86SQL Server 2008 Native Client
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformSqlncli10.dll2007.100.1763.02,460,18419-Sep-200810:14×86Sqlncli_keyfile.dll2007.100.1763.016,92019-Sep-200809:52×86x64-basedversionsSQL Server 2008 Database Services Core Shared
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformDistrib.exe2007.100.1763.090,13619-Sep-200818:55×64Dtspipeline.dll2007.100.1763.01,090,07219-Sep-200818:55×64Microsoft.sqlserver.dmf.dll10.0.1763.0295,96019-Sep-200809:53×86Microsoft.sqlserver.dmf.dll10.0.1763.0295,96019-Sep-200819:20×86Microsoft.sqlserver.management.collectortasks.dll10.0.1763.087,06419-Sep-200819:20×86Rdistcom.dll2007.100.1763.0790,55219-Sep-200819:21×64Replmerg.exe2007.100.1763.0411,67219-Sep-200819:21×64Sql_engine_core_shared_keyfile.dll2007.100.1763.017,43219-Sep-200819:19×64SQL Server 2008 Database Services Core Instance
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformDatacollectorcontroller.dll2007.100.1763.0258,07219-Sep-200818:48×64Mssqlsystemresource.ldfNot applicable524,28818-Sep-200823:36Not applicableMssqlsystemresource.mdfNot applicable63,242,24018-Sep-200823:36Not applicableSql_engine_core_inst_keyfile.dll2007.100.1763.017,43219-Sep-200819:19×64Sqlagent.exe2007.100.1763.0430,61619-Sep-200819:02×64Sqlservr.exe2007.100.1763.057,825,81619-Sep-200819:02×64SQL Server 2008 Database Services Common Core
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformMsgprox.dll2007.100.1763.0204,82419-Sep-200809:53×86Msgprox.dll2007.100.1763.0248,85619-Sep-200819:20×64Replprov.dll2007.100.1763.0578,58419-Sep-200810:00×86Replprov.dll2007.100.1763.0730,64819-Sep-200819:21×64Replrec.dll2007.100.1763.0793,11219-Sep-200810:00×86Replrec.dll2007.100.1763.0979,99219-Sep-200819:21×64Sql_common_core_keyfile.dll2007.100.1763.017,43219-Sep-200819:19×64Xmlsub.dll2007.100.1763.0195,60819-Sep-200810:15×86Xmlsub.dll2007.100.1763.0311,32019-Sep-200819:02×64SQL Server 2008 Business Intelligence Development Studio
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformDataprofileviewer.exe10.0.1763.0316,44019-Sep-200809:42×86Dtspipeline.dll2007.100.1763.0697,36819-Sep-200809:43×86Microsoft.datatransformationservices.design.dll10.0.1763.04,236,31219-Sep-200809:53×86Microsoft.reportingservices.dataextensions.xmlaclient.dll10.0.1763.0566,29619-Sep-200809:53×86Microsoft.reportingservices.diagnostics.dll10.0.1763.0902,16819-Sep-200809:53×86Microsoft.reportingservices.hpbprocessing.dll10.0.1763.0287,76819-Sep-200809:53×86Microsoft.reportingservices.htmlrendering.dll10.0.1763.0197,65619-Sep-200809:53×86Microsoft.reportingservices.imagerendering.dll10.0.1763.0144,40819-Sep-200809:53×86Microsoft.reportingservices.processingcore.dll10.0.1763.04,342,80819-Sep-200809:53×86Microsoft.reportingservices.processingobjectmodel.dll10.0.1763.095,25619-Sep-200809:53×86Microsoft.reportingservices.rdlobjectmodel.dll10.0.1763.0832,53619-Sep-200809:53×86Microsoft.reportingservices.richtext.dll10.0.1763.0103,44819-Sep-200809:53×86Microsoft.reportingservices.spbprocessing.dll10.0.1763.0246,80819-Sep-200809:53×86Microsoft.reportingservices.wordrendering.dll10.0.1763.0230,42419-Sep-200809:53×86Msmdlocal.dll10.0.1763.023,455,25619-Sep-200809:53×86Msmdlocal.dll10.0.1763.044,450,32819-Sep-200819:20×64Msmgdsrv.dll10.0.1763.08,560,66419-Sep-200809:53×86Msmgdsrv.dll10.0.1763.012,334,10419-Sep-200819:20×64Sql_bids_keyfile.dll2007.100.1763.017,43219-Sep-200819:19×64SQL Server 2008 Analysis Services
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformMsmdlocal.dll10.0.1763.023,455,25619-Sep-200809:53×86Msmdlocal.dll10.0.1763.044,450,32819-Sep-200819:20×64Msmdsrv.exe10.0.1763.043,728,40819-Sep-200819:20×64Msmgdsrv.dll10.0.1763.08,560,66419-Sep-200809:53×86Msmgdsrv.dll10.0.1763.012,334,10419-Sep-200819:20×64Sql_as_keyfile.dll2007.100.1763.017,43219-Sep-200819:19×64SQL Server 2008 Integration Services
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformDtspipeline.dll2007.100.1763.01,090,07219-Sep-200818:55×64Sql_is_keyfile.dll2007.100.1763.017,43219-Sep-200819:19×64SQL Server 2008 Reporting Services
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformMicrosoft.reportingservices.dataextensions.xmlaclient.dll10.0.1763.0566,29619-Sep-200819:20×86Microsoft.reportingservices.diagnostics.dll10.0.1763.0902,16819-Sep-200819:20×86Microsoft.reportingservices.hpbprocessing.dll10.0.1763.0287,76819-Sep-200819:20×86Microsoft.reportingservices.htmlrendering.dll10.0.1763.0197,65619-Sep-200819:20×86Microsoft.reportingservices.imagerendering.dll10.0.1763.0144,40819-Sep-200819:20×86Microsoft.reportingservices.processingcore.dll10.0.1763.04,342,80819-Sep-200819:20×86Microsoft.reportingservices.processingobjectmodel.dll10.0.1763.095,25619-Sep-200819:20×86Microsoft.reportingservices.rdlobjectmodel.dll10.0.1763.0832,53619-Sep-200819:20×86Microsoft.reportingservices.richtext.dll10.0.1763.0103,44819-Sep-200819:20×86Microsoft.reportingservices.spbprocessing.dll10.0.1763.0246,80819-Sep-200819:20×86Microsoft.reportingservices.wordrendering.dll10.0.1763.0230,42419-Sep-200819:20×86Msmgdsrv.dll10.0.1763.012,334,10419-Sep-200819:20×64Reportingservicesservice.exe2007.100.1763.02,045,46419-Sep-200819:21×64Reportingserviceswebserver.dll10.0.1763.01,905,68819-Sep-200819:21×86Reportingserviceswebuserinterface.dll10.0.1763.01,610,77619-Sep-200819:21×86Rsconfigtool.exe10.0.1763.01,201,17619-Sep-200810:08×86Sql_rs_keyfile.dll2007.100.1763.017,43219-Sep-200819:19×64SQL Server 2008 Management Studio
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformDataprofileviewer.exe10.0.1763.0316,44019-Sep-200809:42×86Dtspipeline.dll2007.100.1763.0697,36819-Sep-200809:43×86Microsoft.datatransformationservices.design.dll10.0.1763.04,236,31219-Sep-200809:53×86Microsoft.reportingservices.diagnostics.dll10.0.1763.0902,16819-Sep-200809:53×86Microsoft.sqlserver.dmf.dll10.0.1763.0295,96019-Sep-200809:53×86Microsoft.sqlserver.dmf.dll10.0.1763.0295,96019-Sep-200819:20×86Microsoft.sqlserver.management.collectortasks.dll10.0.1763.087,06419-Sep-200809:53×86Microsoft.sqlserver.management.resourcemonitorwidgets.dll10.0.1763.0394,26419-Sep-200809:53×86Microsoft.sqlserver.sqlparser.dll10.0.1763.02,151,44819-Sep-200809:53×86Objectexplorer.dll10.0.1763.03,253,27219-Sep-200809:54×86Radlangsvc.dll10.0.1763.0123,92819-Sep-200810:00×86Rsconfigtool.exe10.0.1763.01,201,17619-Sep-200810:08×86Sql_ssms_keyfile.dll2007.100.1763.017,43219-Sep-200819:19×64Sqleditors.dll10.0.1763.01,225,75219-Sep-200810:14×86SQL Server 2008 Tools and Workstation Components
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformDtspipeline.dll2007.100.1763.0697,36819-Sep-200809:43×86Dtspipeline.dll2007.100.1763.01,090,07219-Sep-200818:55×64Microsoft.sqlserver.chainer.infrastructure.dll10.0.1763.0230,42419-Sep-200819:20×86Microsoft.sqlserver.configuration.sco.dll10.0.1763.01,303,57619-Sep-200819:20×86Microsoft.sqlserver.configuration.sstring.dll10.0.1763.024,60019-Sep-200819:20×86Msmdlocal.dll10.0.1763.023,455,25619-Sep-200809:53×86Msmdlocal.dll10.0.1763.044,450,32819-Sep-200819:20×64Msmgdsrv.dll10.0.1763.08,560,66419-Sep-200809:53×86Msmgdsrv.dll10.0.1763.012,334,10419-Sep-200819:20×64Sql_tools_keyfile.dll2007.100.1763.017,43219-Sep-200819:19×64SQL Server 2008 Native Client
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformSqlncli10.dll2007.100.1763.02,460,18419-Sep-200810:14×86Sqlncli10.dll2007.100.1763.03,158,55219-Sep-200819:02×64Sqlncli_keyfile.dll2007.100.1763.017,43219-Sep-200819:19×64Itanium-based versionsSQL Server 2008 Database Services Core Shared
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformDistrib.exe2007.100.1763.0208,92019-Sep-200823:37IA-64Dtspipeline.dll2007.100.1763.02,023,96019-Sep-200823:37IA-64Microsoft.sqlserver.dmf.dll10.0.1763.0295,96019-Sep-200809:53×86Microsoft.sqlserver.dmf.dll10.0.1763.0295,96019-Sep-200823:44×86Microsoft.sqlserver.management.collectortasks.dll10.0.1763.087,06419-Sep-200823:44×86Rdistcom.dll2007.100.1763.01,832,47219-Sep-200823:51IA-64Replmerg.exe2007.100.1763.0972,82419-Sep-200823:51IA-64Sql_engine_core_shared_keyfile.dll2007.100.1763.022,55219-Sep-200823:44IA-64SQL Server 2008 Database Services Core Instance
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformDatacollectorcontroller.dll2007.100.1763.0474,13619-Sep-200823:37IA-64Mssqlsystemresource.ldfNot applicable524,28818-Sep-200823:36Not applicableMssqlsystemresource.mdfNot applicable63,242,24018-Sep-200823:36Not applicableSql_engine_core_inst_keyfile.dll2007.100.1763.022,55219-Sep-200823:44IA-64Sqlagent.exe2007.100.1763.01,203,22419-Sep-200823:58IA-64Sqlservr.exe2007.100.1763.0110,867,48019-Sep-200823:58IA-64SQL Server 2008 Database Services Common Core
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformMsgprox.dll2007.100.1763.0204,82419-Sep-200809:53×86Msgprox.dll2007.100.1763.0536,60019-Sep-200823:45IA-64Replprov.dll2007.100.1763.0578,58419-Sep-200810:00×86Replprov.dll2007.100.1763.01,644,05619-Sep-200823:51IA-64Replrec.dll2007.100.1763.0793,11219-Sep-200810:00×86Replrec.dll2007.100.1763.02,127,38419-Sep-200823:51IA-64Sql_common_core_keyfile.dll2007.100.1763.022,55219-Sep-200823:44IA-64Xmlsub.dll2007.100.1763.0195,60819-Sep-200810:15×86Xmlsub.dll2007.100.1763.0562,20019-Sep-200823:58IA-64SQL Server 2008 Analysis Services
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformMsmdlocal.dll10.0.1763.023,455,25619-Sep-200809:53×86Msmdlocal.dll10.0.1763.057,500,69619-Sep-200823:45IA-64Msmdsrv.exe10.0.1763.058,850,84019-Sep-200823:45IA-64Msmgdsrv.dll10.0.1763.08,560,66419-Sep-200809:53×86Msmgdsrv.dll10.0.1763.015,485,97619-Sep-200823:45IA-64Sql_as_keyfile.dll2007.100.1763.022,55219-Sep-200823:44IA-64SQL Server 2008 Integration Services
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformDtspipeline.dll2007.100.1763.02,023,96019-Sep-200823:37IA-64Sql_is_keyfile.dll2007.100.1763.022,55219-Sep-200823:44IA-64SQL Server 2008 Reporting Services
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformMicrosoft.reportingservices.dataextensions.xmlaclient.dll10.0.1763.0566,29619-Sep-200823:44×86Microsoft.reportingservices.diagnostics.dll10.0.1763.0902,16819-Sep-200823:44×86Microsoft.reportingservices.hpbprocessing.dll10.0.1763.0287,76819-Sep-200823:44×86Microsoft.reportingservices.htmlrendering.dll10.0.1763.0197,65619-Sep-200823:44×86Microsoft.reportingservices.imagerendering.dll10.0.1763.0144,40819-Sep-200823:44×86Microsoft.reportingservices.processingcore.dll10.0.1763.04,342,80819-Sep-200823:44×86Microsoft.reportingservices.processingobjectmodel.dll10.0.1763.095,25619-Sep-200823:44×86Microsoft.reportingservices.rdlobjectmodel.dll10.0.1763.0832,53619-Sep-200823:44×86Microsoft.reportingservices.richtext.dll10.0.1763.0103,44819-Sep-200823:44×86Microsoft.reportingservices.spbprocessing.dll10.0.1763.0246,80819-Sep-200823:44×86Microsoft.reportingservices.wordrendering.dll10.0.1763.0230,42419-Sep-200823:44×86Msmgdsrv.dll10.0.1763.015,485,97619-Sep-200823:45IA-64Reportingservicesservice.exe2007.100.1763.03,360,28019-Sep-200823:51IA-64Reportingserviceswebserver.dll10.0.1763.01,905,68819-Sep-200823:51×86Reportingserviceswebuserinterface.dll10.0.1763.01,610,77619-Sep-200823:51×86Rsconfigtool.exe10.0.1763.01,201,17619-Sep-200810:08×86Sql_rs_keyfile.dll2007.100.1763.022,55219-Sep-200823:44IA-64SQL Server 2008 Management Studio
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformDataprofileviewer.exe10.0.1763.0316,44019-Sep-200809:42×86Dtspipeline.dll2007.100.1763.0697,36819-Sep-200809:43×86Microsoft.datatransformationservices.design.dll10.0.1763.04,236,31219-Sep-200809:53×86Microsoft.reportingservices.diagnostics.dll10.0.1763.0902,16819-Sep-200809:53×86Microsoft.sqlserver.dmf.dll10.0.1763.0295,96019-Sep-200809:53×86Microsoft.sqlserver.dmf.dll10.0.1763.0295,96019-Sep-200823:44×86Microsoft.sqlserver.management.collectortasks.dll10.0.1763.087,06419-Sep-200809:53×86Microsoft.sqlserver.management.resourcemonitorwidgets.dll10.0.1763.0394,26419-Sep-200809:53×86Microsoft.sqlserver.sqlparser.dll10.0.1763.02,151,44819-Sep-200809:53×86Objectexplorer.dll10.0.1763.03,253,27219-Sep-200809:54×86Radlangsvc.dll10.0.1763.0123,92819-Sep-200810:00×86Rsconfigtool.exe10.0.1763.01,201,17619-Sep-200810:08×86Sql_ssms_keyfile.dll2007.100.1763.022,55219-Sep-200823:44IA-64Sqleditors.dll10.0.1763.01,225,75219-Sep-200810:14×86SQL Server 2008 Tools and Workstation Components
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformDtspipeline.dll2007.100.1763.0697,36819-Sep-200809:43×86Dtspipeline.dll2007.100.1763.02,023,96019-Sep-200823:37IA-64Microsoft.sqlserver.chainer.infrastructure.dll10.0.1763.0230,42419-Sep-200823:44×86Microsoft.sqlserver.configuration.sco.dll10.0.1763.01,303,57619-Sep-200823:44×86Microsoft.sqlserver.configuration.sstring.dll10.0.1763.024,60019-Sep-200823:44×86Msmdlocal.dll10.0.1763.023,455,25619-Sep-200809:53×86Msmdlocal.dll10.0.1763.057,500,69619-Sep-200823:45IA-64Msmgdsrv.dll10.0.1763.08,560,66419-Sep-200809:53×86Msmgdsrv.dll10.0.1763.015,485,97619-Sep-200823:45IA-64Sql_tools_keyfile.dll2007.100.1763.022,55219-Sep-200823:44IA-64SQL Server 2008 Native Client
Collapse this tableExpand this table
File nameFile versionFile sizeDateTimePlatformSqlncli10.dll2007.100.1763.02,460,18419-Sep-200810:14×86Sqlncli10.dll2007.100.1763.06,347,80019-Sep-200823:58IA-64Sqlncli_keyfile.dll2007.100.1763.022,55219-Sep-200823:44IA-64