reporting-services

Optimizing the PDF Export of Huge Reports in Sql Reporting Services 2005

孤人 提交于 2019-12-30 10:24:06
问题 First off I understand that it is a horrible idea to run extremely large/long running reports. I am aware that Microsoft has a rule of thumb stating that a SSRS report should take no longer than 30 seconds to execute. However sometimes gargantuan reports are a preferred evil due to external forces such complying with state laws. At my place of employment, we have an asp.net (2.0) app that we have migrated from Crystal Reports to SSRS. Due to the large user base and complex reporting UI

Execution 'iwy2vpzo52pmp555ftfn4455' cannot be found (rsExecutionNotFound)

守給你的承諾、 提交于 2019-12-30 09:38:10
问题 Some users get the following error when running reports. • Execution 'iwy2vpzo52pmp555ftfn4455' cannot be found (rsExecutionNotFound) They run fine in the morning. Any suggestions? Thank you 回答1: I can help. The problem is that the ReportViewer control uses Session to store the currently executing report. Once you navigate away from the reports, the item still remains and eventually loses its "execution context", which is the way Report Server caches reports. Therefore, before browsing a

Execution 'iwy2vpzo52pmp555ftfn4455' cannot be found (rsExecutionNotFound)

爱⌒轻易说出口 提交于 2019-12-30 09:38:01
问题 Some users get the following error when running reports. • Execution 'iwy2vpzo52pmp555ftfn4455' cannot be found (rsExecutionNotFound) They run fine in the morning. Any suggestions? Thank you 回答1: I can help. The problem is that the ReportViewer control uses Session to store the currently executing report. Once you navigate away from the reports, the item still remains and eventually loses its "execution context", which is the way Report Server caches reports. Therefore, before browsing a

SSRS: Relative URL Hyperlink

萝らか妹 提交于 2019-12-30 09:07:07
问题 In SSRS 2008 I would like to create a relative path URL. Long story short I have a subscription that outputs a few thousand static HTML pages to a folder that is used as content for a website. In the past I have created full URLs to other pages on the site (sub-reports, really) using Text Box Properties -> Action -> Go to URL. I would like to modify my code so that it returns the relative path of the target instead of the full URL. This will reduce the likelyhood that someone will eventually

Pass data to ssrs report (.rdl) from code behind in ASP.NET C#, ProcessingMode=Remote

邮差的信 提交于 2019-12-30 07:34:09
问题 I can see that there are many questions already being asked regarding the same thing like: Binding a datasource to a rdl in report server programmatically - SSRS SSRS using Xml datasource [WCF], its possible, but is it advisable? and many others... But, what I really want is to have your valuable opinion before I start something and finally find myself at a dead-end ! We are developing reports in BIDS SSRS 2008 environment, VS 2010 for a Web application. with ReportViewer 10 having

Strip HTML from string in SSRS 2005 (VB.NET)

一曲冷凌霜 提交于 2019-12-30 06:07:52
问题 my SSRS DataSet returns a field with HTML, e.g. <b>blah blah </b><i> blah </i>. how do i strip all the HTML tags? has to be done with inline VB.NET Changing the data in the table is not an option. Solution found ... = System.Text.RegularExpressions.Regex.Replace(StringWithHTMLtoStrip, "<[^>]+>","") 回答1: Thanx to Daniel, but I needed it to be done inline ... here's the solution: = System.Text.RegularExpressions.Regex.Replace(StringWithHTMLtoStrip, "<[^>]+>","") Here are the links: http:/

SSRS IE8 JavaScript Error Invalid Character ScriptResource.axd

て烟熏妆下的殇ゞ 提交于 2019-12-30 05:21:08
问题 A colleague of mine has produced various reports in SSRS. We have 2 machines in the office that are failing to load the report via Internet Explorer 8. Both machines are returning a JavaScript error at the Reports 'Loading' screen. On these particular machines, the reports load fine in FireFox so I am guessing that it is IE related. Both Machines are running IE8. Any help would be greatly appreciated. The JavaScript error detail is as below:- Webpage error details User Agent: Mozilla/4.0

SSRS date default with formula disables parameter

℡╲_俬逩灬. 提交于 2019-12-30 03:55:08
问题 When I set a default value formula for a date parameter in SSRS, such as: =CDate(”01/” & Month(Now) & “/” & Year(Now)) or even: =Now the date parameter control becomes disabled with nothing in it. Does anyone know what simple thing (I am sure) I am doing wrong? 回答1: After playing some more, I realized that the date controls became enabled when I picked a value from a preceding dropdown parameter that did not have a default. Apparently, controls after non-default parameters are disabled until

SSRS Pivoting a column

夙愿已清 提交于 2019-12-30 03:14:03
问题 I current have this report layout ProductNumber Description PackType Dimension Weight PN 1 Desc PN1 InnerPack 1x1x1 1 PN 1 Desc PN1 SinglePack 1x1x1.2 1.2 PN 2 Desc PN2 InnerPack 2x2x2 2 PN 2 Desc PN2 SinglePack 2x2.2x2.2 2.3 PN 3 Desc PN3 BulkPack 3x3x3 3 Now, my users want to pivot like this InnerPack SinglePack BulkPack ProductNumber Description Dimension Weight Dimension Weight Dimension Weight PN 1 Desc PN1 1x1x1 1 1x1x1.2 1.2 PN 2 Desc PN2 2x2x2 2 2x2.2x2.2 2.3 PN 3 Desc PN3 3x3x3 3 How

Tracking report usage

爷,独闯天下 提交于 2019-12-29 10:13:11
问题 Is there an easy way to track who is running a given report in SSRS 2005, and at what time they are running that report? We have about 80 reports in our SSRS implementation, and are trying to see if there's any that we can safely put out to pasture. If we could easily see somehow which reports aren't being used, that would help us. Any ideas? 回答1: There is some good advice and queries for generating reports on this in the following article. For example, if you want to see the most used