Getting Started With SSRS 2016
In this article, we will see the following How to setup the SSRS environment How to create a table in database How to create an SSRS project How to create a new report How to deploy the report How to run the report Prerequisite We should have some basic knowledge in SQL Server Query and Visual Studio Tool to create SSRS reports, using Visual Studio 2015. SQL Server Basic Query Visual Studio 2015 How to setup the SSRS environment If you want to know how to setup the SSRS environment procedure, prerequisites and SSDT, then you can read my previous article at the link given below. Getting Started with SSDT 2016 using Visual Studio 2015 How to create a table in a database First, create a Product table, using SQL Server Management Studio in SQL Server database. Now, you can add the product details in the Product table. CREATE TABLE [dbo].[Products]( [ProductID] [ int ] IDENTITY(1,1) NOT NULL , [...