Hi,
Today I have been debugging a report for a client and I am getting an out of memory exception when I render the report. The report in question does contain over 150,000 rows of data. I have used the same report with less that 100,000 rows of data without any problems.
What is data limit of the reporting tool and any ideas on how to get around this?
Chris
Max report data size?
-
- Posts: 23
- Joined: Wed Apr 13, 2011 7:37 am
- Location: UK
Max report data size?
Hello,
Please check the following article in our knowledgebase:
http://stimulsoft.helpserve.com/index.p ... icleid=299
Thank you.
Please check the following article in our knowledgebase:
http://stimulsoft.helpserve.com/index.p ... icleid=299
Thank you.
-
- Posts: 23
- Joined: Wed Apr 13, 2011 7:37 am
- Location: UK
Max report data size?
Does that mean there is no limit on the amount of data that can be processed by the report engine?
For the record my server has 16Gb ram and splitting the report in not an option.
Chris
For the record my server has 16Gb ram and splitting the report in not an option.
Chris
Max report data size?
Hello,
1. Data; most of the data is converted into datasets, which take up memory. You can only reduce the amount of data, breaking them to parts, or making more accurate data sampling without sending unnecessary information.
2. Rendered report pages. Please set the ReportCacheMode property of the report to On or Auto, and in memory only the most recent 50 pages of a report (by default) will be stored. The rest of pages will be stored in the cache on the disk. The amount of memory used for pages usually do not exceed 200 ... 300 mb.
Thank you.
Much of the memory is consumed for two following demands:Does that mean there is no limit on the amount of data that can be processed by the report engine?
1. Data; most of the data is converted into datasets, which take up memory. You can only reduce the amount of data, breaking them to parts, or making more accurate data sampling without sending unnecessary information.
2. Rendered report pages. Please set the ReportCacheMode property of the report to On or Auto, and in memory only the most recent 50 pages of a report (by default) will be stored. The rest of pages will be stored in the cache on the disk. The amount of memory used for pages usually do not exceed 200 ... 300 mb.
Thank you.