Crystal ReportsGeneral discussion about Crystal Reports. For discussions specific to the book Professional Crystal Reports for VS.NET, please see the book discussion forum for that book.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Crystal Reports section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
i am using crystal report with asp.net on vs.net 2003 platform. My problem is that for small recordset it works fine, whereas when record count reaches to 17000 it get fails and shows page containing this "Server application unavailable" and other alla ballaaa...
used code lines are below
crReportDocument.SetDataSource(dataset.Tables[0]);
CrystalReportViewer1.ReportSource = crReportDocument;
at last during searching on support.businessobjects.com/forums i have found solution. Infact problem is memory. i localte machine.config file on server and increase memory limit under <processModel> tag. Presently it is 60. You can locate machin.config from c:\WINNT\Microsoft.NET\Framework\{Version Number}\CONFIG
I have to selected alot of data from database(sql2000) more than 300000 records.Althought i set memory limited to '60' and tried to '120' but it can not solve my problem "Server Application Unavailable" ,what should i do