InterviewSolution
Saved Bookmarks
| 1. |
Can You Use A Stored Procedure To Provide Data To An Ssrs Report? |
|
Answer» Yes, you can USE a stored procedure to provide data to an SSRS REPORT by configuring the dataset to use a stored procedure command type. However, your stored procedure should return only a SINGLE result set. If it returns multiple result sets, only the first one is USED for the report dataset. Yes, you can use a stored procedure to provide data to an SSRS report by configuring the dataset to use a stored procedure command type. However, your stored procedure should return only a single result set. If it returns multiple result sets, only the first one is used for the report dataset. |
|