无论如何,是否能够在“插入”中引用 xml/文本列? 和“已删除” SQL Server 2008 (CLR) 触发器中的表?
当我在 SQL Server 2008 的 clr 触发器中“从删除中选择 *”时,出现异常。是否能够从触发器中的已删除和插入表访问 xml/文本列?
I get an exception when I "Select * from deleted" in a clr trigger in SQL Server 2008. Is there anyway to be able to access xml/text columns from the deleted and inserted tables in a trigger?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将文本和 xml 列转换为 varchar(max)
convert your text and xml columns to varchar(max)