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?
Asked
Active
Viewed 69 times
1 Answers
1
convert your text and xml columns to varchar(max)

Tigran
- 872
- 1
- 9
- 25
-
sorry should have been more descriptive. what you want can't be done. so best solution is to convert the xml column to varchar. this is a limitation of the system. – Tigran Apr 20 '10 at 23:12