Tips for using SQL Server 2017 Reporting Services SQL Server 2017 Reporting Services (SSRS) is no longer available to install through SQL Server 2017 setup. You can download SSRS 2017 at here: https://www.microsoft.com/en-us/download/details.aspx?id=55252 Consider using the Microsoft Excel rendering extension. SQL Server 2017 Reporting Services supports the Reporting Services Excel rendering extension. This extension renders a report as an Excel...
Tag: ad hoc reports
SQL Server 2012 Reporting Services Optimization Tips
SQL Server 2012 Reporting Services Optimization Tips Try to restrict the report queries result set by using the WHERE clause and by returning only the particular columns from the table. This can results in good performance benefits, because SQL Server will return to client only particular rows and columns, not all rows and columns from the table(s). This can reduce...