Click here to Skip to main content
15,893,622 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I'm having an issue with Crystal Reports and trying to see if anyone else has encountered similar issue with resolution.
I'm using Crystal Reports 8.5 on a XP machine that uses Stored Procedure to get data. Stored Procedure returns rows but the report doesn't return any rows.

Comparing my SQL Trace through Profiler while running Stored Procedure and the report, this message in SQL Profiler
set TEXTSIZE 65534
stands out.

While googling, I haven't been able to find a concrete solution so I'm hoping if anyone has encountered and resolved this issue. Thanks in advance.
Posted

1 solution

I was able to resolve this issue by making changes within Stored Procedure. I had to minimize the amount of memory I was using. I had 3 temporary tables created within the stored procedure that would get deleted towards the end of execution. To fix my issue, I had to drop these tables once it fulfilled its purpose. Somehow I suspect that my Report Engine was only allowing 1 temp table in memory during the process. Once I dropped the table right before I created another temp table, it seemed to work for me.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900