SSRS 2022 Download and Install Instructions

Problem

Microsoft offers SQL Server Reporting Services (SSRS) which allows you to create reports as well as schedule report runs and delivery of reports. Learn about the SSRS download, installation, configuration and writing your first SSRS report.

Solution

SSRS is a reporting service provided by Microsoft. You can create reports from different sources, including SQL Server, Oracle, MariaDB, MySQL, and others. You can export reports to HTML, PDF, Excel, CSV, and XML file formats.

In this article, we will show how to install and configure SSRS. We will show how to build a simple SSRS report using Visual Studio.

How to Download SSRS

Use the following link to download SSRS the installer: SSRS Installer.

download ssrs

Once downloaded, run the installer.

Below is the opening screen to the SSRS installer.

SSRS installer

On the screen below, there are three editions to choose from:

  • Trial edition for 180 days
  • Free Developer edition, mainly for development purposes
  • Express edition, which has some limitations.

The following link, SSRS features supported by edition, lists the limitations for each edition.

Also, be sure to use your product key if you don’t use a free edition.

choose edition

Please read the license terms, and if you agree with them, check the I accept the license terms box and click Next.

review license terms

SSRS requires a database named ReportServer. It also installs a temporary database named ReportServerTempDB. You are required to have a database engine installed. If you do not have the database installed, refer to this this article to install SQL Server.

install database engine

Next, specify the installation location. Once selected, click Install.

specify an install location

Wait until the installation is complete.

installation progress

Once completed, a message will appear saying the Setup is complete. Click Close.

setup complete

Report Server Configuration Manager

Once installed, you will see the Report Server Configuration Manager.

In the Report Server Configuration Manager, click Connect.

report server connection

This application configures the database, the URLs, ports used for the reports, and the URL to access the reports programmatically. You can also manage the reports here and configure emails to notify subscriptions and alerts related to the reports.

report server configuration manager service account

Add SSRS Extension in Visual Studio (VS)

Once SSRS is installed, in Visual Studio, go to Extensions in the menu.

SSIS extension

Select Manage Extensions.

Manage Extensions

Search for the SQL Server Reporting Services Projects 2022 and download it.

Run the installer.

Microsoft data tools reporting services extension

Click Install.

VSIX installer

If you get a message similar to the following, close Visual Studio.

VSIX installer

Once the installation is complete, click Close.

VSIX installer

Create First SSRS Project

In Visual Studio, select the Create a New Project option.

Visual Studio - create a new project

Select Report Server Project.

Visual Studio - create a new project

In the Solution Explorer, right-click on Reports and select Add New Report.

You will receive a Welcome Message (below). Click Next.

Report Wizard welcome page

Click Edit to edit the connection string.

select data source

Type the SQL Server name and select a database. Click OK.

connection properties

Type the name for the data source and click Next.

Select data source

The Design the Query window appears. Click Query Builder.

Design the Query

In Query Designer, click the table with a yellow + to add a table to the report. In the table, select the columns you want in the report. Click OK.

query designer

Next, select a Tabular or a Matrix report type. Tabular is a simple grid format. Each row represents a record and the columns represent a field. A Matrix report is like a crosstab report. It allows you to organize data in rows and columns dynamically, making it ideal for dynamic data where rows and columns can change dynamically.

Click Next.

Select the report type

To design the table, select the fields you want to include in the report. Click Next.

Design the table

Finally, click Finish to close the wizard.

Completing the wizard

The report is now ready.

new report example

Go to the Preview page to view the report.

Congratulations! Here is your first report.

Next Steps

For more information about SSRS, check out these links:

Leave a Reply

Your email address will not be published. Required fields are marked *