reporting-services

Strategies for populating a Reporting/Data Warehouse database

核能气质少年 提交于 2019-12-03 21:43:36
For our reporting application, we have a process that aggregates several databases into a single 'reporting' database on a nightly basis. The schema of the reporting database is quite different than that of the separate 'production' databases that we are aggregating so there is a good amount of business logic that goes into how the data is aggregated. Right now this process is implemented by several stored procedures that run nightly. As we add more details to the reporting database the logic in the stored procedures keeps growing more fragile and unmanageable. What are some other strategies

How to convert the report to an image? [closed]

风流意气都作罢 提交于 2019-12-03 21:32:41
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center . Closed 6 years ago . I use Report viewer to show my reports . Now I want to convert the report to an image . How it possible to convert the RDLC report to an image to draw on it later . Is there any library or method to do that ? You have to create an instance of your ReportViewer : ReportViewer report = new ReportViewer(); Set up it

Reporting Services - Group Name in Page Header

*爱你&永不变心* 提交于 2019-12-03 21:29:05
I have a report with one group (Office Name) which page breaks between each group - so the data for only one Office can appear on a given page. How do I get that Office Name to appear in the page header? I tried creating a hidden textbox in the details section of the report which has the Office Name value and then referencing that in the Page Header, but I get the last Office Name value on page 1 and then it is blank on every other page. Today, at last I found another way to do this. On the group that you specified the page break, in the properties window, expand the Group section. See

Internet Facing SSRS Report

巧了我就是萌 提交于 2019-12-03 21:21:44
I am designing a website using PHP 5.2.9 and MS Sql Server 2005. I have an SSRS report and I want to set it up so that people over the internet can access it (after they put in a username and password, but i can figure that part out). Our website is hosted locally on a web server and the database is on a seperate server. I haven't set up the SSRS instance yet. So any help on figuring out how to do this would be awesome (it's a bit too late in the game to change over to asp.net( Simplest way to tackle this is to look into what MS calls "URL Access" which allows you to link to a report hosted on

SSRS default parameter values in subscription

£可爱£侵袭症+ 提交于 2019-12-03 21:17:06
I have a report that has two required date parameters which the user enters. I want to create a subscription that runs on Friday that pulls for the previous week's Sunday through Saturday period. So for example, for this coming Friday, the subscription would pull for Jan 29 - Feb 4. I've tried =Now(), =Today(), @ExecutionTime and then subtracting the number of days but all I get is errors. Is this possible to do? I did see this link but I wonder if there's a better way. http://www.sqlservercentral.com/articles/Development/datadrivensubscriptions/2432/ SSRS 2008 JonH Yes I have done this, see

Microsoft.Reporting.* vs XML/XSLT

偶尔善良 提交于 2019-12-03 20:07:31
问题 I would like to add reporting capabilities to a .NET application. My data source is just the data model of the application, i.e. a bunch of objects that may have been generated or loaded from anything (not necessarily from a database). The initial plan was to generate a report data XML file from these objects, and then use XSLT to transform this into an XHTML report file. The report can then be shown in the application with a browser control. However, I've noticed that there exist Microsoft

I want to Repeat Page Header on each Page for reports.Repeat on NewPage is not appearing in properties of Tablix member in SSRS 2008

亡梦爱人 提交于 2019-12-03 18:26:40
问题 How to Repeat Page Header on each Page. Repeat on NewPage Property is not appearing in ssrs 2008 tablix memeber property 回答1: After a little experimentation, I figured out how to consistently get the table header to repeat on every page. The setting of the RepeatColumnHeaders property on the tablix seems to have no effect on this behavior. Instead, we have to set it on a static member of the row groups. To see the static members of the row groups, click on the small drop down arrow on the far

Report viewer does not load, showing blank space - running local RDLC files

纵然是瞬间 提交于 2019-12-03 17:17:41
问题 I got a problem with reporting services, running local rdlc files on the 2005 version. I have in the HTML a report viewer set to run locally as follows : <rsweb:ReportViewer ID="ReportingServicesReportViewer" runat="server" Height="100%" ProcessingMode="Local" ShowParameterPrompts="False" Width="100%"> </rsweb:ReportViewer> In the code // create SqlConnection SqlConnection myConnection = new SqlConnection(ConnectionString); myCommand.Connection = myConnection; SqlDataAdapter da = new

Reporting services printing crashes IE

徘徊边缘 提交于 2019-12-03 17:15:36
问题 We have been using SSRS 2008 R2 for over a year and printing has worked fine. As the client browsers on Windows 7 are upgraded to IE10 we have some browsers crash when the users click on the print icon. The faulting module is rsclientprint64.dll To try to resolve this issue I manually copied the dll and associated files to C:\Windows\Downloaded Program Files and registered the dll using regsvr32. I registered the rsclientprint64.dll instead of the rsclientprint.dll since that is the file that

C#: The type 'Microsoft.Reporting.WebForms.ReportViewer' exists in both ReportingServicesWebUserInterface.dll and Microsoft.ReportViewer.WebForms.dll

本秂侑毒 提交于 2019-12-03 17:07:15
问题 Having searched a whole lot of similair posts, workarounds, I decided to make my own post. Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: CS0433: The type 'Microsoft.Reporting.WebForms.ReportViewer' exists in both 'c:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services