Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an SSRS report that contains several subreports. The user has the ability to select/deselect which subreports they want to produce using several Boolean parameters. If a subreport is deselected then it is not rendered by setting the Visibility property. However, the DataSet associated with the de-selected subreport still executes causing the execution time to take longer than expected.

Is there any way to tell a dataset on a subreport or Tablix not to execute based on a Parameter selection?

Thanks

share|improve this question

2 Answers

up vote 3 down vote accepted

Include an ...AND :ParameterName = 'Y'... condition in the where clause - if your parameter is not 'Y', the query will still fire but it will immediately return 0 records.

share|improve this answer
Yes, for simple queries this should work fine, too. – JC. Jun 17 '10 at 16:54
Cool deal...I'll give this a shot and let you know how it goes. Thx – MikeTWebb Jun 17 '10 at 17:05
Hi Mark...I've tried this approach and it works as far as zero rows being returned when the parameter <> 'Y'. However, the execution time is about the same. Do you suppose the query still gets sent to the server? – MikeTWebb Jun 17 '10 at 18:05
It will get sent to the server, but the optimiser on the server should immediately recognise that 0 records are required and return an empty dataset. What execution time are you getting? – Mark Bannister Jun 17 '10 at 18:10
Interesting....when I deselect al 12 reports...the executino time is ~30 seconds. When I select all 12 reports it is the same (give or take 1 second) – MikeTWebb Jun 17 '10 at 18:16
show 3 more comments

Yes. Just check the parameters in each dataset and use an IF/ELSE construct to return actual data or dummy data of the same shape to prevent errors. Assuming your parameter is named @ShowThisData then you can do this:

IF @ShowThisData = 0
    SELECT '' FIELD1, '' FIELD2, <etc... to create a dataset that matches the normal output.>
ELSE
    <whatever you normally do to get the data>
share|improve this answer
OK cool... where do you put that conditional Code in the dataset. I tried in the Query text and it didn't like that. I looked at the filter property of the DataSet, too. Is that where it should go? – MikeTWebb Jun 17 '10 at 16:50
what was the error? what's in your dataset's query text now? – JC. Jun 17 '10 at 16:56
the error id "ORA-00900: invalid SQL statement" if @Parameter = 'true' select * FROM <TABLE> where running_total_pct <= 100 order by running_total_pct – MikeTWebb Jun 17 '10 at 17:03
Oh Oracle. Sorry, I shouldn't have assumed MSSQL. I don't think you have quite as much power in the dataset when using Oracle. Try Mark Bannister's simpler approach. – JC. Jun 17 '10 at 17:12
Come to think of it, you still could use a similar approach. The dataset query text can be an expression and an IIF() expression could provide different query text based on the parameter. But for basic queries, Mark's solution is far simpler I think – JC. Jun 17 '10 at 17:16
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.