Viewing 9 posts - 1 through 9 (of 9 total)
Try to use this inline query building technique (the fastest way to do it):
DECLARE @query NVARCHAR(300)
DECLARE @fname NVARCHAR(30)
DECLARE @lname...
May 27, 2005 at 7:52 am
You can simply do a basic XOR operation on every character in the password:
// C++ code
char* pass; // contains the user's password
char* newpass =
May 26, 2005 at 4:43 am
Thats a great information, thanks alot Julian
May 3, 2005 at 3:19 am
Yeah, when using aggregate function such as COUNT, MAX and SUM,, always change the WHERE clause into HAVING
April 7, 2005 at 3:22 pm
WoOoOoOoW ! This tool is amazing
Thanks for the link, dude
April 7, 2005 at 2:39 pm
Ohh yes, you are right! Sorry I didn't notice this!
So I guess there is no any...
April 6, 2005 at 3:58 am
Ohh you are right! The results are not in the same order as you wanted it to be!
Well, the LIMIT clause is really...
April 5, 2005 at 7:41 am
Why do you insert the whole resultset into the temp table, while you only need @Size results at a time??????!!!!
This will consume a lot of time if the April 4, 2005 at 8:34 pm
In my opinion, I always suggest to use return values as a Success/Failure indication. In the project I am working on, I have some nested stored procedures. spX calls spY and...
April 1, 2005 at 7:02 am
Viewing 9 posts - 1 through 9 (of 9 total)