Sql-server – Installation of SSRS

sql serverssrsssrs-2016

I have a doubt regarding SSRS installation. I see two methods on the web.However I am not sure if both lead to same solution.

1)Install SSRS via installer OF SIZE 105 mb.

2)Install Visual Studio Community, then SSDT, which in turn installs SSRS, and post this install templates via VS extensions.

My question is whether both these methods lead to the same result? If not which is the correct one?

The requirement in m organisation is to develop SSRS reports using TSQL DYNAMIC QUERIES,FUNCTIONS,AND STORED PROCEDURES.

SERVER :SQL SERVER 2019 DEVELOPER EDITION

Best Answer

I think you are possibly confusing two different but related items. The first is the installation, which you absolutely should use the installer for. Full installation instructions can be found here.

The second item is about creating and publishing content. Generally you do this via SSDT or the BI Components of Visual Studio (or just knock up the XML in a text editor of your choice if you feel like a challenge). Once you have created your reports you can then publish them to SSRS via Visual Studio or take the RDL file and publish it manually. There is a brief tutorial on how to do this in MS Docs.

The most important difference between these two items though is that even if you installed SSDT/Visual Studio and have created your reports, unless you have actually got somewhere to host them (i.e. by installing SSRS on a server or within Power BI Service) then you cannot share them or access them other than from within Visual Studio.

Related Question