English 中文(简体)
有没有一种方法可以使用 T-SQL 验证 XML?
原标题:
  • 时间:2008-11-11 15:13:14
  •  标签:

I m in the process of converting a varchar(8000) field to an xml field in MSSQL 2005. Many of the XML docs have small issues (example: degree symbol not encoded). Is there a better way to validate the XML than a Try/Catch process?

也许我可以编写一个.NET存储过程。在.NET中验证(或使XML文档无效)的正确方法是什么? 可能我可以编写一个.NET存储过程。在.NET中验证(或使XML文档无效)的正确方法是什么?

最佳回答

您可以使用托管代码编写存储过程。这里有一些示例http://www.yukonxml.com/articles/sqlclr/。

问题回答

目前我认为使用Try/Catch方法更加简单(但有点粗糙)。我所在的团队还没有真正开始使用Managed Stored Procs。





相关问题
热门标签