Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
lily_wibisana
Starting Member
29 Posts |
Posted - 2008-05-14 : 11:39:53
|
Hi,How do I call the store procedure that I created in SQL Server from Reporting services?Greatly appreciate your help. |
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2008-05-14 : 13:10:06
|
Select the option to use a stored procedure in your dataset and then type in its name.Tara KizerMicrosoft MVP for Windows Server System - SQL Serverhttp://weblogs.sqlteam.com/tarad/Database maintenance routines:http://weblogs.sqlteam.com/tarad/archive/2004/07/02/1705.aspx |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-05-14 : 14:02:08
|
or you can use Text option in dataset and call it using T-SQL commandEXEC SPName @Param1=value1,@Param2=Value2,.... |
|
|
|
|
|