Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 Analysis Server and Reporting Services (2005)
 SSRS from .net

Author  Topic 

arkiboys
Master Smack Fu Yak Hacker

1433 Posts

Posted - 2008-01-14 : 05:03:19
Hi,
In a .net application there is a link that brings up a SSRS report.
I have noticed that if it is the first time this report is requested i.e. Application has just been opened and the report button is clicked, then it takes a while to get this report to appear on the screen. But if this report is requested again (i.e. for the second time or more) then it only takes a few moments for the report to appear on the screen.
So it seems that only the first time the report is requested it takes a longer time to get this report. Is there a way to reduce this initial load of the report?
Thanks

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-01-14 : 06:16:38
This may be because the report has caching property enabled.Go to report manager and check the execution settings to see if caching is enabled.If report is having parameters then try running report for a different set of params.
Are you using sp to retrieve data from db? if yes, have a look into SP to get an idea of amount of data retrieved and its performance and try filtering unwanted data/optimising performance of SP.
Go to Top of Page

arkiboys
Master Smack Fu Yak Hacker

1433 Posts

Posted - 2008-01-14 : 06:54:48
quote:
Originally posted by visakh16

This may be because the report has caching property enabled.Go to report manager and check the execution settings to see if caching is enabled.If report is having parameters then try running report for a different set of params.
Are you using sp to retrieve data from db? if yes, have a look into SP to get an idea of amount of data retrieved and its performance and try filtering unwanted data/optimising performance of SP.


Caching is NOT enabled.
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-01-14 : 08:31:23
quote:
Originally posted by arkiboys

quote:
Originally posted by visakh16

This may be because the report has caching property enabled.Go to report manager and check the execution settings to see if caching is enabled.If report is having parameters then try running report for a different set of params.
Are you using sp to retrieve data from db? if yes, have a look into SP to get an idea of amount of data retrieved and its performance and try filtering unwanted data/optimising performance of SP.


Caching is NOT enabled.



If you are using SP, can you try running it in query analyser and see how it performs?
Go to Top of Page
   

- Advertisement -