business-intelligence

BI with Django?

ぃ、小莉子 提交于 2019-12-09 07:06:50
问题 Is there a way to develop Bi (Business Intelligence) solutions with Django? Therefore it should be possible to define models with more than one Datasource. Is anybody out there who has experienced BI with Django? How could it work ? 回答1: I'm not sure what your definition of BI is or why you assume that a BI solution requires more than one data source. In my experience, BI means statistical analysis of data. A reporting schema, using dimensional techniques, can be the basis for it. The data is

Getting biggest interval of rows with same value

冷暖自知 提交于 2019-12-08 04:28:27
问题 I have a table with three columns (lending_id int, installment_n int, status text) and I wonder how to retrieve the value (int) of the biggest gap of NOK (status) per lending_id. For the following example: lending_id, installment_n, status 32882, 1, OK 32882, 2, OK 32882, 3, OK 32882, 4, OK 32882, 5, OK 32882, 6, OK 32882, 7, OK 32882, 8, NOK 32882, 9, OK 32882, 10, OK 32882, 11, NOK 32882, 12, NOK 32882, 13, NOK 32882, 14, OK 32882, 15, OK 32882, 16, NOK 32882, 17, NOK 32882, 18, NOK 32882,

Data flow task executing successfully but not writing any rows to Excel file

北慕城南 提交于 2019-12-07 17:18:48
问题 I am working on SSIS package that is fetching data from SQL server and inserting into Excel file... in Data Flow Task i've used OLE Db source and Excel destination . After configuring OLE Db source i can preview the resulting row and even data flow task executing successfully without giving any error.. but not inserting any row.. 回答1: Have you tried writing to a flat (text) file first to be certain that data's coming out of your data flow task and going into the results? Be absolutely sure

Drill Through not working in SpagoBI server in birt report

有些话、适合烂在心里 提交于 2019-12-07 09:28:46
问题 This is the setting of the hyperlink in birt report The script used to compute the param is as follows: if (params["idContratto"].match(row["contract_number"].toString()) == null){ if (params["idContratto"].value == "abc"){ row["contract_number"].toString(); } else{ params["idContratto"].value + "," + row["contract_number"].toString(); } } else{ if (params["idContratto"].length == row["contract_number"].length){ ""; } else{ temp = params["idContratto"]; temp = temp.replace(row["contract

Pivot transformation using t-sql [closed]

江枫思渺然 提交于 2019-12-06 21:06:42
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . In SSIS there is a task called Pivot transformation that changes columns into rows, but how to do the same task in sql server using t-sql ? this is my sample table location product qty ----------------------- delhi PEPSI 100 GURGAON CAKE 200 NOIDA APPLE 150 delhi cake 250 so after the pivot transformation ON

Package Validation Error

 ̄綄美尐妖づ 提交于 2019-12-06 14:19:31
I'm trying to use a foreach loop container to import several excel files into a table, I specified the folder and the files I'm going to use (*.xls), after that I created a path variable then I went to the excel source connection and in the "Expression" property I selected the variable. I created the foreach container but, the excel source's connectionString only shows Provider=Microsoft.Jet.OLEDB.4.0; , so it means it's not taking the variable value. What can I do to solve that? Note: I'm using SQL Server 2012 ADDITIONAL INFORMATION: Error at Data Flow Task [Excel Source [20]]: SSIS Error

Java Business Intelligence framework with ad-hoc web reporting? [closed]

让人想犯罪 __ 提交于 2019-12-06 04:48:09
Closed. This question is off-topic . It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . I need a reporting framework that supports web views with ad-hoc reporting, as well as styled, canned PDF reports. My users will be non-power users, so I'll need to present something usable for the ad-hoc reporting. What's the best current solution in the java world? tim_yates There's a jasper reports plugin for grails Not used it yet myself tho... Candidates are Eclipse BIRT, JasperReports (has Grails plugin),

ssas dimension processing key not found error

久未见 提交于 2019-12-06 04:08:47
I have this strange case where I am trying to process a dimension, the data source is MSSQL and when I try to process this dimension I am getting this error Errors in the OLAP storage engine: The attribute key cannot be found when processing: Table: 'application', Column: 'Full_Name', Value: 'Mr Peter McDonald'. The attribute is 'Applicant Full Name'. Since I think I know what the problem is, I have set the case sensitive property for this column and I tried processing again and it's giving me the same result. when I query for the column using like, I get two records Peter McDonald Peter

Best Practise to populate Fact and Dimension Tables from Transactional Flat DB

断了今生、忘了曾经 提交于 2019-12-06 03:48:19
问题 I want to populate a star schema / cube in SSIS / SSAS. I prepared all my dimension tables and my fact table, primary keys etc. The source is a 'flat' (item level) table and my problem is now how to split it up and get it from one into the respective tables. I did a fair bit of googling but couldn't find a satisfying solution to the problem. One would imagine that this is a rather common problem/situation in BI development?! Thanks, alexl 回答1: For a start, it depends on whether you want to do

One or multiple fact tables?

╄→гoц情女王★ 提交于 2019-12-06 02:49:39
问题 I am trying to build a data mart. I have lot of dimensions, and couple of measures - facts. Every measure is connected to all dimensions in term of business. There is the standard approach that there will be one big fact table with all measures. But I have an idea: What If I have separate fact tables for each measure? What it will do with database performance, solution extensibility etc? EDIT::: there will be huge solution based on olap cubes in really complex corporate environment. So the