If by some chance you do have a need for instantaneous notification, you can use something similar to the following in a trigger.
SET @sMsg = ''
SELECT @sMsg = @sMsg + 'My Data: ' + My_Field_1 + ', My Data 2: ' + My_Field_2 + CHAR(13) + CHAR(10)
FROM inserted WHERE ...
This would handle...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.