All Collections
SQL Server
Options and Features
How to run Microsoft SQL Server Reporting Services with Tessell?
How to run Microsoft SQL Server Reporting Services with Tessell?
Bakul Banthia avatar
Written by Bakul Banthia
Updated over a week ago

SQL Server Reporting Services (SSRS) is a server-based reporting platform by Microsoft that enables the creation, management, and delivery of interactive and paginated reports. SSRS allows users to design reports with various data sources, customize report layouts, and distribute reports to users through multiple channels.

Prerequisites

  • SSRS can be installed using the Tessell option profile.

  • For SSRS to work, the instances have to be integrated with the Microsoft active directory domain.

  • You would require the below properties to be set to 1 in parameter groups.

    • “xp_cmdshell“ → It is recommended to turn it off once the package is imported into the Tessell SQL Server host.

Granting Permissions

Before deploying and managing reports in SSRS, you need to grant appropriate permissions using the db user account.
Stored procedure msdb.dbo.t_sp_grant_ssrs_permissions takes “system administrator“ and “system user“ roles

use master
go
EXEC msdb.dbo.t_sp_grant_ssrs_permissions 'tesl\admin','System Administrator'
go

Connectivity

SSRS web service portal can be accessed through. endpoint and the port number where the port is running.

https://<TESSELLENDPOINT>:port/Reports

Configuring SSRS

To configure SSRS for optimal performance and functionality, consider the following:

  1. Access the SSRS web portal and navigate to the "Site Settings" section.

  2. Review and configure the general settings, such as the report server name, encryption settings, and email delivery options.

  3. Verify and adjust the security settings to ensure only authorized users have access to reports and sensitive information.

  4. Configure data source settings to establish connections to databases or other data sources required for report generation.

  5. Set up scheduling and subscription options for automated report delivery.

  6. Customize the SSRS web portal appearance and branding, if desired.

Deployment

To deploy reports in SSRS, follow these steps:

  1. Access the SSRS web portal and navigate to the folder where you want to deploy the report.

  2. Click on the "Upload" or "New" button, depending on your SSRS version.

  3. Use the report server URL as the deployment option.

  4. Configure report properties, such as the display name, description, and parameters, if applicable.

  5. Verify the report's data sources and ensure they are correctly configured to retrieve data.

  6. Save the report to complete the deployment process.

Did this answer your question?