SQL Server 2008 的 XML DML
我的表中有一个 xml 列 ExportTemplate
,其中包含我需要修改的 xsl 模板。
当我使用下面的查询时,服务器通知 1 行受到影响,但当我检查实际行时,更改尚未保留。有什么想法吗?谢谢。
update Exports
set ExportTemplate.modify('
declare namespace xsl="http://www.w3.org/1999/XSL/Transform";
declare namespace xslt="http://www.w3.org/1999/XSL/Transform";
insert <Fuel><xslt:value-of select="Fuel"/></Fuel>
after (/xsl:stylesheet/xslt:template[3]/Vehicle/Condition)[1]')
where ExportCode ='AutoTrade';
I have an xml column ExportTemplate
in a table that holds an xsl template that I need to modify.
When I use the the query below, the server notifies that 1 row is affected but when I check the actual row, the change has NOT been persisted. Any ideas? Thank you.
update Exports
set ExportTemplate.modify('
declare namespace xsl="http://www.w3.org/1999/XSL/Transform";
declare namespace xslt="http://www.w3.org/1999/XSL/Transform";
insert <Fuel><xslt:value-of select="Fuel"/></Fuel>
after (/xsl:stylesheet/xslt:template[3]/Vehicle/Condition)[1]')
where ExportCode ='AutoTrade';
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是来自 MSDN 论坛的一个非常好的答案。谢谢。
http://social.msdn.microsoft.com/Forums/en/sqlxml/thread/2b9a46ee-663b-4d25-bef1-7d4f0c650839
Here is a very good answer from MSDN forum. Thank you.
http://social.msdn.microsoft.com/Forums/en/sqlxml/thread/2b9a46ee-663b-4d25-bef1-7d4f0c650839