The MSSLogToDatabase tool does not recognize a SQL Server 2005 Reporting Services host in Microsoft Speech Server 2004 (914824)
The information in this article applies to:
- Microsoft Speech Server 2004 Standard Edition
- Microsoft Speech Server 2004 R2 Standard Edition
- Microsoft Speech Server 2004 Enterprise Edition
- Microsoft Speech Server 2004 R2 Enterprise
SYMPTOMSWhen you use the MSSLogToDatabase tool (MSSLogToDatabase.exe) to import Microsoft Speech Server (MSS) 2004 log data into a reporting database, the MSSLogToDatabase tool does not recognize a Microsoft SQL Server 2005 Reporting Services host.CAUSEThis problem occurs because the Microsoft Windows Management Instrumentation (WMI) interface for SQL Server 2005 Reporting Services differs from the WMI interface for SQL Server 2000 Reporting Services. The MSSLogToDatabase tool examines the VirtualRoot property of the Reporting Services host WMI interface. Therefore, you cannot use the MSSLogToDatabase tool together with a SQL Server 2005 Reporting Services host unless you follow the steps in the "Workaround" section.WORKAROUNDTo work around this problem, create a static instance of the SQL Server 2000 Reporting Services WMI namespace on the computer that is running SQL Server 2005 Reporting Services. Note This workaround does not affect the SQL Server 2005 Reporting Services installation. To do this, follow these steps: - On the computer that is running SQL Server 2005 Reporting Services, create a text file that contains the following code.
#pragma namespace("\\\\.\\root\\Microsoft")
instance of __Namespace
{
Name = "SqlServer";
};
#pragma namespace("\\\\.\\root\\Microsoft\\SqlServer")
instance of __Namespace
{
Name = "ReportingServices";
};
#pragma namespace("\\\\.\\root\\Microsoft\\SqlServer\\ReportingServices")
instance of __Namespace
{
Name = "v8";
};
#pragma namespace("\\\\.\\root\\Microsoft\\SqlServer\\ReportingServices\\v8")
class MSReportServer_ConfigurationSetting
{
[key] string VirtualRoot;
};
instance of MSReportServer_ConfigurationSetting
{
VirtualRoot = "http://localhost/reportserver";
}; - Save this file as the C:\CreateSql2000RS.mof file.
- Click Start, click Run, type the following command, and then click OK:
Mofcomp C:\CreateSql2000RS.mof Note The MSSLogToDatabase tool works as expected.
Removal
When you no longer want to use the MSSLogToDatabase tool to import MSS 2004 log data, you may want to delete the instance of the WMI namespace that you created in this workaround. To do this, follow these steps on the computer that is running SQL Server 2005 Reporting Services: - Create a text file that contains the following code.
#pragma namespace("\\\\.\\root\\Microsoft\\SqlServer\\ReportingServices")
#pragma deleteinstance("__Namespace='V8'", NOFAIL) - Save this file as the C:\DeleteSql2000RS.mof file.
- Click Start, click Run, type the following command, and then click OK:
Mofcomp C:\DeleteSql2000RS.mof Note Do not follow these steps if a valid instance of SQL Server 2000 Reporting Services is present on the computer. MORE INFORMATIONThis problem or similar problems do not occur when you migrate a MSS 2004 Data Transformation Services (DTS) package to SQL Server 2005. Additionally, the MSSLogToDatabase tool can create the Call Viewer database on a server that is running SQL Server 2005 without encountering this problem or similar problems.
Modification Type: | Major | Last Reviewed: | 5/5/2006 |
---|
Keywords: | kbprb KB914824 kbAudDeveloper |
---|
|