How can I specify a Stored Procedure to be used in the SSRS Report Wizard?

B. Clay Shannon

In a BIDS project, after selecting Reports > Add New Report, and adding a connection string as the Shared Data Source in the Report Wizard, the wizard next prompts for a query (in the "Design the Query" page of the wizard).

I want to specify an existing Stored Procedure. How can I do that? Is it possible to specify it directly in the connection string? e.g, I provided something like this as the connection string:

SERVER=GoCards2016;DATABASE=platypusdata;UID=duckbill;PWD=dannyAndTheJuniors;Connection Timeout=0

Can I also insert the Stored Procedure to use in there somewhere?

Or do I need to enter a bogus query in the "Design the Query" page of the wizard and later replace it in the .rdl (xml) file with the Stored Procedure name? Or...???

alejandro zuleta

The Report Wizard will let you only use Query strings so you can't select a stored procedure, but You can use the EXEC statement to specify a stored procedure to run.

exec my_stored_procedure_name

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I determine the Stored Proc used on an SSRS page?

From Dev

How can I print a Blank report in SSRS

From Dev

Stored procedure is working fine. But when use in SSRS report, I hit an error - Divide by zero error encountered

From Dev

How can I debug a Stored Procedure?

From Dev

How I can transform a stored procedure to a view?

From Dev

SSRS report with stored procedure Dataset and aggregation by month - how to handle "empty" months?

From Dev

How can I set up the SQL Server permissions to make SSRS utilize a stored procedure rather than an embedded query?

From Dev

SQL Server Stored Procedure Timing Out In SSRS Report Builder

From Dev

How to execute stored procedure parameter in crystal report?

From Dev

How can I compute and display a date range in an SSRS report field?

From Dev

How can I run an SSRS report as the current Windows User?

From Dev

SSRS: How can I accessing report parameters from custom assembly?

From Dev

how can I fix ssrs report design issue?

From Dev

How can I run an SSRS report as the current Windows User?

From Dev

How can I create an expression in an SSRS report similar to an Excel formula?

From Dev

How can I put a password onto my SSRS Dashboard Report?

From Dev

How can I compute and display a date range in an SSRS report field?

From Dev

How can I prevent the horizontal alienation of TextBoxes on generated report (SSRS)?

From Dev

How can I increase the number of years in SQL and in SSRS report?

From Dev

How can I make a Stored procedure return a bit value?

From Dev

how can i check return value of stored procedure in entity framework

From Dev

How can I ignore the resultset of a stored procedure in a trigger?

From Dev

How can I always return 3 values in this stored procedure?

From Dev

How can I set a lock inside a stored procedure?

From Dev

How can I serialize multiple executions of a stored procedure with the same arguments?

From Dev

How can I insert result from stored procedure to a new table?

From Dev

How can I get a list of all columns referenced in a stored procedure?

From Dev

How can I get output parameter to stored procedure in POCO?

From Dev

How can i use oracle object type in stored procedure?

Related Related

  1. 1

    How can I determine the Stored Proc used on an SSRS page?

  2. 2

    How can I print a Blank report in SSRS

  3. 3

    Stored procedure is working fine. But when use in SSRS report, I hit an error - Divide by zero error encountered

  4. 4

    How can I debug a Stored Procedure?

  5. 5

    How I can transform a stored procedure to a view?

  6. 6

    SSRS report with stored procedure Dataset and aggregation by month - how to handle "empty" months?

  7. 7

    How can I set up the SQL Server permissions to make SSRS utilize a stored procedure rather than an embedded query?

  8. 8

    SQL Server Stored Procedure Timing Out In SSRS Report Builder

  9. 9

    How to execute stored procedure parameter in crystal report?

  10. 10

    How can I compute and display a date range in an SSRS report field?

  11. 11

    How can I run an SSRS report as the current Windows User?

  12. 12

    SSRS: How can I accessing report parameters from custom assembly?

  13. 13

    how can I fix ssrs report design issue?

  14. 14

    How can I run an SSRS report as the current Windows User?

  15. 15

    How can I create an expression in an SSRS report similar to an Excel formula?

  16. 16

    How can I put a password onto my SSRS Dashboard Report?

  17. 17

    How can I compute and display a date range in an SSRS report field?

  18. 18

    How can I prevent the horizontal alienation of TextBoxes on generated report (SSRS)?

  19. 19

    How can I increase the number of years in SQL and in SSRS report?

  20. 20

    How can I make a Stored procedure return a bit value?

  21. 21

    how can i check return value of stored procedure in entity framework

  22. 22

    How can I ignore the resultset of a stored procedure in a trigger?

  23. 23

    How can I always return 3 values in this stored procedure?

  24. 24

    How can I set a lock inside a stored procedure?

  25. 25

    How can I serialize multiple executions of a stored procedure with the same arguments?

  26. 26

    How can I insert result from stored procedure to a new table?

  27. 27

    How can I get a list of all columns referenced in a stored procedure?

  28. 28

    How can I get output parameter to stored procedure in POCO?

  29. 29

    How can i use oracle object type in stored procedure?

HotTag

Archive