Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/reporting-services/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
在SSRS中使用XML显示和解析列中的数据_Xml_Reporting Services_Reportbuilder - Fatal编程技术网

在SSRS中使用XML显示和解析列中的数据

在SSRS中使用XML显示和解析列中的数据,xml,reporting-services,reportbuilder,Xml,Reporting Services,Reportbuilder,我试图显示SQL中包含XML的列中的数据。一个例子如下: <ArrayOfTarget xmlns:i="http://www.example.org/example2001/XMLSchema-instance" xmlns="http://schemas.example.org/2004/07/example.example.example.example.example"> <Target> <AgencyI

我试图显示SQL中包含XML的列中的数据。一个例子如下:

<ArrayOfTarget xmlns:i="http://www.example.org/example2001/XMLSchema-instance" xmlns="http://schemas.example.org/2004/07/example.example.example.example.example">
  <Target>
    <AgencyId>b0ab0a3a-1299-cb19-d6c6-08d6f8dfab0f</AgencyId>
    <AgencyName i:nil="true" />
    <Id>337a22d8-e1d9-cdf2-240f-08d8622b44ac</Id>
    <Name>Case Number example</Name>
    <Type>Case Management</Type>
  </Target>

b0ab0a3a-1299-cb19-d6c6-08d6f8dfab0f
337a22d8-e1d9-cdf2-240f-08d8622b44ac
案例编号示例
案例管理

有没有一种方法可以在SSRS中显示,例如XML中“Name”中的数据?

我应该澄清一下可能存在的重复。在不使用SQL的情况下,是否可以在报表生成器中使用XML直接显示和解析列中的数据?