Viewing 15 posts - 46 through 60 (of 93 total)
So, if I remove about 2/3 of the columns in the report, it will render. This report was first deployed about 6 months ago, and was working fine. ...
April 13, 2012 at 10:37 am
mikeg 31960 (4/13/2012)
April 13, 2012 at 9:18 am
mikeg 31960 (4/13/2012)
I have weird problems rendering but only when using those new fancy Dundas-esque controls. Is the failing report using any of those new fancy 2008...
April 13, 2012 at 8:53 am
Does this help any? The first error says error may be due to connection failure, timeout, or low disk condition. There are only 10 or so user connections...
April 13, 2012 at 7:57 am
Deleting the report and data source didn't help.
April 12, 2012 at 2:10 pm
That (the error log) is where I got the exception information from. It wasn't very informative. And any thoughts on why only the 1 report would cause problems?
April 12, 2012 at 1:47 pm
J Livingston SQL (10/10/2011)
Tom Bakerman (10/10/2011)
You've all been a great help. Keep up the good work. Thanks.
Tom
Tom..what code have you got so far...can you post please...maybe it will...
October 12, 2011 at 11:55 am
jared-709193 (10/10/2011)
J Livingston SQL (10/10/2011)
Tom Bakerman (10/10/2011)
The result for the current month is MTD (GETDATE()). The count for...
October 10, 2011 at 1:10 pm
Thanks everybody for the responses. J Livingston SQL's looks the most promising. I'm guessing that I would do that, and then UNPIVOT the resulting row into multiple rows...
October 10, 2011 at 5:22 am
jared-709193 (10/7/2011)
Well... I think the best way may be to create a table based function that looks at the raw data and use CROSS APPLY to bring your counts.Thanks,
Jared
I'm dense...
October 7, 2011 at 7:08 am
Thanks Jared. Looks promising. But:
Is the only way to get what I want to do something like:
SELECT Count(*), Year, Month
from ...
group by year, month
where year and...
October 7, 2011 at 6:38 am
jared-709193 (10/6/2011)
Can you please give me a sample of what you want your aging report to look like? In terms of relevant data points for your purpose.Thanks,
Jared
I'm guessing I need...
October 6, 2011 at 1:34 pm
Lynn,
That's why I was hoping this might be doable in the AdventureWorks database, but here's something:
declare @Invoices table (
InvoiceNumber int IDENTITY(1,1) NOT NULL,
InvoiceDate date NOT NULL,
PaidDate date NULL,
IsPaid bit NOT...
October 6, 2011 at 12:30 pm
2008 R2
Over the weekend had an inspiration (after digging out a piece of granite the size of a basketball from a hole 2 feet deep). I use custom code to...
October 3, 2011 at 7:05 am
Old post, I know, but I'm having difficulty implementing this solution. It works fine for the first few pages of the report, but then the color banding starts going...
September 30, 2011 at 1:30 pm
Viewing 15 posts - 46 through 60 (of 93 total)