Viewing 15 posts - 1 through 15 (of 119 total)
Yes I was thinking of that, performance wise it will be better 2 stored procs.
However, I am not envisaging that I will have lots of data, if i will do...
April 14, 2009 at 6:59 am
cool that worked
the trick is the LEFT OUTER JOIN eh?
April 14, 2009 at 6:46 am
Thanks Bruce
I applied the following and it worked
WHEREexPlayerSurname LIKE COALESCE(@SearchText, '') + '%'
February 15, 2009 at 4:04 pm
Adi Cohn (11/28/2008)
Johann Montfort (11/28/2008)
Hi Allthis worked
SELECT @BuildID = BuildID
Adi can you tell me how I can do it with one delete and get a return value?
Thanks all!
You can...
November 28, 2008 at 5:21 am
Chris Morris (11/28/2008)
[font="Courier New"]SELECT @BuildID = BuildID
FROM...
November 28, 2008 at 5:20 am
Chris Morris (11/28/2008)
Looking at this from a slightly different angle...which variables do you have populated before you run this bit of code (nicked from Gail's post, thanks Gail)...
SELECT @BuildID...
November 28, 2008 at 4:43 am
Hi All
this worked
SELECT @BuildID = BuildID
Adi can you tell me how I can do it with one delete and get a return value?
Thanks all!
November 28, 2008 at 4:36 am
the thing is that @BuildID is returning a value, since there is a row at the moment, for example 30023. However I am loosing that value then
November 28, 2008 at 4:18 am
Thanks for your replies guys
Yeah I should have added a WHERE clause.
I like Carpal's answer the most, since I have learned something new.
Thanks a lot guys!
November 25, 2008 at 1:46 am
Excellent
That worked perfectly.
Learned something new today 🙂
Thanks a lot Carpal!
November 24, 2008 at 4:58 pm
yes I know
the problem is that all comparisons, wether ' ' were all returning 0
That was the problem
November 24, 2008 at 1:18 pm
Thanks
SELECT @var = COUNT(*) worked!
Thanks for your help and time!
November 24, 2008 at 10:51 am
ah ok for next time then
Thanks for the help
November 10, 2008 at 10:49 am
ah ok
I get what you are doing.
You are filtering every step by the deleted, and then everything should be visible if the products.deleted is 0 obv
Excellent stuff
Thanks for your help...
November 10, 2008 at 4:55 am
Viewing 15 posts - 1 through 15 (of 119 total)