reporting

ASP.Net web server control that generates HTML and Excel

心已入冬 提交于 2019-12-01 07:17:07
问题 I am developing a web application that contains a great deal of reporting. The reports are fairly basic, but some have multiple datasets or embedded charts. One of the key requirements is that each report can be exported to Excel. The Excel version of the report is disconnected and should look the same (or very similar) to the web report. That includes formmating of values, cell styles, number of rows/columns, charts, etc. The problem I've encountered is that the ASP.Net reporting tools I've

Asp.Net MVC options for business reporting

偶尔善良 提交于 2019-12-01 06:49:12
I have a need to add business reporting for an application I am working on. I have found very little in the way of support for MVC natively. I would like to get a feedback on tools that people have used, how they used it (native or hybrid) and if possible links to examples demonstrating integration. I'd like to get feedback on use of Crystal Reports SSRS Telerik MVC Reporting Solutions SSRS - requires hybrid application with winforms page hosting the report Telerik - ??? Crystal Reports - requires hybrid application with winformats page hosting the report FASTREPORT®.NET - has asp.net support

MongoDB and BIRT Reporting?

时光怂恿深爱的人放手 提交于 2019-12-01 06:12:43
Has anyone used BIRT to generate reports from MongoDB, can you describe how, any issues, etc. ? It looks like it might be possible to interface using JDBC and this experimental driver: https://github.com/erh/mongo-jdbc However, I am not exactly sure how to install this driver in eclipse to test it. I've successfully integrated BIRT with MongoDB - it works perfectly well. The idea is this - define a scripted data source in BIRT, then define a data set that using that data source. The data set has an "open" event in which you place the call to Mongo Java Driver and execute your query against

How do I achieve a pivot report in Crystal Reports for Visual Studio?

六月ゝ 毕业季﹏ 提交于 2019-12-01 05:01:45
I am a rank noob at any reporting but horizontal lines with sub-totals. I have a dataset that comprises the times spent by cars in a carpark. I must produce a table showing a column for each hour and a row for each day, showing the number of entries at a particular time on a particular day. I would find this easier in the RDLC designer, with it's columnar groupings, but I can't even find such a thing in Crystal. Help. Assuming the following fields: {table.car_id} and {table.census_time} Choose Insert | Crosstab...; add cross-tab to report-header section Right click the cross-tab and chose

JasperReports: Cover page

别等时光非礼了梦想. 提交于 2019-12-01 04:54:12
问题 I have a JasperReport and I want to create for this report a cover page. The cover page must contain some information coming from the DB, like Company name, etc. I am trying to do this using a subreport but I didn't succeed. I've created a main report which contains first the cover page as a subreport and then the whole report as a second subreport. I got an empty report. My second try was to put inside the main report the cover page as a subreport but this didn't work as well. Any hint how

Missing Business Intelligence Project type in Visual Studio 2010

狂风中的少年 提交于 2019-12-01 04:19:06
When I use visual studio 2008 and do a new project I can select the type of project as Business Intelligence project. From here I can select a report server project. I noticed that with visual studio 2010, this does not exist any longer. Tried doing some googling about it and got this: http://social.msdn.microsoft.com/Forums/en-CA/vsreportcontrols/thread/f2d272b1-a7f5-41b7-9cb8-a0958c192d31 But it may be outdated. I know this stuff usually comes from SQL Server not Visual Studio, but I have SQL Server 2008 installed as well (Developers edition locally). So do we have any Visual Studio / SQL

Asp.Net MVC options for business reporting

♀尐吖头ヾ 提交于 2019-12-01 04:13:05
问题 I have a need to add business reporting for an application I am working on. I have found very little in the way of support for MVC natively. I would like to get a feedback on tools that people have used, how they used it (native or hybrid) and if possible links to examples demonstrating integration. I'd like to get feedback on use of Crystal Reports SSRS Telerik MVC Reporting Solutions SSRS - requires hybrid application with winforms page hosting the report Telerik - ??? Crystal Reports -

What is the simplest way to set up a BIRT report viewer for a xulrunner application?

。_饼干妹妹 提交于 2019-12-01 04:04:13
I recently began using BIRT and have developed a report to use with my xulrunner application. What I haven't yet figured out is how I should deploy the viewer. It seems like BIRT mostly targets Java applications, so there are instructions for deploying on J2EE, JBoss, and other technologies -- with which I am not familiar (but I'm not developing in Java anyway). Reviewing this article on deploying BIRT and reviewing the deployment details on BIRT's web site, I'm not sure where to go. I wasn't expecting to have to add some large Java dependency for the xulrunner application --is there no way I

varnish 4.0 官方文档翻译21-Reporting and statistics

谁都会走 提交于 2019-12-01 04:01:32
Reporting and statistics 本部分包括如何查看Varnish正在做什么,从每个http请求流的详细记录到汇总统计计数器。 Logging in Varnish Statistics varnishtop varnishhist varnishstat Logging in Varnish Varnish中一个很棒的特点是工作日志的记录方式。varnish不记录日志到日志文件,而是调用VSL记录到共享内存片段,VSL-varnish共享日志。当这个片段被写完后,varnish开始覆盖老数据。 这种方式比记录到文件快的多得多,并且不需要磁盘空间。除此之外VSL可以给到你需要的尽可能多的信息。 另一方面,如果你忘记有程序实际在写日志到磁盘,日志将会占用过多的磁盘。 varnishlog是可以用来查看varnish记录了什么的程序。varnish提供原生的日志,所有的都被写到日志里。其他一些客户端也能访问日志,一会儿向你展示。 在启动varnish的终端窗口键入varnishlog(varnish-4.0.3: varnishlog -v) 然后回车。 你将看到一些行,缓慢滚动(取决于你的日志量)像这样: 0 CLI - Rd ping 0 CLI - Wr 200 PONG 1273698726 1.0 varnish 主进程检查cache进程,为了查看是否一切ok

Is a fact table in normalized or de-normalized form?

删除回忆录丶 提交于 2019-12-01 03:42:34
I did a bit R&D on the fact tables, whether they are normalized or de-normalized. I came across some findings which make me confused. According to Kimball : Dimensional models combine normalized and denormalized table structures. The dimension tables of descriptive information are highly denormalized with detailed and hierarchical roll-up attributes in the same table. Meanwhile, the fact tables with performance metrics are typically normalized. While we advise against a fully normalized with snowflaked dimension attributes in separate tables (creating blizzard-like conditions for the business