I have 3 really big tables in SQL Server 2012 all related by phone number. When I create a report with the Visual Studio BI Reporting Wizard I receive the following error:
"An error occurred during local report processing. An error has occurred during report processing. Exception of type 'System.OutOfMemoryException' was thrown."
I assume the report is returning too many records if it runs. How can I stop the report from automatically running? Or other suggestions?
The query used in the report is below.
SELECT table1.customer_phone, table2.PhoneNumber, table3.ANI
FROM LMIRSessions INNER JOIN
table1 ON table2.PhoneNumber = table1.customer_phone INNER JOIN
table3 ON table2.PhoneNumber = table3.ANI