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

Opening reports using URL access


A user's access reports are published using many techniques. Even though the Web Portal given with Reporting Services is heavily used for viewing reports, some solutions use different techniques for accessing reports. One way of accessing reports in Reporting Services is, URL Access that enables accessing all reports via Reporting Services Web Service.

URL Access allows us to send necessary commands to the Report Server through the URL. There are various commands that can be used for passing instructions. These commands facilitate submitting name of the report, values for parameters, rendering format, and much more. Let us explore the URL Access along with some commands.

Getting ready

The first thing you need to do is, get the Web Service URL configured for the Reporting Services. Let's start it:

  1. Open the Reporting Services Configuration Manager and connect with the instance of Reporting Services.

  2. Click on Web Service URL for opening configurations of the web...