Viewing 4 posts - 1 through 4 (of 4 total)
try switching your main proc to using local variables as mentioned
June 9, 2011 at 7:39 am
it sounds like the first problem to address is the parameter problem.
SELECT t.FieldId, t.FieldDescription
FROM dbo.Table AS t WITH (NOLOCK)
WHERE t.Active = -1
ORDER BY t.FieldD
could be bringin back dupes. check for...
June 9, 2011 at 7:18 am
sounds like exactly what I went through. SQL Server will stage an execution plan better running through SSMS than it does receiving values from SSRS. if you change your SQL...
June 8, 2011 at 1:33 pm
Thanks, this post helped me resolve an issue that had us all scratching our heads. in SSMS my SQL ran in 30 seconds, in SSRS, it never stopped running. The...
February 22, 2011 at 12:33 pm
Viewing 4 posts - 1 through 4 (of 4 total)