Click here to Skip to main content
15,891,906 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a application in which i show large amount of data on crystal reports but the report is taking too much time to load all records, how can i minimize the time for loading whole record on the report or in a second or two.

Thanks in advance.
Posted

1 solution

If your report needs to display all the data, then there is really no way you can speed it up beyond doing the obvious - indexing your DB tables and optimizing queries. However, if it is a subset of data that you want to display, you may want to write a query that will only fetch the required data set as a stored procedure and use that as your data source.

HTH
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900