I have a SSRS report which has a multiselect dropdownlist parameter which loads data from database.
The problem is, I have to load 130000 records in the parameter dropdown and it takes so much time to load the dropdown. But when I check my query which is a simple select query
eg:
SELECT Id, Name
FROM Table1
it executes within 3 secs and retreive data. I cannot reduce the ammount of records that needs to be loaded in to the parameter dropdown.
Is there any way to do pagination or that kind of thing to improve the performance.