olap-cube

MDX Statement Returning Nothing

北城余情 提交于 2019-12-11 04:55:19
问题 I have a Dimension called ExDimension with 1 single attribute called ExAttribute . I currently have 2 members in that dimension along with the unknownmember with data for it. When I run the following MDX, I get nothing back and I don't understand why. Can anyone give me a direction on where to look? SELECT { [ExDimension].[ExAttribute].CHILDREN } DIMENSION PROPERTIES [ExDimension].[ExAttribute].[Attribute Code], [ExDimension].[ExAttribute].[Company], [ExDimension].[ExAttribute].[Is Current],

How to get back aggregate values across 2 dimensions using Python Cubes?

偶尔善良 提交于 2019-12-10 21:19:08
问题 Situation Using Python 3, Django 1.9, Cubes 1.1, and Postgres 9.5. These are my datatables in pictorial form: The same in text format: Store table ------------------------------ | id | code | address | |-----|------|---------------| | 1 | S1 | Kings Row | | 2 | S2 | Queens Street | | 3 | S3 | Jacks Place | | 4 | S4 | Diamonds Alley| | 5 | S5 | Hearts Road | ------------------------------ Product table ------------------------------ | id | code | name | |-----|------|---------------| | 1 | P1

How to calculate the likely size of an OLAP cube

冷暖自知 提交于 2019-12-10 17:09:26
问题 Does anyone know a method to use to get a rough size of an OLAP cube based on a star schema data warehouse. Something based on the number of dimensions, the number of records in the dimension tables and the number of fact records and finally the number of aggregations or distinct records etc.. The database I am looking at has a fact table of over 20 billion rows and a few dimension tables of 20 million, 70 million and 1.3 billion rows. Thanks Nicholas 回答1: I can see some roadblocks to

Hadoop connectivity with SAS

烂漫一生 提交于 2019-12-08 01:20:31
问题 I want to use SAS/ACESS 9.3M2 Interface for connecting sas with my Hive. My question is, whether sas imports hive cubes into sas environment and queries there? or, It again hits hive for the purpose of reporting so that it runs MR which degrades my reporting performance to more than 2-4 secs. If it imports hive tables to its environment what would be its performance when compared to normal sql cubes? I am totally new to sas i want my reports generated with in 2-4 secs where my aggregated data

Connecting to Analysis Services from R or Nodejs

混江龙づ霸主 提交于 2019-12-07 09:38:56
问题 I am trying to connect Analysis services from either through R or Nodejs. For R, I have found the following library: https://github.com/overcoil/X4R For Nodejs, I have found the following library: https://github.com/rpbouman/xmla4js Analysis Services Server is external. It is not in my local machine. Currently I am able to connect it successfully from Excel using both Windows and basic authentication (username/password). For accessing it through R or nodejs, in the following link it is said I

SSAS cube with multiple DB

让人想犯罪 __ 提交于 2019-12-07 00:37:41
问题 I have 3 databases with the same structure, but different data, since they are from different clients. Now, I have an existing SSAS project. Its Data Source Views, Cubes and Dimensions can only use or access one DB. What I want is to be able to use multiple databases with the same structure, and create a cube using them. Each client must also be able to use the cube, but they can only see their own data. Are these possible? Can you please provide insights and some useful references? 回答1: Easy

Calculated measure/dimension

你。 提交于 2019-12-06 12:02:40
I'm relatively new to MDX and am trying to accomplish what I think should be an easy thing, but I haven't found any solution. I have a sales cube and one of the measure is profit which can be negative or positive. I want to get one measure which is effectively the sum of positive profit, i.e. only include in the new measure those profit numbers that have a positive profit. The trick here is this is on the row detail level and something like WITH MEMBER Measures.PositivePNL as IIF (Measures.PNL > 0, Measures.PNL,0) doesn't work as that only works with the aggregate number I should have

Querying Oracle 11g multidimensional cube from sqldeveloper

↘锁芯ラ 提交于 2019-12-06 11:39:00
Im new to oracle multidimensional models... I have followed the "Creating a Multidimensional Model" 15 min Oracle tutorial. Tutorial Link Note: This tutorial use sql developer data modeler. I would like to know how to query the created data cube using SQL Developer (I.E. using regular SQL DML statements). Every time I look for information online I end up getting links on how to use the Oracle Analytic Workspace Manager. Why? I would like to just build the cube and query it without having to make use of the Oracle Analytic Workspace Manager. I would appreciate if somone could let me know if I

Can OLAP CUBE be done in HBase?

馋奶兔 提交于 2019-12-04 12:20:04
问题 Is there any way to create CUBE DIMENSIONS in HBase or OLAP with it? I want to create CUBE DIMENSIONS kind of application with my HBASE or HIVE and connect that with SSAS for reporting purpose, is that possible? If soo please guide me with some links and codes. I have tried to create cube views in hive and i want to know whether that is possible with HBase. Thanks... 回答1: It is quite possible. In fact several attempts have been made in recent past towards the same. See HBase-Lattice and

Can OLAP CUBE be done in HBase?

好久不见. 提交于 2019-12-03 07:35:44
Is there any way to create CUBE DIMENSIONS in HBase or OLAP with it? I want to create CUBE DIMENSIONS kind of application with my HBASE or HIVE and connect that with SSAS for reporting purpose, is that possible? If soo please guide me with some links and codes. I have tried to create cube views in hive and i want to know whether that is possible with HBase. Thanks... Tariq It is quite possible. In fact several attempts have been made in recent past towards the same. See HBase-Lattice and urbanairship datacube , for example. You might also find this presentation helpful, which talks about Low