简体   繁体   English

如何在SQL Server中将XML文件读取为表格格式

[英]How to read XML file into tabular format in SQL Server

I have gone through different search and found many similar posts in which the solution was given to transform XML into Tabular format. 我经过了不同的搜索,发现了许多类似的帖子,其中提供了将XML转换为表格格式的解决方案。 Below is the sample data of a single row's column I'm attaching and also the basic query which I have done so far. 以下是我要附加的单行列的示例数据,以及到目前为止已完成的基本查询。

<DS_systeminfo>
<Systeminfo>
  <Property>CurrentLanguage</Property>
  <Property_value>en-US</Property_value>
</Systeminfo>
<Systeminfo>
  <Property>Manufacturer</Property>
  <Property_value>LENOVO</Property_value>
</Systeminfo>
<Systeminfo>
  <Property>SerialNumber</Property>
  <Property_value>789654</Property_value>
</Systeminfo>
<Systeminfo>
  <Property>Caption</Property>
  <Property_value>ATTT</Property_value>
</Systeminfo>   
  <Property>Manufacturer</Property>
  <Property_value>LENOVO</Property_value>
</Systeminfo>  
<Systeminfo>
  <Property>WindowsDirectory</Property>
  <Property_value>C:\WINDOWS</Property_value>
</Systeminfo>

and the query is below: query如下:

SELECT SerialNumber, 
Cast(SystemInfoXML AS XML).value('(/DS_systeminfo/Systeminfo/Property)[1]', 'varchar(100)') AS Caption,
Cast(SystemInfoXML AS XML).value('(/DS_systeminfo/Systeminfo/Property_value)[1]', 'varchar(100)') AS Value
FROM TerminalsDetail

This is fetching only first node's value , I want to select all the nodes dynamically in a single query , may be using cursor . 这仅获取第一个节点的值,我想在单个查询中动态选择所有节点,可能正在使用cursor

the data given is of single row, I have more over 100 rows for which I need to convert to tabular format. 给定的数据是单行,我有100多个行需要转换为表格格式。

any kind suggestion will be helpful. 任何建议都会有所帮助。

Declare @YourTable table (ID int,SystemInfoXML xml)
Insert Into @YourTable values
(1,'<DS_systeminfo><Systeminfo><Property>CurrentLanguage</Property><Property_value>en-US</Property_value></Systeminfo><Systeminfo><Property>Manufacturer</Property><Property_value>LENOVO</Property_value></Systeminfo><Systeminfo><Property>SerialNumber</Property><Property_value>789654</Property_value></Systeminfo><Systeminfo><Property>Caption</Property><Property_value>ATTT</Property_value></Systeminfo><Systeminfo><Property>Manufacturer</Property><Property_value>LENOVO</Property_value></Systeminfo><Systeminfo><Property>WindowsDirectory</Property><Property_value>C:\WINDOWS</Property_value></Systeminfo></DS_systeminfo>')

Select A.ID
      ,B.*
 From  @YourTable A
 Cross Apply (
                Select [Caption] = f.n.value('(Property)[1]','varchar(50)') 
                      ,[Value]   = f.n.value('(Property_value)[1]','varchar(50)') 
                 From  A.SystemInfoXML.nodes('DS_systeminfo') t(n)
                 Cross Apply t.n.nodes('Systeminfo') f(n)
             ) B

Returns 返回

ID  Caption           Value
1   CurrentLanguage   en-US
1   Manufacturer      LENOVO
1   SerialNumber      789654
1   Caption           ATTT
1   Manufacturer      LENOVO
1   WindowsDirectory  C:\WINDOWS

Something like this: 像这样:

WITH the_data AS (
  SELECT CAST(SystemInfoXML AS XML) AS XML_DATA
  FROM TerminalsDetail
)
SELECT 
  XML_DATA.query('/DS_systeminfo/Systeminfo/Property[1]') as Caption,
  XML_DATA.query('/DS_systeminfo/Systeminfo/Property_value[1]') as Value
FROM cte

Hat Tip 帽子提示

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM