I am being forced to use an ODBC source for SSRS report builder, source is Impala SQL, which doesn't support the use of parameters. So I had to use a string builder function to get parameters into my script. This is working well, however the ask was to allow for multiple values in the text parameter. I am not sure how to get those values into a syntax that will allow the script to execute correctly, i.e. each value wrapped single quotes with a comma separation.
Currently working, single value parameter code: ...member_id = ' "&Parameters!MemberSearch.Value()&"'...
Original dataset has 17+million records and runs out of memory when attempting to use the filters instead of parameters.
Any help is greatly appreciated.