ssrs-2008

SSRS2008 ASP.NET ServerReport fails on IE11 with OEM UserAgent

那年仲夏 提交于 2019-12-08 19:09:28
I am rendering a SSRS ServerReport to PDF and in the ReportViewer WebForm Control in a ASP.NET 3.5 Application with a SQL Server Report Service 2008. Some people using Internet Explorer 11 reported that they cannot open generated PDF files or see anything in the viewer. The rendering fails with this error: library!ReportServer_0-403!7c8!01/02/2014-11:07:37:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException: , Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException: Interner Fehler beim Berichtsserver. Weitere Informationen finden

Localizing SQL Server Reporting Services reports?

怎甘沉沦 提交于 2019-12-08 18:39:28
How would one go about localizing SSRS reports? Let´s say I have a report that contains a label with the text "Total Sales" (in Norwegian language, which is where I come from) and I want to use the same report for our danish and swedish customers, so the actual text needs to change slightly. Do I need to make copies of all the reports and localize them manually, or is there any way to do this in a more automated way? Could I for instance use expressions for those texts instead, and add our own localizing system to the reports, ie. use the following expression: =Translate("Total Sales") which

SSRS 2008: User Does Not Have Required Permissions

て烟熏妆下的殇ゞ 提交于 2019-12-08 17:15:34
问题 I have already researched the following existing SO questions and the links that they reference: User '' does not have required permissions, SSRS 2008 on Windows 8 Reporting Services permissions on SQL Server R2 SSRS SQL Server Reporting Service - Service Manager Error - User Does not have required permission I've taken the steps already outlined by these suggested solutions, but even after all that and also logging out and back in, nothing has changed. In fact my user name was already listed

Excluding the time in a “date/time” parameter for SSRS reports

可紊 提交于 2019-12-08 16:27:47
问题 In my SSRS report, I wanted to allow the users to specify a date (that would be used to filter the data on a report). When I did this, the parameter also includes the time. Is it possible to just allow the user to select a date, without showing the time? Can I also give it a default value of the current date? The steps that I had already applied to the report parameter: Set the parameter to "date / time" data type. Set the default value of this parameter to be =Now . When I did this, the

SSRS 2008, custom dll, file not found

大兔子大兔子 提交于 2019-12-08 16:05:42
问题 I've been fighting with SSRS now for a while and it's beyond silly. When I add a reference to a dll (which is part of the same solution) it gives me nothing but a [rsErrorLoadingCodeModule] Error while loading code module: ‘MyFile.MyClass.Code, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null’. Details: Could not load file or assembly 'MyFile.MyClass.Code, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified. I've

Overlapping Labels in Pie-Chart

陌路散爱 提交于 2019-12-08 15:27:26
问题 Are there any Settings to avoid having overlapping labels in a Pie Chart in SSRS? I have several Charts with the same Problem, if the Slices are too small the Text will overlap. Here is a Picture of my Problem and a possible way as how i want it to be: EDIT edited the 3D Options so the Labels fit in like I wanted them to be. But another Problem occurred when setting rotation and inclination to zero, the colors aren't as intensive as they where before: 回答1: You can try this.. 1)On the design

SSRS 2008 Excel Currency Cell Format

耗尽温柔 提交于 2019-12-08 13:51:30
I'm using SSRS 2008 and I have a financial report. I would like the dollar amounts in my table to be in currency or number format when exported to Excel. Currently they end up being text. I have trying a few things to see if its even possible. I removed the table header, didn't use the $ sign, and converted the field to decimal, but nothing seemed to work. The data in Excel always seems to be format as text. Any suggestions? Make sure you are using the Format string "C" but the export to excel is really a text rendering - it does not hold Excel specific attributes/qualities. I found that

Conditional reporting in SSRS

你说的曾经没有我的故事 提交于 2019-12-08 12:10:09
问题 I have a SSRS 2008 sever running in native mode. I'm trying to figure out if the following is possible and if so, how to do it. I would like to have a scheduled subscription that only generates a report when some condition is satisfied. The most natural way to express the condition for me would be if a particular query comes back with data. Is this possible? So basically I would check the the DB on a regular schedule and if some data is there (like in an error log) send an email about it.

SSRS Migration Sharepoint Integrated to Standalone

旧巷老猫 提交于 2019-12-08 11:37:16
问题 I'm using RS.exe to migrate from a sharepoint-integrated SSRS server to a standalone SSRS server. When I run the command I think SHOULD work, I get an error related to a missing SiteURL parameter. I want to copy all contents from the source SSRS box to the destination, so my understanding is that the defaults should be acceptable. Documentation for this migration path seems thin. I'd appreciate help in figuring out how to get this done. Below are the command and error text: c:\IT>rs.exe -i

SSRS - How to show external image based on URL inside column

会有一股神秘感。 提交于 2019-12-08 10:47:02
问题 I am trying to show images for products inside a basic report. The image needs to be dynamic, meaning the image should change based on the SKU value. Right now I am inserting an image into a table, setting to external, and i've tried: =Fields!URL.Value =http://externalwebservername/sku= & Fields!SKU.Value ="http://externalwebservername/sku=" & Fields!SKU.Value I do not get any images in my table. My stored proc has all the data, including a URL with the image I wan't to show. Here is a sample