reporting-services

Why is my SSRS report showing old data?

一世执手 提交于 2019-12-18 04:30:49
问题 I have a live report that's somehow showing cached data despite the fact that I've disabled all caching (that I'm aware of). When I run the query in the BIDS query editor, it shows the current data. But in the BIDS preview and the actual deployed report , it's still showing out of date data. I tried toggling the report caching on then back off in the report properties on the reporting website, and I went into the IIS HTTP Header properties and set content to 'Expire Immediately'. I've seen

SSRS - Keep a table the same width when hiding columns dynamically?

元气小坏坏 提交于 2019-12-18 04:12:52
问题 Greetings. I have a SSRS 2005 report that shows prices of things. For some customers, I hide a column from the table (with an expression on the Visibility - hidden property). When I do this, my table shrinks. I've searched long and hard for a way to dynamically resize this table (or to do something at design time to make it stay the same width), but I'm stuck. Answers that simply state 'You can't do this' won't help me. I've read that already: http://forums.asp.net/t/1354956.aspx I'm hoping

SSRS - Process dies/goes to sleep after not being used

我怕爱的太早我们不能终老 提交于 2019-12-18 04:11:56
问题 Another SSRS question here: We have a development, a QA, a Prod-Backup and a Production SSRS set of servers. On our production and prod-backup, SSRS will go to sleep if not used for a period of time. This does not occur on our development or QA server. In the corporate environment we're in, we don't have physical (or even remote login) access to these machines, and have to work with a team of remote administrators to configure our SSRS application. We have asked that they fix, if possible,

SSRS - Process dies/goes to sleep after not being used

不问归期 提交于 2019-12-18 04:10:02
问题 Another SSRS question here: We have a development, a QA, a Prod-Backup and a Production SSRS set of servers. On our production and prod-backup, SSRS will go to sleep if not used for a period of time. This does not occur on our development or QA server. In the corporate environment we're in, we don't have physical (or even remote login) access to these machines, and have to work with a team of remote administrators to configure our SSRS application. We have asked that they fix, if possible,

ReportingService2010 could not be found

痴心易碎 提交于 2019-12-18 03:41:58
问题 I have: private readonly ReportingService2010 _rs = new ReportingService2010(); Error: The type or namespace name 'ReportingService2010' could not be found (are you missing a using directive or an assembly reference?) I setup a reference to the SSRS service. The reference does not give me access to ReportingService2010 as I expect. The closest thing is: MySsrsServiceNamespace.ReportingService2010SoapClient How am I supposed to use the ReportingService2010 class? MSDN lists this class vaguely.

Display Seconds Count in HH:MM:SS format in SSRS 2008

泄露秘密 提交于 2019-12-18 03:37:48
问题 I have a table with a column, TotalTime that is an Integer value in seconds. In Visual Studio / SSRS 2008 I want to display it in HH:MM:SS format. Thanks! 回答1: Just use an expression that adds that number of seconds to a zero time value =Format(DateAdd("s", Fields!TotalTime.Value, "00:00:00"), "HH:mm:ss") If it is larger than 24 hours, then you can use the following formula that adds the days portion: =IIF(Fields!TotalTime.Value < 86400, Format(DateAdd("s", Fields!TotalTime.Value, "00:00:00")

In SSRS, why do I get the error “item with same key has already been added” , when I'm making a new report?

眉间皱痕 提交于 2019-12-18 03:00:22
问题 I'm getting the following error in SSRS , and it's been puzzling me a while now: An error occurred while the query design method was being saved. An item with the same key has already been added What does an "item" denote, though? I even tried editing the RDL and deleting all references to the Stored Procedure I need to use called prc_RPT_Select_BI_Completes_Data_View . Could this possibly have to do with the fact that the Stored Procedure uses Dynamic SQL (the N' notation)? By the mornin, in

Why does Windows/Integrated Authentication in IIS not pass user credentials to SSRS and SQL?

ぃ、小莉子 提交于 2019-12-18 02:49:49
问题 Issue : In ASP.NET 4.0, I use my SSRS 2005 server's ReportService2005.asmx web service to get a list of reports. Also in .NET, I use Entity Framework to communicate with my MS-SQL 2005 database. When I use Visual Studio Development Server as my web server, calls to SSRS and SQL work fine. But when I switch to IIS 5.1, both SSRS and Entity code produce errors. I use only Windows/Integrated Authentication in IIS. Errors : For SSRS, I get The request failed with HTTP status 401: Unauthorized.

Asp.Net Core: Download SSRS reports in PDF format on client browser

廉价感情. 提交于 2019-12-17 21:07:01
问题 I have one SSRS report URL which if I enter that URL in the browser then it shows the SSRS report with Print and Save option like: Which works fine on the browser. What I want, there is one button on .cshtml page so by clicking on that button I need to download the report on client browser. URL: http://xyz/ReportS/report/UAT/SampleReport_V1?Srno=X123 What I tried: by setting &rs:Format=PDF and made a HTTP Request from Asp.Net Core Application but it generated PDF but in corrupt format. Code:

Need help in calculation using two Datasets using Expression SSRS

只愿长相守 提交于 2019-12-17 20:56:20
问题 I am creating an SSRS report where In Dataset15, I have value Jan - 100 & Feb - 110 in Dataset16, I have value Jan - 80 & Feb - 100 Now I want to calculate same thing in a line chart using expression - Jan - 80/100 which should be 80% & Feb - 100/110 - 91% When I am trying to find out individual monthly number 100, 110 I am getting 210 which is the summation of Both - Sum(Fields!Total.Value, "DataSet15") . Kindly help me out how can I get individual Numbers. 回答1: You would need to restrict