Viewing 4 posts - 1 through 4 (of 4 total)
Up to my knowledge, stored procedure has to return single dataset for SSRS Reports generation. If the SP returns more than one dataset, the Report will take the first dataset...
June 15, 2010 at 6:41 am
Hi,
1) You should create multiple stored procedures since each SP can be used as a dataset. Then you can add the datasets in Data Tab -> Dataset dropdown -> New...
June 14, 2010 at 10:53 pm
Many Thanks to you.
I wrote a function and i got the result too.
CREATE FUNCTION select_concat (@A INT )
RETURNS VARCHAR(MAX) AS BEGIN
DECLARE @p...
November 3, 2008 at 5:57 am
CREATE TABLE Table1(A INT, B VARCHAR(10))
GO
CREATE TABLE TABLE2(C INT, D INT, E VARCHAR(10))
GO
Table1 DATA:
A B
------
1 XX
2 YY
Table2 DATA:
C ...
November 3, 2008 at 5:33 am
Viewing 4 posts - 1 through 4 (of 4 total)