I am trying to write a report with many different records needed (way the database was designed). Client will need multivalue parameter and I have reached max pool connections(can anyone please give me the number).
Normally I would handle this with a stored procedure to create a temp table with the needed information for each section(one row per section), but this will not work with the multivalued parameters(more than one in this report).
Any help on this issue would be appreciated.
Thanks!
Terry
I'm not sure I understand the issue why you are running out of connections, but if all datasets are based on the same data source, you could select the "Use Single Transaction" checkbox on the data source dialog. In that case, all datasets running against that data source will use the same connection. See also: http://msdn2.microsoft.com/en-us/library/ms181198.aspx
-- Robert
|||I have found the data source, but not the single transaction area. Any help in this area would be appreciated. Will have to solve the multivalue parameter issue later. Idea without multivalue parameter would be a stored procedure to fix this.
Have one other idea with @.t table useage.
Thanks for the information.
Terry
|||The "Use single transaction" checkbox is only available in report designer. You cannot change this setting once the report is published.
-- Robert
|||That answered the question. I will have to find it at the start of the development for a new system.
Thanks!
Terry
No comments:
Post a Comment