Click here to Skip to main content
15,881,757 members
Articles / Database Development / SQL Server

Using StoredProcs with Parameters in SQL Reporting Service 2005

Rate me:
Please Sign up or sign in to vote.
4.20/5 (12 votes)
17 Sep 2007CPOL1 min read 128.5K   29   6
SQL Reporting Service provides an option for using stored procedure in the SQL Server instead of using a query in the report.This article takes you through step by step process of creating a dataset which used a stored procedure with parameters.

Introduction

SQL Reporting Services are very powerful when it comes to the options available for generating reports. We can use stored Procedure in the database to create a dataset. This article takes you through a step by step procedure on how to achieve this.

Background

For a detailed article on Defining Report Datasets, go to this link on MSDN. For a detailed article on Defining Report Datasets for a SQL Server Relational Database, go to this link. In this article, I will focus on Defining Report Datasets for a SQL Relational Database, using stored procedures with parameters.

Using the Code

  1. In the designer, select New <DataSet...>:

    Screenshot - newdataset.jpg

  2. On the Query Tab
    • For the Command Type, select Stored Procedure.
    • Enter the name of the procedure (In the Query String: text box) you want to call but don't worry about the parameters here.

    Screenshot - storedprocedure.jpg

  3. On the parameters tab, create a parameter (name should include the @) for each parameter your sproc uses:

    Screenshot - storprocparameters.jpg

Now you are ready to use the dataset for SQL Server Stored Procedures with parameters.

Points of Interest

The following link helped me:

History

  • Version: 0.0.1.0 (I might add more screen shots and more details depending on the response)

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionThis is not an article Pin
daok91124-May-13 5:17
daok91124-May-13 5:17 
QuestionGood Article Pin
Alireza_136225-Nov-12 16:35
Alireza_136225-Nov-12 16:35 
Thanks for sharing
GeneralMy vote of 4 Pin
khan mohd faizan29-Feb-12 21:51
professionalkhan mohd faizan29-Feb-12 21:51 
QuestionHow to pass a list of parameter to the dataset Pin
T.Ashraf5-Sep-08 6:42
T.Ashraf5-Sep-08 6:42 
QuestionSP query in SSRS dataset query Pin
shahid hameed23-Jul-08 17:11
shahid hameed23-Jul-08 17:11 
QuestionPictures are not being shown Pin
Andreas_Manthey7-Mar-08 4:12
Andreas_Manthey7-Mar-08 4:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.