使用 SQL Server 从复杂的 XML 结构中读取值

Read value from a complex XML structure using SQL Server(使用 SQL Server 从复杂的 XML 结构中读取值)
本文介绍了使用 SQL Server 从复杂的 XML 结构中读取值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图从数据类型为 ntext 的列的 XML 结构中读取 SQL Server 查询中的值.

I am trying to read a value in a SQL Server query out of a XML structure from a column of datatype ntext.

这是我想从中提取的 XML 结构 VALUE TO READ!!!:

This is the XML structure from which I want to extract VALUE TO READ!!!:

<PrinterProcessDef xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://dev.docuware.com/settings/workflow/processdef" Id="3e62848d-040e-4f4c-a893-ed85a7b2878a" Type="PrinterProcess" ConfigId="c43792ed-1934-454b-a40f-5f4dfec933b0" Enabled="true" PCId="2837f136-028d-47ed-abdc-4103bedce1d2" Timestamp="2016-08-08T09:44:38.532415">
  <Configs>
    <Config xmlns:q1="http://dev.docuware.com/settings/workflow/processconfig" xsi:type="q1:PrinterProcessConfig" Id="c43792ed-1934-454b-a40f-5f4dfec933b0" />
    <Config xmlns:q2="http://dev.docuware.com/settings/workflow/processconfig" xsi:type="q2:RecognizeActConfig" Id="b89a6fc2-5573-4034-978a-752c6c0de4cf">
      <q2:Header DefaultRecognitionTechnology="OCR" DefaultOCRSettingsGuid="00000000-0000-0000-0000-000000000000">
      </q2:Header>
      <q2:Body>
        <q2:AnchorDefs />
        <q2:ZoneDefs />
        <q2:TableDefs />
        <q2:FaceLayouts>
        </q2:FaceLayouts>
        <q2:FaceSamples>
        </q2:FaceSamples>
        <q2:SampleDocument>
          <MetaData xmlns="http://dev.docuware.com/settings/common" FileName="Test - Editor" MimeType="application/pdf" PageCount="1" SourceAppName="C:\Windows\system32\NOTEPAD.EXE" DocumentTitle="Test - Editor" PdfCreator="DocuWare Printer" />
          <Data xmlns="http://dev.docuware.com/settings/common">!!!VALUE TO READ!!!</Data>
        </q2:SampleDocument>
      </q2:Body>
      <q2:AllPagesRequired>false</q2:AllPagesRequired>
    </Config>
    <Config xmlns:q3="http://dev.docuware.com/settings/workflow/processconfig" xsi:type="q3:RecognizeActConfig" Id="db5b195d-79e4-4804-bd38-f4fc7e8d5a8d">
    </Config>
    <Config xmlns:q4="http://dev.docuware.com/settings/workflow/processconfig" xsi:type="q4:AddOverlayActConfig" Id="023aab08-c6e3-4f08-9d26-0175d1564ef2">
      <q4:Overlays />
    </Config>
    <Config xmlns:q5="http://dev.docuware.com/settings/workflow/processconfig" xsi:type="q5:PrintActConfig" Id="4a4ec06a-8652-4777-84d2-53cb862b3328">
    </Config>
    <Config xmlns:q6="http://dev.docuware.com/settings/workflow/processconfig" xsi:type="q6:SignActConfig" Id="8c030961-e68e-4c2f-83f1-cac20f51d4d6">
    </Config>
    <Config xmlns:q7="http://dev.docuware.com/settings/workflow/processconfig" xsi:type="q7:EmailActConfig" Id="5dbd144b-5c33-407a-b638-e062f9045fb4">
    </Config>
    <Config xmlns:q8="http://dev.docuware.com/settings/workflow/processconfig" xsi:type="q8:IndexActConfig" Id="f2a70e07-d76e-4e82-9313-7c665df4c311">
    </Config>
    <Config xmlns:q10="http://dev.docuware.com/settings/workflow/processconfig" xsi:type="q10:StoreActConfig" Id="ff8aec66-608e-4dde-a4b6-de65ada39bb0">
    </Config>
    <Config xmlns:q11="http://dev.docuware.com/settings/workflow/processconfig" xsi:type="q11:NotifyUserActConfig" Id="7ffb0437-6b8c-4f5f-8f40-434f4a6d609a" />
  </Configs>
  <Activities>
  </Activities>
</PrinterProcessDef>

这是我使用的 SQL 查询:

And this is the SQL query I used:

SELECT 
    CAST([Table].[settings] as xml)
        .value('declare namespace q2="http://dev.docuware.com/settings/workflow/processconfig";
        (/PrinterProcessDef/Configs/Config[@xsi:type="q2:RecognizeActConfig"]/q2:Body/q2:SampleDocument/Data/text())[1]',
        'varchar(max)')
FROM 
    [DB].[dbo].[Table]

我得到的只是一个 NULL 而不是希望的 VALUE TO READ!!!.

All I get returned is a NULL and not hoped-for VALUE TO READ!!!.

我应该怎么做才能使查询正常工作?

What should I do to get the query working?

我也尝试了没有命名空间声明的不同版本和其他版本,但我总是得到 NULL.

I also tried different versions without namespace declaration and others but I always get NULL.

推荐答案

您的所有元素都定义了命名空间.您需要根据定义声明和指定它们

All your elements have namespaces defined. You need declare and specify them according to definitions

SELECT CAST([Table].[settings] as xml).value(
   'declare namespace top="http://dev.docuware.com/settings/workflow/processdef";
    declare namespace q2="http://dev.docuware.com/settings/workflow/processconfig";
    declare namespace nd="http://dev.docuware.com/settings/common";
    (/top:PrinterProcessDef/top:Configs/top:Config[@xsi:type="q2:RecognizeActConfig"]/q2:Body/q2:SampleDocument/nd:Data)[1]',  
        'varchar(max)')
FROM [DB].[dbo].[Table]

这篇关于使用 SQL Server 从复杂的 XML 结构中读取值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)