reporting

SSRS reports is showing as listed directory

假如想象 提交于 2019-12-05 08:09:12
How can I get SSRS reports to show a web page view? When I go to the SSRS reports page, it's not showing the web page view. It shows a list of data sources, data sets and report folders. After going inside the reports folder, I can invoke the report by clicking on them without any issues. https://docs.google.com/file/d/0B55EKwlB3BuINk1GeU9WRUoxM1E/edit?usp=sharing Please look at the image above. You're browsing to the Report Server web service , typically http://server/ReportServer . Sounds like you're after the Report Manager website, typically http://server/Reports . Web Service URL: Report

What are the Rave BE “reports in code” alternatives in a Delphi 2010 migration project?

烈酒焚心 提交于 2019-12-05 07:23:01
问题 I want to migrate a Delphi 7 project to Delphi 2010. We are building "reports in code" with TReportShell and TDetailShell components from Rave BE. Those components does not exist any more in Rave BE 7.7. Moreover it seems that unicode support is broken in Rave BE ( Displaying unicode text in Rave Reports on Delphi 2009 ). What sould be the best solution to port this project to Delphi 2010 ? Reimplement the code written aruond TReportShell and TDetailShell to use the new TRvNDRWriter component

Is there a report tool that allows users to create their own reports?

人盡茶涼 提交于 2019-12-05 07:22:40
I have looked around a bit but I can't find a tool that fit my needs. What I need is a tool that allows users to create their own reports preferably from a web interface where the user is able to create charts, diagrams and tables . Therefore the tool needs to be able to handle several users and restrict the users to a certain database . I have looked at Crystal Reports and SSRS and neither of them seems to support what I want or am I missing something? So, you're looking for a web-based limited version of Crystal Developer? I can't imagine a user audience that is skilled and motivated enough

Very big data in mysql table. Even select statements take much time

两盒软妹~` 提交于 2019-12-05 05:56:10
问题 I am working on a database and its a pretty big one with 1.3 billion rows and around 35 columns. Here is what i get after checking the status of the table: Name:Table Name Engine:InnoDB Version:10 Row_format:Compact Rows:12853961 Avg_row_length:572 Data_length:7353663488 Max_data_length:0 Index_length:5877268480 Data_free:0 Auto_increment:12933138 Create_time:41271.0312615741 Update_time:NULL Check_time:NULL Collation:utf8_general_ci Checksum:NULL Create_options: Comment:InnoDB free: 11489280

In SQL Reporting Services, how to filter a dataset according to a parameter?

℡╲_俬逩灬. 提交于 2019-12-05 05:50:01
I've got an unfiltered dataset to deal with so as to generate a report (SQL Server 2005 btw) . Let's say I've got a Name column, and I'd want to add a parameter to my report, so as to select only the names containing some characters. Does one know how to deal with these filters? I've tried with no luck these: =Fields!Name.Value Like =Parameters!FilterName.Value =Fields!Name.Value = = "%" + Parameters!FilterName.Value + "%" I'd like to be able to get the names 'foo' and 'foobar', if I give the parameter 'oo' Edit: I know the filtering should be done on the SQL server side, but I don't control

What's the best way to show html reports generated by JasperReport in a jsp?

余生长醉 提交于 2019-12-05 02:46:03
问题 I'm working on a reporting web application using JasperReports and Spring MVC. Now, i need to show the reports generated by Jasper, inside a web page. Is there some facility using Spring/JasperReport or i have to brutally include the html page into a jsp? 回答1: Yes, Spring MVC supports jasper reports as view Document 来源: https://stackoverflow.com/questions/8239838/whats-the-best-way-to-show-html-reports-generated-by-jasperreport-in-a-jsp

Reporting Services LocalReport and WIF

六眼飞鱼酱① 提交于 2019-12-05 01:58:15
I have a wcf webservice that uses WIF for authentication. Part of the responsibility of this webservice is to generate a report and email it. If I render the report with data only everything is fine. If I include any report parameters, report constants, or even just DateTime.Now I get the following exception: An error occurred during local report processing.Failed to load expression host assembly. Details: Request for the permission of type 'System.Security.Permissions.SecurityPermission, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed I can run the same

Reporting Trend Line

你离开我真会死。 提交于 2019-12-05 01:36:55
问题 How would you create a line in JasperReports that follows the trend for the data, in addition to showing the data points? Here are before and after shots: Before After The Time Series report does not appear to have any such option to draw the orange line. (The orange line should be smooth, and thinner, but that's the general idea.) Any ideas how to craft such a report with iReport 3.7.1? 回答1: One solution requires the following items: BezierLineCustomizer to make the lines curved.

Make PDF reports in Perl?

旧城冷巷雨未停 提交于 2019-12-04 23:44:44
All the PDF libraries for Perl seem a bit barbaric -- stuck in the 1980's. You have to specify PostScript points to do layout. Java has JasperReports, Ruby has Prawn, and Python has ReportLab. Is there a non-extinct library/module that will let me make a nice looking PDF in less than a week of coding? (I'm a little frustrated by PDF::API2, PDF::Table, etc.) I don't want to generate HTML and convert it. Perl is ideal for reporting, but the main report file format is not available in a usable way. What libraries do people use? I need: tables charts (Images) color formatting (ideally automatic,

Export list of all commit details in VSTS / Azure DevOps into file?

久未见 提交于 2019-12-04 21:07:40
I want to export a list of all commits in a repository (date-time, author, comment) into a file (of any format: CSV, XML, JSON, XLS etc.) which I will then analyse in a spreadsheet. I want to compute stats such as: number of commits per author per month size of each commit (number of lines & files changed, size in kB) busiest times of day, busiest days of week, busiest months of year etc. This is for a high-level management report so non-technical managers can understand the size of effort without blinding them with actual code & architecture details. There seems to be no obvious way to do