Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
Well, let's start with this. You can create a report with this many records and there are a number of ways to get at it. First, the performance of the query should be taken into account. Make sure that it is optimized. Second, you need to create a status dialog that displays while the data is gathered and the report is run. This will at least notify the user that something is going on.
Next, you may want to stream the report instead of gathering all of the data first. This is a more complex discussion and is relatively in depth, but this could be another option. We have not had to do this and have some very large reports with massive amounts of data and transactions, so this may not be necessary.
Third, leave out any columns that are not required by the report when building your data source.
Those are the basics which you probably already knew, so I am not sure how much help this will be. But this is not an easy question to answer as it requires a number of things to achieve it in addition to understanding your data, your data source environment for the reports, how you are bringing back the data and when, etc.
|