Click here to Skip to main content
15,884,176 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am trying to get a table of data out of an old Database. The database provides an export file for editing and then reuploading into the database and the report becomes a stored report

the report is uploading but the properties are not working

the URL in the SCHEMA is currently not available

xmlns:rd="http://schemas.microsoft.com/sqlserver/reporting/reportdesigner"

Is there another URL that may help the SCHEMA to work?

What I have tried:

i have tried updating the SCHEMA to a later version but this is an XSD SCHEMA and this does not work as the <rd:typename>System.String is looking for the URL

Any other suggestions
Posted
Updated 2-Mar-22 5:17am

1 solution

Check out the MSDN documentation: Find the Report Definition Schema Version - SQL Server Reporting Services (SSRS) | Microsoft Docs[^]

Quote:

How to: Identify the RDL schema version of a report



Open the report .rdl file in an application such as Notepad or XML Notepad, in which you can view the XML.

The XML Report element specifies the schema namespace. For example, the following Report element specifies the namespace for Report Designer and the namespace for the report definition.
XML

XML
<Report xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" xmlns="http://schemas.microsoft.com/sqlserver/reporting/2016/01/reportdefinition" xmlns:df="http://schemas.microsoft.com/sqlserver/reporting/2016/01/reportdefinition/defaultfontfamily" MustUnderstand="df">


The most recent report definition namespace is 2016. However, the most recent published report definition namespace is 2010, specified by the following URL: https://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition..


More details you'll find under above link.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900