zoukankan      html  css  js  c++  java
  • SSAS几个名词

    度量维度(measures group)

            在数据方中的一些概念如维度(Dimension),度量(Measure),度量组(measure group),层次(hierarchy),级别(level)是很容易理解的,有个概念 度量维度(measures group)让人理解起来非常困难。
            MSDN的解释如下,"A measures dimension is the dimension that contains all of the measures in a cube. A measures dimension is a special type of dimension in which the members are typically aggregated (generally by sum or by count) based on the current member of each dimension attribute with which a specified measure exists"
            仔细研究以后发现,其实此处的度量维度就是指所有的度量,换句话说度量被当成了一种特殊的维度,这个维度如果有层次结构的话,他的层次结构也只能有一个级别,只所以混淆是因为它也是一种维度,不过是特殊的维度。
     
    http://www.cnblogs.com/anshangcun/archive/2007/10/30/943360.html
     
    度量值组
    度量值组 (Measure Group)“度量值组”是 SQL Server Analysis Services 中一个多维数据集的相关度量值集合(通常是来自同一事实数据表...
     
    -------------------
      A measure represents a column that contains quantifiable data, usually numeric, that can be aggregated. A measure is generally mapped to a column in a fact table. 
      Attribute columns from dimension tables can be used to define measures, but such measures are typically semiadditive or nonadditive in terms of their aggregation behavior. 
      You can also define a measure as a calculated member by using a Multidimensional Expressions (MDX) to provide a calculated value for a measure based on other measures in the cube. 

    Measure Groups
      In a cube, measures are grouped by their underlying fact tables into measure groups. Measure groups are used to associate dimensions with measures. 

      The fact table contains two basic types of columns: attribute columns and measure columns. Attribute columns are used to create foreign key relationships to dimension tables, so that the quantifiable data in the measure columns can be organized by the data contained in the dimension tables.Attribute columns are also used to define the granularity of a fact table and its measure group.

    Granularity
      Granularity refers to the level of detail supported by a fact table. 
      The granularity of a measure group can never be set finer than the lowest level of the dimension from which the measure group is viewed, but the granularity can be made coarser by using additional attributes. 

    Aggregate Functions
      When a dimension is used to organize measures in a measure group, the measure is summarized along the hierarchies contained in that dimension. The summation behavior depends on the aggregate function specified for the measure.
     
    http://www.cnblogs.com/csgashine/articles/559377.html
     
     
     
     
  • 相关阅读:
    【作业】Python
    【作业】判断某个数是否是素数,返回结果
    【案例】Python之列表反转
    Python模块
    【作业】Python-数据转换:将列表["mo","deng","ge"]和[1,2,3] 转换成[("mo",1),("deng",2),("ge",3)]
    【个人笔记】Python-zip()函数
    【作业】Python-数据转换:将列表[3,7,0,5,1,8]中大于5元素置为0,小于5的元素置为1
    【作业】Python-将元组(1,2,3) 和集合{"four",5,6}合成一个列表
    【作业】Python-函数封装:交换两个变量的值
    【个人笔记】Python-sorted()函数
  • 原文地址:https://www.cnblogs.com/taoyizhuoma/p/6009876.html
Copyright © 2011-2022 走看看