SSRS 报表 2008 就版本问题
在工作中,旧版本SSRS报表 用VS2017 或 2019打开并修改保存后,出现报错的版本问题。
错误信息:
我在网上找到解决方法:https://stackoverflow.com/questions/38902037/ssrs-report-definition-is-newer-than-server
步骤:
1. 修改xmlns的值:"http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition", 删除Xmlns:df 属性。
2. 删除 "ReportParametersLayout" 包括内容。
3. 删除 “df” 标签和内容。(我的报表中没有)
4. 删除 “ReportSections” 和 “ReportSection” 两个开始和结束标签。注:不包含标签中所包含的内容
我是用了以上的步骤,问题解决了。上边链接是英文的版本,有兴趣可以看看。