all groups > sql server reporting services > october 2005 >
You're in the

sql server reporting services

group:

ice…


ice… NotCpiP
10/26/2005 1:47:14 PM
sql server reporting services:
Just find out that for small size table, reporting service works fine. When
the size/total record of the table is increasing, the display process becomes
slower and slower. I managed to trace it and find out that in my case,
300,000 records consumes more than 2 minutes for the report manage to render
it, while loading the data from database only take 10 seconds! Anybody knows
Re: The bottleneck of reporting service. Bruce L-C [MVP]
10/26/2005 4:27:09 PM
Is the result supposed to have 300,000 rows? If not, then be sure to use
query parameters to limit the data to the amount the report should have.
Don't use filters. Consider drill through instead of drill down, etc. I.e.
design it so you are not rendering 300,000 rows. The amount of rows the
table has doesn't matter. I report against an 80 million row table. What
matters is the number of records returned.


--
Bruce Loehle-Conger
MVP SQL Server Reporting Services

[quoted text, click to view]

Re: The bottleneck of reporting service. NotCpiP
10/26/2005 9:25:03 PM
Thanks for your reply. Yes, the returned dataset has one table with 300,000
rows inside, and this report will have several thousands of pages in total. I
know all resource are limited, but I am just thinking, can we let the
reporting service only process one page of report, instead of rendering all
pages at onece (I guess thats the reason why it took so long)? Is there
anything like dynamic rendering?
Thank you so much.


[quoted text, click to view]
Re: The bottleneck of reporting service. Asher_N
10/27/2005 5:20:17 AM
I'm thinking that a report that size does not need to be rendered with
fresh data on-demand. Can you run it as a subscription and cache it?

"=?Utf-8?B?Tm90Q3BpUA==?=" <NotCpiP@discussions.microsoft.com> wrote in
news:9F53987D-AAB7-42B6-B1D6-297638746375@microsoft.com:

[quoted text, click to view]
service… williamericnichols
10/27/2005 7:08:03 AM
I find it hard to believe that any one user is digesting a thousand page
report. Sounds like you are returning the entire data set and then relying
on the user to navigate to the data they need. Try using parameters to allow
the users to specify the data they need. That will limit the data that is
returned and prevent this one reprot form killing the server.

[quoted text, click to view]
Re: The bottleneck of reporting service. NotCpiP
10/27/2005 7:48:10 AM
OK. This may be the way. Thanks.

[quoted text, click to view]
service… NotCpiP
10/27/2005 7:49:02 AM
Thanks.

[quoted text, click to view]
Re: The bottleneck of reporting service... Parker
10/28/2005 5:56:01 AM
I also encounter the need to render very large reports, and take some
exception to the comments about 'you shouldn't need to do that'.

Reporting Services should be able to work with and render very large
datasets and reports if it is to be accepted as a professional tool.
Rendering time should be proportional to output size, and not
progressively worse as you work with larger result sets.

Certainly, not everyone has this kind need. But for those who do,
dismissive comments about how they should adapt their processing to fit
the limitations of the tool are not helpful, although advice on how to
work around such limitations are.

Advice on how to configure and tune the system to render large datasets
would be most useful, and I am sure product improvements in this area
would benefit all users.
AddThis Social Bookmark Button