I have Report pointing to 20-25 servers, Which Has Dataset Queries something like these
#Dataset-1
Select A,B,C,D,E,F From Table1 where a>10 and a<15
#Dataset-2
Select A,B,C,D,E,F From Table1 where a>15 and a<13
#Dataset-3
Select A,B,C,D,E,F From Table1 where a>05 and a<07
and so on.Presently the report is running completely fine.But whenever we want to change the condition value from one servers dataset,We go to particular dataset and make the changes.
#Dataset-1
Select A,B,C,D,E,F From Table1 where a>10 and a<15
We change it to may be
Select A,B,C,D,E,F From Table1 where a>10 and a<20
And redeploy everything, which is a overhead that is being caused.
Rather we want to have a configuration in a SSRS server and then fetch the '<' value and '>' value and get the data and report it as it is already happening.In realtime ,we make these changes very frequently,Hence we want report to morph itself and handle the changes without redeploying it again and again.
I hope I have given the comprehensive information of the problem.