我尝试将多个表的 SSIS 数据探查器任务的结果合并到一个 XML 中,以检查“数据探查器查看器”内单个文件中的结果。整个问题在这里缩小为简化的 XML 转换:
文件 1 (test_1.xml):
<a xmlns="http://schemas.microsoft.com/sqlserver/2008/DataDebugger/">
<b id="1"/>
<c>
<2: any other XML-structure to come here/>
</c>
</a>
文件 2 (test_2.xml):
<a xmlns="http://schemas.microsoft.com/sqlserver/2008/DataDebugger/">
<b id="1"/>
<c>
<1: any other XML-structure to come here/>
</c>
</a>
(元素 b 始终完全相同)
预期结果:
<a xmlns="http://schemas.microsoft.com/sqlserver/2008/DataDebugger/">
<b id="1"/>
<c>
<1: any other XML-structure to come here/>
<2: any other XML-structure to come here/>
</c>
</a>
强烈推荐任何帮助!我将在这里提供原始问题的解决方案。