English 中文(简体)
2008年5月30日
原标题:SQL Server 2008 R2 SQLXML and xpath query filter not working
  • 时间:2011-09-30 10:28:09
  •  标签:
  • sqlxml

我有以下图象,在开展q食Xml时将4个项目退回:

<xsd:element name="iati-activities" sql:relation="IATI.ACTIVITIES" sql:key-fields="BUSINESS_UNIT">
  <xsd:complexType>
    <xsd:sequence>
      <xsd:element name="iati-activity" sql:relation="IATI.PROJECT_METADATA" sql:relationship="ACTIVITIES_ACTIVITY">
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="ProjectId" type="xsd:string" sql:field="PROJECT_ID" sql:key-fields="PROJECT_ID" />
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
    </xsd:sequence>
  <xsd:complexType>
</xsd:element>

我想得到:

<iati-activities>
  <iati-activity>
    <ProjectId>00072877</ProjectId>
  </iati-activity>
</iati-activities>

但是,在运行时不会过滤。 这里使用的是Xpath-query I:

<root xmlns:sql="urn:schemas-microsoft-com:xml-sql">
  <sql:header sql:nullvalue="ISNULL">
    <sql:param name="ProjectId">00072877</sql:param>
  </sql:header>
  <sql:xpath-query mapping-schema="activity_schema.xsd">
    iati-activities[iati-activity/ProjectId=$ProjectId]
  </sql:xpath-query>
</root>

这是我得到的:

    <iati-activities>
      <iati-activity>
        <ProjectId>00072877</ProjectId>
      </iati-activity>
      <iati-activity>
        <ProjectId>00059626</ProjectId>
      </iati-activity>
      <iati-activity>
        <ProjectId>...</ProjectId>
      </iati-activity>
      <iati-activity>
        <ProjectId>...</ProjectId>
      </iati-activity>
    </iati-activities>

如果我使用以下询问:

<root xmlns:sql="urn:schemas-microsoft-com:xml-sql">
  <sql:header sql:nullvalue="ISNULL">
    <sql:param name="ProjectId">00072877</sql:param>
  </sql:header>
  <sql:xpath-query mapping-schema="activity_schema.xsd">
    iati-activities/iati-activity[ProjectId=$ProjectId]
  </sql:xpath-query>
</root>

我拿到以下,没有加急系数:

<iati-activity>
  <ProjectId>00072877</ProjectId>
</iati-activity>

任何人都知道我做错了什么?

最佳回答

I know what it is... The xpath I was using is only pointing to the element and by selecting the parent of that I get the entire tree under the parent node and not only the filtered one.

在我对母体成分进行人工界定时,需要全面出口,并使用斜体。

<xsl:template match="/">
  <iati-activities version="1.01" GENERATED_DATE="{$GENERATED_DATE}">
    <xsl:for-each select="/iati-activities/iati-activity[ProjectId=$ProjectId]">
      <xsl:copy-of select="." />
    </xsl:for-each>
  </iati-activities>
</xsl:template>
问题回答

暂无回答




相关问题
SQL Server 2005 FOR XML

I want to export data from a table to a specifically formatted XML file. I am fairly new to XML files, so what I am after may be quite obvious but I just cant find what I am looking for on the net. ...

how to COPY Attribute value in a new attribute

How to copy data of attribute to new attribute in the same column in sql original data <root> <child attr= hello ></child> </root> Result 1 <root> <child attr= ...

How to pass SQLXML type to view in Spring MVC?

In my webapp controller I m getting results from the db, which are of type java.sql.SQLXML. I want to pass it to the view to be returned verbatim (as XML). The problem is, the data associated with ...

Sql XML Path with different children

I have done a lot of XML PATH statements, but this one escapes me or might not even be possible with multiple different children. The end result should look like this <Process> <TaskList&...

Exposing web based XML data via a SQL Server view

It seems that SQL Server has a fair amount of XML support. Mostly I ve seen info regarding storing XML in SQL Server, querying XML data stored in SQL Server, and exposing data as XML. Is the ...

Tool to create SQLXMLBulkLoad Schemas?

SQLXMLBulkLoad requires schemas to be annotated with various attributes (e.g. sql:datatype) and some additional elements. Is there any tool that can enrich a schema with this information for at least ...

SQL server insert data from table into an XML variable

How can I insert a whole bunch of rows into an XML variable without using a cursor? I know I can do SET @errors.modify( insert <error>{ sql:variable("@text") }</error> as last into /...

热门标签