March 28, 2012 at 6:45 am
Is it not possible to create trigger for ntext,text and image data type columns?
Regards
Guru
March 28, 2012 at 6:55 am
GuruGPrasad (3/28/2012)
Is it not possible to create trigger for ntext,text and image data type columns?Regards
Guru
you cannot manipulate any column that is ntext,text or image from the INSERTED or DELETED tables inside a trigger.
you can, however, join INSERTED or DELETED to the original table, and get the current value of those columns from the table itself.(that means you CANNOT compare it to the OLD value, but you CAN get it's current value.)
see this very similar recent post
http://www.sqlservercentral.com/Forums/FindPost1269855.aspx
Lowell
March 28, 2012 at 7:06 am
Thank you Lowell
Regards
Guru
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply