Book Image

SQL Server 2016 Reporting Services Cookbook

By : Dinesh Priyankara, Robert Cain
Book Image

SQL Server 2016 Reporting Services Cookbook

By: Dinesh Priyankara, Robert Cain

Overview of this book

Microsoft SQL Server 2016 Reporting Services comes with many new features. It offers different types of reporting such as Production, Ad-hoc, Dashboard, Mash-up, and Analytical. SQL Server 2016 also has a surfeit of new features including Mobile Reporting, and Power BI integration. This book contains recipes that explore the new and advanced features added to SQL Server 2016. The first few chapters cover recipes on configuring components and how to explore these new features. You’ll learn to build your own reporting solution with data tools and report builder, along with learning techniques to create visually appealing reports. This book also has recipes for enhanced mobile reporting solutions, accessing these solutions effectively, and delivering interactive business intelligence solutions. Towards the end of the book, you’ll get to grips with running reporting services in SharePoint integrated mode and be able to administer, monitor, and secure your reporting solution. This book covers about the new offerings of Microsoft SQL Server 2016 Reporting Services in comprehensive detail and uses examples of real-world problem-solving business scenarios.
Table of Contents (18 chapters)
SQL Server 2016 Reporting Services Cookbook
Credits
About the Authors
About the Reviewers
www.Packtpub.com
Preface

Managing and configuring parameters


In the construction of the tabular report earlier in this chapter (see Creating reports with a table data region recipe), in the query, the date range was hardcoded. It would be beneficial to the user of the report if they could select the date range to run the report with.

SQL Server Reporting Services uses the concept of parameters to accomplish this. In this section, we'll see how to implement parameters in the tabular report.

Getting ready

We will want to create a copy of the original tabular report and add it to our project so that we can work with it. This is actually a pretty common task; often times you will have a report that is almost, but not quite, what is needed for a new report. Copying that existing report can be a shortcut to getting up and going with the new one.

Navigate to the folder where you placed the demos. Then, using Windows file explorer, copy and paste the Report 02-01 Tabular Demo.rdl file, renaming it to Report 02-04 Parameters...