i have experience to work with client side ssrs report where report file extension is rdlc.
normally there is two way to bind ssrs report.
1) we can fetch data from db and store those data in dataset and bind dataset to ssrs report.
2) or we can directly bind store procedure to ssrs report.
the main problem is if there is huge data then we have to pull all data and bind those data to report. ssrs report has its own pagination feature which pull data from memory i assume.
so just tell me when there is huge data and that data is stored in memory after pulling from db then this kind of situation may cause shortage of memory. so how people handle this kind of situation in real life scenario when they has to bind huge data to ssrs.
looking for good guidance.