Can SQL server send message to external JMS based application? -


i want sql server send message external application, possible sql server?

i did google lot don't find useful material/link. appropriate answer appreciated.

you can use raiserror want.

raiserror('my error message',0,1) 

this work if external application runs query (like stored procedure) , query has line. instance if know application runs sp_sample, in sp_sample :

alter procedure sp_sample begin     --procedure normal code     raiserror('my error message',0,1) end 

this execute code (an insert instance) , send message application.


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -