Viewing 5 posts - 1 through 5 (of 5 total)
I am having the exact same issue. There was no change in disk consumption on either server (prod and backup). Additionally, the log files show that the data...
August 31, 2012 at 8:13 am
Which version of SSRS are you using? Are you doing your testing in Business Intelligence Development Studio?
January 11, 2012 at 9:50 am
Can you post code for the stored procedure you are calling to populate your State dropdown box?
January 11, 2012 at 9:29 am
jpwagoner...that must be a new feature in SSRS 2008. I don't see it in 2005.
October 7, 2011 at 3:11 pm
As far as I'm aware a cursor is the only way to do this.
--Create #temp table and insert numbers
DECLARE int_cursor CURSOR
FOR SELECT intVal FROM #temp
OPEN int_cursor
DECLARE @currInt...
October 7, 2011 at 2:44 pm
Viewing 5 posts - 1 through 5 (of 5 total)