reporting

Mysql - Archiving data, which solution to use?

被刻印的时光 ゝ 提交于 2020-03-05 11:01:12
问题 I am using MySQL 5.x and there is one main table that has the stats combined for all customers. I would like to run reporting on it but dont want to run it on the same table so Im thinking of every night moving the data to a different table that will only be used for reporting. My question is would it be beneficial to have a seperate table for each customer to archive too or just have it just one archive table for all customers? There could be thousands of customers in the system which could

SSRS total for time

为君一笑 提交于 2020-01-25 02:44:39
问题 I have a table as such: ---------------------------------------------- Name | Activity | Activity Time ---------------------------------------------- | | | L030 | 07:15:00 Dan | | Smith |------------------------------------ | | | L031 | 01:00:00 | | |------------------------------------ | Total | | | --------------------------------------------- | | | L030 | 01:15:00 Steve | | Jones |------------------------------------ | | | L031 | 06:00:00 | | |------------------------------------ | Total |

Report Design Templates

旧城冷巷雨未停 提交于 2020-01-24 20:52:25
问题 We are using DevExpress XtraReports 2009v3.3 and although I can achieve what I want through various formatting objects in code, there must be a (better/less painless/maintainable/visual) way of achieving what I require... I need to produce a report, designed to end-user 'look & feel'. We have many companies which use our software and they all require different design schema's/templates for their reports. For example - a single report, depending on who logs on (we know what company they belong

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

前提是你 提交于 2020-01-21 07:09:31
问题 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. 回答1: Assuming the following fields: {table.car_id} and {table.census_time}

Open source PHP reporting tool

扶醉桌前 提交于 2020-01-19 23:13:07
问题 I am developing web based application, i need php reporting lib/class to make the job easy. I need PDF/Excel format. The report based on related db tables(member bills, member info) Is there any advanced open source solution ? Thanks 回答1: There are tons of reporting libraries, most of which create Xml or Csv. You would have to give more data about what kind of reporting you need for a recommendation. I haven't used PHPExcel yet, but it is the first attempt I have seen to actually create Excel

Report development, totalPages() Method

China☆狼群 提交于 2020-01-17 04:10:06
问题 Is it possible to reset the value returned by totalPages() method of reportRun class? I have one report populated with several invoices, I want to reset the totalPages() value for each fetched invoice. I tried to use element.reset() in the fetch() method of my report and it doesn't work, it splits my report by invoices. 回答1: No, it is not possible. The reset method does the trick, but splits the report as you observed. And unless your lines exactly fit one line there is no way to precalculate

How to slice a data cube in Birt designer?

假如想象 提交于 2020-01-14 19:09:41
问题 I created a data cube in Birt designer with the following data : Measure : turnover Dimensions : product, location and time I have now a three-dimensional OLAP data cube I want to display in a two-dimensional array. My problem here is I don't know how to assign a constant value for one dimension (for example : product = "computer" or time = "2014") 回答1: There are a couple of ways to do this. In terms of performance, the most efficient one would be to add a parameter to the main dataset of the

TFS2010: Opening certain Excel reports gives error TF80076

江枫思渺然 提交于 2020-01-14 13:51:07
问题 When I try and open certain TFS2010 Excel reports I get the following error popup from Excel: TF80076: The data in the work item is not valid or you do not have permissions to modify the data. Please correct the problem and retry. This is then followed by the popup: TF208103: The initialization of the workbook to connect to Team Foundation Server was not successful. THe workbook will close.... etc. etc.. ... and Excel closes. The reports that throw this error include: Documents -> Samples and

Hide text field if subreport is empty

时光怂恿深爱的人放手 提交于 2020-01-14 12:55:33
问题 I am creating a report in Jasper with four parts. Each part consists of a text field as the header and a subreport. The subreport can be empty. If it is empty it is hidden using Remove Line When Blank . This works so far. Now, the corresponding header text field should be hidden too if the subreport is hidden. I have tried many things but couldn't come up with a solution. E.g. using Print When Expression : new Boolean ($P{otherField}.read() != -1) . This never showed the header. As well I

Creating a report with SSRS that iterates over a parameter

人走茶凉 提交于 2020-01-11 09:49:40
问题 I am modifying an existing report which is setup to let you view statistics per sales rep. You do this by changing the parameter sales rep in the report view. I need to modify the report so that it can display a page for each sales rep. This will then be exported to Excel with each sales rep statistics being displayed in a separate tab. I have researched this and found people talking about iterating over a report but I don't think that what they are referring too is what I am asking: http:/