reporting-services

Enable Caching for all reports in SSRS Report Server

旧巷老猫 提交于 2019-12-08 02:43:18
问题 I have more than 100 reports in SSRS report server. I need to enable caching for all of those. Right now I am enabling caching through the report manager for each and every report. Can we add caching in any of the report servers config files? So that we can enable caching for all reports at a single place. Any help will be appreciated Thanks AJ 回答1: Below is the script that I used to enable caching in minutes on a list of reports. Save it as setreportscaching.rss and then run it from the

Display blank value (“”) as date in SSRS

巧了我就是萌 提交于 2019-12-08 02:43:15
问题 I have the column DiscontinuedDate with either a datetime or a blank value. I used the expression FormatDateTime(Fields!DiscontinuedDate.Value, DateFormat.ShortDate) To show the date time as just a date but then when the value is blank it shows as an error with the following message "Conversion from string "" to type 'Date' is not valid." So i've been trying to use an IIF expression like the below: =IIF(Fields!DiscontinuedDate.Value is "", "", FormatDateTime(Fields!DiscontinuedDate.Value,

Trying to Get Rid of White Space in SSRS Report

若如初见. 提交于 2019-12-08 02:08:12
问题 I have a Report where I need to Hide Duplicates but unfortunately I now have white space in the Returned Data where the Duplicate Records used to be. How do I remedy this so my Report doesn't look so unprofessional? I have searched the internet and found answers for hiding rows where there is no data, but in my report there is data that I don't want to show. I would just take it out of the Query but the way the Tables are set up that is not an option. EDIT I am working with a Tablix, there is

FIrst time writing ASP.NET MVC app- need to tie to SSRS and display reports

痴心易碎 提交于 2019-12-08 02:05:47
问题 Hey everyone.. This is my first time writing an ASP.NET MVC web app, and it's going good. I have no problems there. What I don't have any experience in is SSRS though. Ultimately I want to be able to render reports on my ASP.NET MVC app. I got the report server installed and running, and it's visible within SQL Server Management Studio. I created a test report (.rdl) via Business Intelligence Development Studio, and published it to my report server. It's now there, I checked. My question is

Internet Explorer causes IIS 500 error when attempting to access reporting services from a Web Application

。_饼干妹妹 提交于 2019-12-08 01:22:59
问题 I have a aspx web forms page that calls a SQL 2012 SSRS report hosted on a SQL 2012 reporting services server and uses the report viewer to display the report on the aspx page. The issue is when I click the link to sent the parameters to the reporting server and run the report the page hangs (on IE only). On the IIS logs on the server there is a 500 error in the logs corresponding to the request. There is no matching error message in the Event Viewer on the server. When I view it on fiddler

Opening Remote RDL with .NET Report Viewer

霸气de小男生 提交于 2019-12-08 00:31:26
问题 I store rdl's remotely in a sql server database in binary format. I would like to use the report viewer control to display the report. This seems like a simple concept but I keep finding conflicting tutorials which have several different approaches...none of which I can get to work. Am I right in thinking that all I need is the report viewer control to get this working? If so, how is it possible to open a remotely stored .rdl file? I also have a variable which has the rdl content stored in a

SSRS 2008 R2, Farm - Load Balanced and HTTP status 401: Unauthorized

佐手、 提交于 2019-12-08 00:27:30
问题 I have SQL Server Reporting services 2008 R2 environment in my Company. 2 servers Windows 2008 R2: PRERPSW01 and PRERPSW02 , in domain DOMAIN_Company NLB name: PRERPS IPs address ( I get by ping command): PRERPSW01 192.168.110.41 prerps 192.168.90.92 hosts file in PRERPSW01 server 192.168.110.41 prerps In PRERPSW01 and PRERPSW02 servers, there is this configuration: Config Report Server: C:\Program Files\Microsoft SQL Server\MSRS10_50.REPORTING\Reporting Services\ReportServer\rsreportserver

Does RepeatWith parameter work in SSRS 2008?

微笑、不失礼 提交于 2019-12-07 21:55:09
问题 Does anyone know if the RepeatWith parameter of a Line works in SSRS 2008? We have a report that has a header, rectangle, and footer. Inside the rectangle is the data table, table1. It is an invoice form that needs to repeat vertical lines not only at the edges of the rectangle, but also to separate the columns of the table, and the lines need to always go to the bottom of the page, so using the right and left borders of the text boxes in the tables won't work. We got this to work in SSRS

Freeze column header while scrolling

笑着哭i 提交于 2019-12-07 21:45:02
问题 I want freeze all column headers while scrolling down. Also, I want to freeze the first four columns with data when I scroll vertically. For the second part, I used the FIXED data property for the first four columns. It's working perfectly. How do I freeze all column headers when I scroll downwards? I am using SSRS 2005. 回答1: In order to make the column header row repeat on each page, please refer to the steps below: Select the Tablix. In the grouping pane, click on the small triangle and

SSRS Conditional Formatting

自古美人都是妖i 提交于 2019-12-07 20:14:51
问题 I am working on SSRS Ranking report, where Rank 1 should have background of Green and last Rank should have background of Red. Example below: I tried using custom code but that's not working for me as below: SSRS Expression used as below: =Code.RankColour(me.value, 1, Fields!RankName.Value) And RankColor code as below: Public Function RankColourTotals(ByVal Value As Decimal, ByVal MinValue As Decimal, ByVal MaxValue As Decimal) As String Dim strColor As String Select Case Value Case MaxValue