Viewing 15 posts - 46 through 60 (of 183 total)
Yeah it needs to be a daily aggregate to appear in the attached excel spread sheet format
September 19, 2008 at 10:11 am
Hi DVA2007
Will the aggregate results be grouped by date in the new table, thats where my main problem is coming from, the need for the aggregated results to be group...
September 19, 2008 at 9:41 am
Thanks all
I used the foloowing which worked for me:
SELECT SUBSTRING(CAST(OrderDate AS VARCHAR),1,11) AS OrderDate, .......
September 19, 2008 at 5:30 am
arjun.tewari (9/19/2008)
sum(case when deleverydate = orderdate +1 then 1 else 0 end)
and so on.
This part of the query returned o as dates, or maybe there is something I...
September 19, 2008 at 4:14 am
will the results appear as a pivot table with 02/09/2008, 03/09/2008 as rows?
September 17, 2008 at 8:09 am
abhijeetv (9/17/2008)
First create a CTE with sum(orders) field say alias as 'yourField' for over $300.
What do you mean by CTE?
because I used:
USE db
declare @Threemore int;
declare @all int;
set @Threemore = (SELECT...
September 17, 2008 at 7:53 am
Thanks you guys have helped me alot, I ran the query with you guidnace and it worked fine, but i was wandering if there is a way I can aggregate...
September 17, 2008 at 1:54 am
Hello Gary
You may need to expantiate on what you mean, the method you stated earlier, but I was able to get the desired output with the UNION and not the...
September 10, 2008 at 9:35 am
I used a query to generate the result set which is:
Select Col1,Col2,Col3,Col4,Col5,Col6,
FROM Table A
Where Date BETWEEN GETDATE() AND GETDATE()-1
Its a simple query and not a stored procedure.
September 9, 2008 at 6:39 am
I tried the union all but it gave me duplicate records
September 9, 2008 at 6:32 am
Yeah, my mind went to SSIS, will have a go at it and post my findings here.
September 6, 2008 at 11:12 am
Yeah, thanks later realised that I had to either upgrade the reporting service and server to 2008 from 2005, or install a whole new 2008 enviroment, how funny for a...
September 5, 2008 at 8:30 am
Check the Database Service Credential in the Reporting Service Configuration Manager, and change it your domain\user account, that may do the trick, as it did for me with SSRS 2005...
September 5, 2008 at 8:16 am
Checked could only find bulk export and import to and from XML files
September 4, 2008 at 3:39 am
Using the cross join gives me a cartisian product which is not what i want
September 3, 2008 at 11:41 am
Viewing 15 posts - 46 through 60 (of 183 total)