reporting-services

Local Report vs Server report in ASP .Net Report viewer control

感情迁移 提交于 2019-12-20 23:19:14
问题 In one of the ASP .Net site we are currently working we have a bulk load of SSRS reports. We have forms authentication for the site and reports have already been created and deployed in the report server. We are having so many problems with authentication when we set the report viewer control to access the server report. I just want to know what are the advantages or disadvantages of using Local report vs Server Report Thanks, Raja 回答1: 1- client report don't need to report server for

SSRS Report Subscription Parameters (Date Values)

馋奶兔 提交于 2019-12-20 20:40:50
问题 I am looking to setup a report subscription in SSRS 2008 R2 where the client user can set the date parameter to whatever the individual user would like. I have been reading multiple suggestions to use =Today() in the parameters but this syntax does not work for me. Does anyone know whether is is possible to set my from date to "Today -30 days" and my to date to "today"? What is the syntax used in the subscription parameters? Settings: Error: 回答1: As described in the above link provided by

Report Viewer Web Control Version 10 Gives Error Despite Set Up Correctly

青春壹個敷衍的年華 提交于 2019-12-20 19:36:36
问题 Reports are deployed and working, verified in Report Manager. My application is an MVC2 app with my report on its own aspx page. This page worked with version 8 of the report viewer control, but we moved to new servers, upgraded sql server, and are trying to update our website to match. The servers are Windows Server 2008 with IIS 7.5. I am testing in both chrome and IE 9. Despite my best efforts, I still get this error: Report Viewer Configuration Error The Report Viewer Web Control HTTP

SQL Server 2005 Reporting Services - Pros and Cons

痞子三分冷 提交于 2019-12-20 18:45:49
问题 I am developing a web application using ASP .NET 2.0, VS 2008 and SQL Server 2005. I would like to Use SSRS 2005 for the various reports I need to build for this web application. I would like to convince the team that we should adopt SSRS as the main reporting platform for most internal and external web applications we have. What are the pros and cons of Reporting Services? I can see many pros like tight integration with IIS, SQL Server and Visual Studio, rich presentation features and export

Reporting Services Chart - Custom Axis Label

百般思念 提交于 2019-12-20 15:26:31
问题 I have a SQL Server Reporting Services (2008) chart (error chart). The X-axis has date intervals 1/1/2009, 2/1/2009, etc. The Y-axis has numeric intervals of 50. Values on the Y-axis are 0, 50 and 100. However, instead of displaying 0, 50 and 100 i would like to display "Small","Medium" and "Large" respectively. Does anyone know how this text replacement can be performed? 回答1: This is a bit of a hack, but here goes: First, normalize your values around zero, so the smallest value is -50 and

SSRS Report Viewer + ASP.NET Credentials 401 Exception

主宰稳场 提交于 2019-12-20 14:07:29
问题 I have a report saved on a SQL2005 reporting server, and I want to return a rendered PDF of this report. I've figured this out when working with a local *.rdlc file (and I've blogged about it), but not when the *.rdl resides on a reporting server. I am getting a 401 Not Authorized error at the line... reportViewer.ServerReport.SetParameters(reportDefinition.ReportParameters); Here's the method used to render the report. public byte[] Render(IReportDefinition reportDefinition) { var

Consume web api in SSRS with parameter

回眸只為那壹抹淺笑 提交于 2019-12-20 11:28:11
问题 I am trying to consume webapi in ssrs ( XML source ). If will use parameter in the url (for testing purpose ) then its working really fine for example - http://some_xyz_url.com/Api/Report/GetReport?id=7 . so I can consume web api in SSRS Real problem - I do not know how I can pass parameter to webapi from SSRS. I tried hard but no luck. Also I have searched stackoverflow there is no question near to my requirement. I am using VS2012, (.net framework 4.0), SQL server 2008 (using Microsoft SQL

Where does Reporting Services store its log files

戏子无情 提交于 2019-12-20 11:19:11
问题 The most relevant google result seems to indicate that in order to access the logs we have to depoly our own log tables to the database and make Reporting Services write to it. Simply put: surely there must be plain text log files for Reporting Services? If yes, where are these files stored? 回答1: Assuming you installed SQL 2008 to the default location: C:\Program Files\Microsoft SQL Server\MSRS10.MSSQLSERVER\Reporting Services\LogFiles 来源: https://stackoverflow.com/questions/491389/where-does

Error 'the subreport could not be found at the specified location. Please verify that the subreport has been published and that the name is correct'

孤街浪徒 提交于 2019-12-20 10:29:04
问题 I am getting the above error while creating a report in SSRS. I am trying to get 2 data sets from 2 databases, and I did so by creating a master report with data from Dataset1, and a subreport with another dataset. The error goes away when I create a subreport of the same dataset. Any ideas on what I might have done wrong? See below screenshots: The error happens when I do the following: 回答1: Generally speaking from what I have seen SSRS has THE WORST ERRORS KNOWN TO HUMANKIND on telling you

ReportViewer Control - Height issue

倖福魔咒の 提交于 2019-12-20 08:49:05
问题 In my asp.net application, I am trying to open a particular report. I have the ReportViewer Control set with width of 100% and height of 100%. Now I expect that to mean that the report will take up the entire page. Well to my surprise, it does not. In IE7 while it takes the entire width of the page, it only takes up a small portion of the height. In Firefox, both the width and the height are messed up. I have the browser open up a new page that takes up almost all of the screen. Any ideas?