Viewing 15 posts - 11,161 through 11,175 (of 15,376 total)
Performance on this is going to be awful. You where clause is full of non-SARGable predicates.
It seems you have a number of duplicated checks in each pass too. You join...
July 30, 2012 at 12:30 pm
Luis Cazares (7/30/2012)
You can use it to check if 2 phrases are palindromes.Just kidding.
create function IsPalindrome(@String1 varchar(100), @String2 varchar(100))
returns table
return
(
select Case when @String1 = REVERSE(@String2) then 1 else 0 end...
July 30, 2012 at 12:12 pm
eric.rini (7/29/2012)
For example a physical authentication like linking an account to a mobile phone (it sends u a text with a unique key to login) or using a token like...
July 30, 2012 at 10:41 am
erics44 (7/30/2012)
nope trigger fixed
Sweet!! 😀
July 30, 2012 at 8:53 am
Alright Jeff, thanks! Im here back at the office and I am trying to change the loops into the code you have given me. I cant seem to understand how...
July 30, 2012 at 8:46 am
Sean, RoundRuppee isn't a scalar udf, it is a stored procedure.
Yeah, that's what I meant. 😉
July 30, 2012 at 8:37 am
GilaMonster (7/30/2012)
exec [WageGenProcForSCons-2] 2
That will certainly fix the ability to call this but the real issue here is the code itself.
To the OP. Some might actually consider it a good...
July 30, 2012 at 8:26 am
erics44 (7/30/2012)
ahhhhhhhhhhhsomeone has been medalling
thanks for the reply
If it was a trigger then you seriously need to fix that trigger to handle multiple row statements. Don't just work around the...
July 30, 2012 at 8:08 am
morepainot (7/27/2012)
I cant tell if you guys are being sarcastic or not...
I can't speak for anybody else but I was not. Knowing Lynn and Jeff as well as I do...
July 27, 2012 at 3:21 pm
Lynn Pettis (7/27/2012)
Sean Lange (7/27/2012)
Jeff Moden (7/27/2012)
morepainot (7/27/2012)
but I need a better format instead of creating 5 seperate temp _tables
Tell them what you told me in the email you sent...
July 27, 2012 at 3:10 pm
Jeff Moden (7/27/2012)
morepainot (7/27/2012)
but I need a better format instead of creating 5 seperate temp _tablesTell them what you told me in the email you sent me.
And what you told...
July 27, 2012 at 2:56 pm
Holy cowabunga. Over there on the left when posting is IFCode shortcuts. They do a great job of helping format large code segments.
The real problem is that the code you...
July 27, 2012 at 2:55 pm
Sean Lange (7/27/2012)
J Livingston SQL (7/27/2012)
Sean Lange (7/27/2012)
July 27, 2012 at 1:31 pm
J Livingston SQL (7/27/2012)
Sean Lange (7/27/2012)
July 27, 2012 at 1:21 pm
Viewing 15 posts - 11,161 through 11,175 (of 15,376 total)