📅  最后修改于: 2023-12-03 15:39:46.509000             🧑  作者: Mango
这个错误是指在 SQL Server Reporting Services (SSRS) 中的报告定义文件(.rdl文件)中,目标命名空间被设置为了错误的值。通常情况下,目标命名空间应该是 "http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition"。
<?xml version="1.0" encoding="utf-8"?>
<Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition"
xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner"
xmlns:cl="http://schemas.microsoft.com/sqlserver/reporting/2010/01/componentdefinition"
xmlns:cm="http://schemas.microsoft.com/sqlserver/reporting/2017/01/componentmodel"
xmlns:df="http://schemas.microsoft.com/sqlserver/reporting/2016/01/shareddatasetdefinition"
xmlns:dp="http://schemas.microsoft.com/sqlserver/reporting/2016/01/datapipeline">
...
</Report>
注意:以上代码片段仅作示例,实际报告定义文件的命名空间有可能与示例中的不同。