I had the same problem, here is my description of the problem
"I created a warehouse procedure that will generate 2200 rows and will run in almost 2 seconds, but after calling the storage procedure from SSRS 2008 and running a report that it never actually ran, and eventually I need to kill BIDS (Business Intelligence Development Studio) from the task manager. "
What I tried: I tried to run SP from the login to Reportuser, but SP also worked fine for this user, I checked Profiler, but nothing worked.
Decision:
Actually, the problem is that even if the SP generates the result, but the SSRS mechanism takes time to read these many lines and return them back. So I added the WITH RECOMPILE parameter to SP and ran the report .. it happened when a miracle happened and my problem was resolved.
Redroidmator Oct 18 '12 at 21:32 2012-10-18 21:32
source share