Viewing 4 posts - 61 through 64 (of 64 total)
You can use cursor to loop through mailstatus table and execute sp_SQLNotify from every result.
like
declare @username varhcar(30)
declare c cursor local fast_forward for
select username from mailstatus Where status = 'Fail'
open c
fetch...
February 24, 2009 at 11:46 pm
Thanks, it worked with linked server.
January 20, 2009 at 1:22 pm
Yes, I am trying to synchronize two databases (just a couple of tables). It would be great if I could do this just with running transact sql on client.
So I...
January 18, 2009 at 1:20 pm
Viewing 4 posts - 61 through 64 (of 64 total)