Viewing 4 posts - 1 through 4 (of 4 total)
Thanks Doug for your reply.
I've done this trick and only works when you execute Subscription after first one completes. My requiremeent is to execute subscription multiple times on the fly....
May 16, 2009 at 3:26 pm
Anyone has a workaround on finding out how to alert users on the Data Driven Subscription Completion?
Thank you
March 25, 2009 at 3:22 am
Try this one:
Declare @STR varchar(20),@i as int
Set @STR='HELLOW WORLD'
Set @i=1
While @i <= len(@str)
Begin
print left(@str,@i)
Set @i=@i+1
End
January 7, 2009 at 7:09 pm
Viewing 4 posts - 1 through 4 (of 4 total)