In short, no. There is no good workaround. However, for development, I usually created a test request along with my work in SSRS. I would edit this inside Management Studio and then just paste the values ββback into the BIDS. Assuming two parameters named "StudentID" and "TeacherID", the query looked like this:
DECLARE @StudentID int DECLARE @TeacherID int SELECT @StudentID = StudentID FROM Students WHERE StudentName LIKE 'John Doe' SELECT @TeacherID = TeacherID FROM Teachers WHERE TeacherName LIKE 'Mr. Jones'
This allowed me to use real text values ββfrom the drop-down lists of parameters and just insert my query. Then I could optimize the query in Management Studio, and then paste it back into BIDS when I was pleased with the result.
Aaron d
source share