Viewing 15 posts - 3,481 through 3,495 (of 6,486 total)
Tomm Carr (4/29/2008)
April 29, 2008 at 3:14 pm
what error do you get?
Assuming the objects are actually out there - that code looks like it would work....
April 29, 2008 at 2:49 pm
Your initial (access) query failed because you changed the date around only in the select part of the query, not in the GROUP BY. you're still grouping by the...
April 29, 2008 at 2:37 pm
add the count() aggregation to the query
SELECT MONTH(DateShipped) as 'Month',
YEAR(DateShipped) as 'Year',
...
April 29, 2008 at 2:12 pm
In addition to GSquared's point - be sure to make the ReportingServicesTempDB BIG. Just like giving tempDB a big playground, ReportingServicesTempDB is going to take up a substantial portion...
April 29, 2008 at 2:01 pm
select sum(case when colSector ='02' then colMkt else 0 end)/sum(case when colSector ='TF' then colMkt else 0 end) as percentage
from tblreturn
April 29, 2008 at 12:14 pm
The reason why views aren't directly affected by sp_recompiled is that views aren't "compiled" in the traditional sense.
Let's try to explain that further
- "regular" views don't get their own...
April 29, 2008 at 12:09 pm
Assuming you mean "not 0 through 9" when you say non-numeric (i.e. not trying to figure out decimal points, signs, etc...), then
substring(refnum,patindex('%[^1-9]%',Refnum),1)
should do the trick.
April 29, 2008 at 11:56 am
Q (4/29/2008)
Jeff's response made me think about a couple of possibilities. ...
April 29, 2008 at 11:47 am
rbarryyoung (4/29/2008)
RBYoung (4/29/2008)
April 29, 2008 at 10:15 am
Michael Earl (4/29/2008)
April 29, 2008 at 10:13 am
1. are there any rows in ZIPUSA for zip code '45053'? if not - that will never return anything.
2. if 1. does have data, then the function is messed...
April 29, 2008 at 10:10 am
n1pcman (4/29/2008)
Now one more missing peice...
I copy good data into a new table then I run the parsing query which seperates my data the way I...
April 29, 2008 at 9:56 am
Gail (4/29/2008)
April 29, 2008 at 9:47 am
Median is mathematically not an aggregate function per se - it's more of a windowing function (meaning - it's pulling out unchanged a speicific value in a sequence). You REALLY...
April 29, 2008 at 9:42 am
Viewing 15 posts - 3,481 through 3,495 (of 6,486 total)