Viewing 15 posts - 6,091 through 6,105 (of 15,381 total)
IgorMi (12/18/2013)
Sean Lange (12/18/2013)
December 18, 2013 at 7:48 am
From the sample output you posted you don't have any duplicates. There are unique values in one of those columns (I can't tell from the garbled display which one). What...
December 18, 2013 at 7:42 am
Try this link. It will be a great starting point for helping us find you an answer.
http://weblogs.sqlteam.com/jeffs/archive/2008/05/13/question-needed-not-answer.aspx
December 18, 2013 at 7:26 am
Evil Kraig F (12/17/2013)
Hey all, sorry I haven't been around for... well a good while. Merry Christmas to everyone, though!
Good to virtually see you again Craig. Hope all is...
December 17, 2013 at 3:35 pm
If you know how many products you can do something like this.
with MyData as
(
select SUM(SalesofProductA) as Sales, Customer, 'A' as ProductType
from #abc
where Year = @Year and Month = @Month
group by...
December 17, 2013 at 2:42 pm
Duplicate post. Original thread here. http://www.sqlservercentral.com/Forums/Topic1523885-3077-1.aspx
December 17, 2013 at 2:26 pm
anushakadiyala 52521 (12/17/2013)
UPDATE TA
SET ServerName= REPLACE(ServerName, '%.%.dim.com', '')
WHERE Servername like '%.%.dim.com%'
basically I want to remove anything that...
December 17, 2013 at 1:06 pm
bharat sethi (12/17/2013)
This SP has
an initial query to load data in temp. table with 5 tables joins. This query executed within 15 seconds.
...
December 17, 2013 at 10:51 am
Or maybe this...
if (@req_1 !='AAM' AND @req_2 !='VVE')
print 'TRUE'
ELSE
print 'FALSE'
It all depends on what you are trying to do here.
December 17, 2013 at 10:37 am
Going to need more details than that to help here. From what you posted there is no need for the IF condition but I suspect you have probably have something...
December 17, 2013 at 10:35 am
jcrawf02 (12/17/2013)
Sean Lange (12/17/2013)
Stefan Krzywicki (12/17/2013)
Sean Lange (12/17/2013)
Ed Wagner (12/17/2013)
jasona.work (12/17/2013)
Ed Wagner (12/16/2013)
jasona.work (12/13/2013)
Ed Wagner (12/13/2013)
jasona.work (12/13/2013)
I mean seriously, 12 days until X-Mas? It...
December 17, 2013 at 10:31 am
bharat sethi (12/17/2013)
December 17, 2013 at 10:28 am
defyant_2004 (12/17/2013)
December 17, 2013 at 9:45 am
Stefan Krzywicki (12/17/2013)
Sean Lange (12/17/2013)
Ed Wagner (12/17/2013)
jasona.work (12/17/2013)
Ed Wagner (12/16/2013)
jasona.work (12/13/2013)
Ed Wagner (12/13/2013)
jasona.work (12/13/2013)
I mean seriously, 12 days until X-Mas? It feels like it...
December 17, 2013 at 9:26 am
Take a look at the articles in my signature about cross tabs. I suspect you will need to use the dynamic version here.
December 17, 2013 at 7:36 am
Viewing 15 posts - 6,091 through 6,105 (of 15,381 total)