SQL Server'daki güçlü yazılan xml öğesinin değerini XQuery ile değiştir


10

Bir XML Şeması Koleksiyonu içinde şu şekilde tanımlanan bir öğe verildiğinde:

<xsd:element name="xid">
    <xsd:simpleType>
        <xsd:restriction base="xsd:string">
            <xsd:maxLength value="32" />
        </xsd:restriction>
    </xsd:simpleType>
</xsd:element>

XQuery kullanarak öğeyi nasıl güncellersiniz?

Öğe, şema koleksiyonundaki ns ad alanında bulunur. Aşağıdaki sorgu öğesi güncellemeye çalışıyorum:

update cm.item
   set data.modify(
    'declare namespace ns="http://www.anon.com"; 
     replace value of (/ns:*/ns:xid)[1] with "X00011793" cast as element(ns{http://www.anon.com}:xid,#anonymous) ?') 
 where id = 11793

ancak bu aşağıdaki hatayı oluşturur:

Msg 9301, Seviye 16, Durum 1, Satır 2 XQuery [cm.item.data.modify ()]: Sunucunun bu sürümünde, 'farklı yayınla' kullanılamaz. Lütfen 'şu şekilde yayınlansın mı?' sözdizimi.

Döküm tamamen kaldırmak ve bu sorguyu kullanırsanız:

update cm.item
   set data.modify(
    'declare namespace ns="http://www.anon.com"; 
     replace value of (/ns:*/ns:xid)[1] with "X00011793"') 
 where id = 11793

Bu hatayı alıyorum:

Msg 2247, Seviye 16, Durum 1, Satır 2 XQuery [cm.item.data.modify ()]: Değer, "<anonymous>" türünün bir alt türü olmayan "xs: string" türündedir.

Bu sorguyu yayınlarsam:

update cm.item
   set data.modify(
      'declare namespace ns="http://www.anon.com/"; 
       replace value of (/ns:*/ns:xid/text())[1] with "X00011793"')
 where id = 11793

Bu hatayı alıyorum:

Msg 9312, Seviye 16, Durum 1, Satır 2 XQuery [cm.item.data.modify ()]: 'text ()' basit yazılan veya ' http://www.w3.org/2001/XMLSchema'da desteklenmiyor #anyType 'öğeler, bulundu' (öğe (ns { http://www.anon.com/ }: xid, # anonim)?) * '.

SQL Server 2008 R2'yi hedefliyorum.

Teşekkürler!

Yanıtlar:


6

Ben sadece replace value ofanonim basit tip tanımları ile çalışmak için deyimi değiştirmek için basit bir yol bulamadı .

Sahip olduklarınızın basit reprolojisi:

drop xml schema collection dbo.SimpleTypeTest;

go

create xml schema collection dbo.SimpleTypeTest as 
N'<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="root">
        <xs:complexType>
            <xs:sequence>
                <xs:element name="xid">
                    <xs:simpleType>
                        <xs:restriction base="xs:string">
                            <xs:maxLength value="30"/>
                        </xs:restriction>
                    </xs:simpleType>
                </xs:element>
            </xs:sequence>
        </xs:complexType>
    </xs:element>
</xs:schema>';

go

declare @X xml(document dbo.SimpleTypeTest) = '<root><xid>1</xid></root>';

set @X.modify('replace value of /root/xid  with "2"');

Sonuç:

Msg 2247, Seviye 16, Durum 1, Satır 25 XQuery [modify ()]: Değer, "<anonymous>" türünün bir alt türü olmayan "xs: string" türündedir.

Çözümlerden biri, şemanızı adlandırılmış basit bir tür kullanacak şekilde değiştirmek xidTypeve yeni değeri yayınlamaktır.

drop xml schema collection dbo.SimpleTypeTest;

go

create xml schema collection dbo.SimpleTypeTest as 
N'<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="root">
        <xs:complexType>
            <xs:sequence>
                <xs:element name="xid" type="xidType"/>
            </xs:sequence>
        </xs:complexType>
    </xs:element>
    <xs:simpleType name="xidType">
        <xs:restriction base="xs:string">
            <xs:maxLength value="30"/>
        </xs:restriction>
    </xs:simpleType>
</xs:schema>';

go

declare @X xml(document dbo.SimpleTypeTest) = '<root><xid>1</xid></root>';

set @X.modify('replace value of /root/xid  with "2" cast as xidType?');

Başka bir yol, XML'yi türlenmemiş bir XML değişkenine ayıklamak, değişkeni değiştirmek ve tabloya geri koymaktır.

drop xml schema collection dbo.SimpleTypeTest;

go

create xml schema collection dbo.SimpleTypeTest as 
N'<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="root">
        <xs:complexType>
            <xs:sequence>
                <xs:element name="xid">
                    <xs:simpleType>
                        <xs:restriction base="xs:string">
                            <xs:maxLength value="30"/>
                        </xs:restriction>
                    </xs:simpleType>
                </xs:element>
            </xs:sequence>
        </xs:complexType>
    </xs:element>
</xs:schema>';

go

declare @X xml(document dbo.SimpleTypeTest) = '<root><xid>1</xid></root>';
declare @X2 xml = @X;

set @X2.modify('replace value of (/root/xid/text())[1]  with "2"');
set @X = @X2;
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.