Issue:
If you happen use SSRS with IE 11 and you have SQL 2016 SP1 with CU3 installed and then try to switch to 'list view' you'll get an error message about could not load folder contents
Workaround:
Go back and just use 'Tile View' or switch to Chrome (doesn't seem to be affected) or Uninstall CU3 and go back to CU2.
I have reported this to Microsoft but no response yet.
More info:
https://social.technet.microsoft.com/
https://connect.microsoft.com
If you find this article useful please leave me a comment.
Showing posts with label SSRS. Show all posts
Showing posts with label SSRS. Show all posts
Tuesday, July 04, 2017
Monday, November 25, 2013
SSRS The attempt to connect to the report server failed
turns there was no closing tab in the web.config for
I closed the section with
and then restarted SSRS and this fixed the issue.If you find this article useful please leave me a comment or click on an ad to show your support.
Friday, October 11, 2013
How to get SSRS reports working in Google Chrome
- On your SSRS server locate the ReportingServices.js file. Normally you can find it in "C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportManager\js\ReportingServices.js"
- Edit the file, append this to the end of the file
function pageLoad() { var element = document.getElementById("ctl31_ctl09"); if (element) { element.style.overflow = "visible"; } }
Many thanks to the guys on StackOverflow for that one.
http://stackoverflow.com/questions/5428017/cannot-view-ssrs-2008-r2-ssrs-2012-reports-in-safari-chrome-but-works-fine-in
Notes: Any activex control such as Print Control and Zoom Controls will still not work in Chrome. This is because only Internet explorer will support the use of such controls.
If you find this article useful please leave me a comment or click on an ad to show your support.
Thursday, March 28, 2013
SSRS - Display interactive report on one single page
Want to have your SSRS report show on a single page without any page breaks?
The way to do this is click on empty space of your report and then in the properties window select the interactive size and set it to '0'
If you find this article useful please leave me a comment or click on an ad to show your support.
The way to do this is click on empty space of your report and then in the properties window select the interactive size and set it to '0'
If you find this article useful please leave me a comment or click on an ad to show your support.
Thursday, August 23, 2012
SSRS SQL Server Reporting Services Export As JPEG (JPG)
I noticed that SSRS for SQL 2008 R2 was missing the option to export in JPEG formats. The reason for this is that JPEG formats don't and will not support Multi-page reports.
however If you are just exporting a nice simple graphic you can add support for exporting the JPEG formats.
If you find this article useful please leave me a comment or click on an ad to show your support.
however If you are just exporting a nice simple graphic you can add support for exporting the JPEG formats.
- Logon to the SSRS reporting server
- Locate the rsreportserver.config and edit it
- Under the Configuration/Extensions/Render section
- Add
<Extension Name="IMAGE (JPEG)" Type="Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRenderer,Microsoft.ReportingServices.ImageRendering">
<OverrideNames>
<Name Language="en-US">Image (JPEG)</Name>
</OverrideNames>
<Configuration>
<DeviceInfo>
<OutputFormat>JPEG</OutputFormat>
</DeviceInfo>
</Configuration>
</Extension>
- Restart the SQL reporting service
For more information see this thread on social technet
If you find this article useful please leave me a comment or click on an ad to show your support.
Subscribe to:
Posts
(
Atom
)


