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

Caching reports


Not all reports are required to be shown with real-time data, hence if the report can be internally saved with initial execution and can be used as a pre-loaded report for next request, it will surely shorten the time for satisfying user's request as it does not need to spend time on processing the report along with data extraction. This can be achieved by caching the report.

Getting ready

For improving the overall performance there are some important settings that you need to understand if you want to cache the report. Remember, if you enable caching, you need to make sure either it get's expired based on a pre-defined time-frame or it is linked with a Cache Refresh Plan. Otherwise, the report will deliver with the cached copy even though new data is available at the source.

Most common technique used for caching the report is, generate the cache with the initial request and set a time-frame for removing the cache. Once the cache is removed, the next execution processes the...