Viewing 15 posts - 211 through 225 (of 860 total)
i found installing from the script file was the easiest for me. i had to go and remove any full text stuff as i dont have full text indexing...
September 10, 2012 at 8:16 am
SQLKnowItAll (9/10/2012)
capn.hector (9/10/2012)
SQLKnowItAll (9/10/2012)
September 10, 2012 at 8:07 am
LoosinMaMind (9/10/2012)
how do i easilty convert days into weeks (obviously Days/7 will give me weeks as decimal)
Problem i have is I only want to count completed weeks:
ie: 20...
September 10, 2012 at 7:47 am
SQLKnowItAll (9/10/2012)
September 10, 2012 at 7:40 am
In my shop we store the 10 digit us number as a VARCHAR(16) (to allow for international numbers) but do not store any country code information or formating with the...
August 29, 2012 at 6:43 pm
Take a look at HAVING. from your description i think that is what you are going to want.
August 27, 2012 at 4:03 pm
Grant Fritchey (8/24/2012)
I completely spaced asking, but who from The Thread is going to be here in OKC for #sqlsat125?
Im going to be at #sqlsat154 in St Louis and am...
August 24, 2012 at 5:21 pm
Here is one with a rCTE. to put it back together you can use FOR XML PATH or SELECT @Var = @Var + part. i have done one...
August 3, 2012 at 3:24 pm
Well here is my solution. since we can order by when we take our substring we can just put the FOR XML PATH ('') in that query and not...
August 3, 2012 at 9:25 am
Chrissy321 (8/2/2012)
Say I wanted certain clients those whose ClientID was < than 3.
Clearly I can add any conditions to the final SELECT statement but...
August 3, 2012 at 7:58 am
diamondgm (8/3/2012)
diamondgm (8/2/2012)
Very cool, thank you for the pointers and the link to Jeff's article capn.hector!Will run some tests in the morning 🙂
@Capn; Sorry I missed your question in the...
August 3, 2012 at 7:53 am
Sean Lange (8/2/2012)
morepainot (8/2/2012)
Sean Lange (8/2/2012)
morepainot (8/2/2012)
Sean Lange (8/2/2012)
August 2, 2012 at 3:42 pm
Lynn Pettis (8/2/2012)
That's what I get for not checking first.
LOL :w00t::w00t:
i posted what i had figuring on working on it and actually expecting some one to beat me to...
August 2, 2012 at 2:25 pm
Here using a full join where both sides are null we can get all our new or old clients and depending on where the nulls are can assign whether they...
August 2, 2012 at 1:41 pm
i like the cross apply however you can turn it into an Inline Scalar Function (an iTVF that returns 1 value, Thanks Jeff http://www.sqlservercentral.com/articles/T-SQL/91724/) by using the following function.
CREATE...
August 2, 2012 at 12:42 pm
Viewing 15 posts - 211 through 225 (of 860 total)