Viewing 4 posts - 1 through 4 (of 4 total)
Hi,
I found this code on website some time ago. I tried to find it again but am unable to do so (apologies to the original author as I am...
December 3, 2007 at 4:59 am
Sorry I forgot to mention something. In your stored procedure you did not state what value to return, thus the SP always returned a false value (zero). This...
November 26, 2007 at 3:37 am
There seems to be a problem with your SP. You did not state what value you want to return.
Try this...
Create PROCEDURE [UsernameExists]
@pUsername nvarchar(50),
@Exists bit output
AS
BEGIN
SET NOCOUNT ON;
If Exists(Select Username...
November 26, 2007 at 3:32 am
Thanks for the article Bert.
I don't often use DTS so I went ahead and did the same thing in SSIS. I followed the article just as it is written...
November 22, 2007 at 1:34 am
Viewing 4 posts - 1 through 4 (of 4 total)