Quantcast
Viewing all articles
Browse latest Browse all 2

Deploy SSRS Report Server Project

Deploy SSRS Report Server Project

To deploy Report Server Project, please go through below steps:

1. Go to Report Service Configuration Manager then click on the Report Manager URL tab in order to get Report Server URL.

Image may be NSFW.
Clik here to view.
Deploy SSRS Report Server Project-1

2. Now click on the Report Manager URL. We will get a empty screen as below:

Image may be NSFW.
Clik here to view.
Deploy SSRS Report Server Project-2

 

3. Let us query catalog table of ReportServer Database.

SELECT * FROM CATALOG

It will show below output:

Image may be NSFW.
Clik here to view.
Deploy SSRS Report Server Project-3

When we design a report, Report Definition Language File (.rdl) is generated whcih is basically a XML file which contains all the information about our report. So when we deploy the report, the .rdl file gets inserted into the our Report Server Database.

4. . Now come back to our SSRS Project. Right Click the Project and click on properties.

Image may be NSFW.
Clik here to view.
Deploy SSRS Report Server Project-4-1

Alternatively we can also go from Project Menu.

Image may be NSFW.
Clik here to view.
Deploy SSRS Report Server Project-4-2

 

5. In both case we will be directed to Project’s Properties Page where we are going to insert our Target Server URL Which is our Report Server Web Service URL.

In my case it is like

http://bhushan-pc:8080/ReportServer

Image may be NSFW.
Clik here to view.
Deploy SSRS Report Server Project-5

6. After click on OK, right click the Project and select Deploy from the context menu.

Image may be NSFW.
Clik here to view.
Deploy SSRS Report Server Project-6

7. If all fine we will receive Success Message.

Image may be NSFW.
Clik here to view.
Deploy SSRS Report Server Project-7

8. If here we query our Catalog table of Report Server database we will get results like following.

SELECT * FROM CATALOG

Image may be NSFW.
Clik here to view.
Deploy SSRS Report Server Project-8

Here we can see the entries of Our Project and Report.In above result Type 1 means Project and 2 means Report.

If you want to see the XML content, execute following query:

SELECT
[REPORT NAME] = NAME,
[RDL CONTENT] = CAST(CAST(CONTENT AS VARBINARY(MAX)) AS XML)
FROM CATALOG
WHERE TYPE = 2

You will get results like following:

Image may be NSFW.
Clik here to view.
Deploy SSRS Report Server Project-9

9. Now let us see our report from the browser.Go to Report Manager URL and you will get a screen like below:

Image may be NSFW.
Clik here to view.
Deploy SSRS Report Server Project-10

10. Now click on StartSSRS and it will show the list of report.In our case it will show only 1 report which is PersonAddresDetails.

Image may be NSFW.
Clik here to view.
Deploy SSRS Report Server Project-11

11. Now Click on PersonAddresDetails Report and you will get following screen:

Image may be NSFW.
Clik here to view.
Deploy SSRS Report Server Project-12

Congratulations! Our First SSRS Project is successfully deployed.

The post Deploy SSRS Report Server Project appeared first on Bhushan's Journey.


Viewing all articles
Browse latest Browse all 2

Trending Articles