Viewing 8 posts - 46 through 53 (of 53 total)
Thanks, Farrell. The reason that I stored multiple user IDs in one field was trying to save some database space since the form was really huge. I haven't received any...
October 13, 2006 at 11:07 am
Thank you all. I used Noel's sample and it worked out fine.
February 22, 2006 at 1:10 pm
can you be more specific, a sample syntax would be appreciated very much
February 22, 2006 at 11:53 am
thank you for everyone's help. the query from fhanlon was indeed had some problems.
I used the one provided by noeld and it worked fine.
June 29, 2005 at 10:02 am
It works now. thanks. I'm happy now
April 29, 2005 at 12:53 pm
Here is my code:
########################################
Declare @MyMessage nvarchar (255)
Set @MyMessage = 'Sent out emails'
Declare MyCursor Cursor For
Select email From fs_users Where user_id < 35
Open MyCursor
Fetch Next From MyCursor Into @MyRecipients
While...
April 29, 2005 at 10:17 am
it works well, thanks
February 6, 2005 at 2:35 pm
Viewing 8 posts - 46 through 53 (of 53 total)