Autoexists
适用于: SQL Server Analysis Services Azure Analysis Services Fabric/Power BI Premium
“autoexists” 的概念将多维数据集空间限制为在多维数据集中实际存在的那些单元,而不是可能由于从同一层次结构创建属性层次结构成员的所有可能组合而存在的那些单元。 其原因在于,一个属性层次结构的成员不能与同一维度中其他属性层次结构的成员共存。 在 SELECT 语句中使用同一维度的两个或更多属性层次结构时,Analysis Services 会计算这些属性的表达式,以确保这些属性的成员得到适当限制,使它们满足所有其他属性的条件。
例如,假定您在处理来自 Geography 维度的属性。 如果有一个表达式返回 City 属性中的所有成员,另一个表达式将 Country 属性中的成员限制为欧洲所有国家/地区,则这将导致 City 成员仅限于属于欧洲国家/地区的那些城市。 其原因就在于 Analysis Services 的 autoexists 特性。 Autoexists 仅适用于同一维度中的属性,因为它试图阻止在一个属性表达式中排除的维度记录被包括在其他属性表达式中。 也可以将 Autoexists 理解为不同的属性表达式产生的维度行的交集。
单元存在性
以下单元始终存在:
在与同一维度中其他层次结构的成员相交时,每个层次结构的“(全部)”成员。
在与其非计算同级相交或者与其非计算同级的父级或子级相交时的计算成员。
提供不存在的单元
不存在的单元是系统为响应请求在多维数据集中不存在的单元的查询或计算而提供的单元。 例如,如果某多维数据集具有 City 属性层次结构、属于 Geography 维度的 Country 属性层次结构和 Internet Sales Amount 度量值,则此多维数据集的空间仅包含那些共存的成员。 例如,如果 City 属性层次结构包括城市纽约、伦敦、巴黎、东京和墨尔本;国家/地区属性层次结构包括美国、英国、法国、日本和澳大利亚的国家/地区;则多维数据集的空间不包括位于巴黎和美国交界处) 空间 (单元格。
当查询单元不存在时,不存在的单元返回空,即它们无法包含计算结果,并且您不能定义写入此空间的计算。 例如,下面的语句包含不存在的单元。
SELECT [Customer].[Gender].[Gender].Members ON COLUMNS,
{[Customer].[Customer].[Aaron A. Allen]
,[Customer].[Customer].[Abigail Clark]} ON ROWS
FROM [Adventure Works]
WHERE Measures.[Internet Sales Amount]
注意
此查询使用 Members (Set) (MDX) 函数返回列轴上 Gender 属性层次结构的成员集,并将此集与行轴上 Customer 属性层次结构的指定成员集相交。
执行前面的查询时,Aaron A. Allen 与 Female 相交处的单元将显示空。 同样,Abigail Clark 与 Male 相交处的单元也将显示空。 这些单元不存在并且不能包含值,但不存在的单元可出现在查询返回的结果中。
如果使用 Crossjoin (MDX) 函数返回同一维度中属性层次结构中的属性层次结构成员的叉积,自动共存将限制只返回那些实际存在的元组集,而不是返回整个笛卡尔乘积的元组。 例如,运行以下查询并检查其结果。
SELECT CROSSJOIN
(
{[Customer].[Country].[United States]},
[Customer].[State-Province].Members
) ON 0
FROM [Adventure Works]
WHERE Measures.[Internet Sales Amount]
注意
请注意 0 用于表示列轴的名称,它是列轴“axis(0)”的简称。
前面的查询仅为查询中每个属性层次结构的共存成员返回单元。 前面的查询还可以使用 * (Crossjoin) (MDX) 函数新的 * 变量来编写。
SELECT
[Customer].[Country].[United States] *
[Customer].[State-Province].Members
ON 0
FROM [Adventure Works]
WHERE Measures.[Internet Sales Amount]
前面的查询还可以通过以下方式来编写:
SELECT [Customer].[State-Province].Members
ON 0
FROM [Adventure Works]
WHERE (Measures.[Internet Sales Amount],
[Customer].[Country].[United States])
虽然结果集中的元数据将不同,但返回的单元值将是相同的。 例如,在前面的查询中,Country 层次结构已移到切片器轴(在 WHERE 子句中),因此没有显式显示在结果集中。
上述三个查询中的每一个都演示了SQL Server SQL Server Analysis Services中的自动存在行为的影响。
深度和浅表 Autoexists
Autoexists 可以深度或浅表的形式应用于表达式。 Deep Autoexists 意味着将对所有表达式进行计算,以便在应用了切片器表达式、轴中的嵌套 select 表达式等后到达可能的最深空间。 Shallow Autoexists 意味着在将当前表达式和这些结果传递到当前表达式之前对外部表达式进行计算。 默认设置为深度 autoexists。
下面的应用场景和示例将帮助阐明不同类型的 Autoexists。 在下面的示例中,将创建两个集:一个作为计算表达式,另一个作为常量表达式。
//Obtain the Top 10 best reseller selling products by Name
with member [Measures].[PCT Discount] AS '[Measures].[Discount Amount]/[Measures].[Reseller Sales Amount]', FORMAT_STRING = 'Percent'
set Top10SellingProducts as 'topcount([Product].[Model Name].children, 10, [Measures].[Reseller Sales Amount])'
set Preferred10Products as '
{[Product].[Model Name].&[Mountain-200],
[Product].[Model Name].&[Road-250],
[Product].[Model Name].&[Mountain-100],
[Product].[Model Name].&[Road-650],
[Product].[Model Name].&[Touring-1000],
[Product].[Model Name].&[Road-550-W],
[Product].[Model Name].&[Road-350-W],
[Product].[Model Name].&[HL Mountain Frame],
[Product].[Model Name].&[Road-150],
[Product].[Model Name].&[Touring-3000]
}'
select {[Measures].[Reseller Sales Amount], [Measures].[Discount Amount], [Measures].[PCT Discount]} on 0,
Top10SellingProducts on 1
from [Adventure Works]
获得的结果集如下:
Reseller Sales Amount | Discount Amount | PCT Discount | |
---|---|---|---|
Mountain-200 | $14,356,699.36 | $19,012.71 | 0.13% |
Road-250 | $9,377,457.68 | $4,032.47 | 0.04% |
Mountain-100 | $8,568,958.27 | $139,393.27 | 1.63% |
Road-650 | $7,442,141.81 | $39,698.30 | 0.53% |
Touring-1000 | $6,723,794.29 | $166,144.17 | 2.47% |
Road-550-W | $3,668,383.88 | $1,901.97 | 0.05% |
Road-350-W | $3,665,932.31 | $20,946.50 | 0.57% |
HL Mountain Frame | $3,365,069.27 | $174.11 | 0.01% |
Road-150 | $2,363,805.16 | $0.00 | 0.00% |
Touring-3000 | $2,046,508.26 | $79,582.15 | 3.89% |
获得的产品集似乎与 Preferred10Products 相同;因此,请验证 Preferred10Products 集:
with member [Measures].[PCT Discount] AS '[Measures].[Discount Amount]/[Measures].[Reseller Sales Amount]', FORMAT_STRING = 'Percent'
set Top10SellingProducts as 'topcount([Product].[Model Name].children, 10, [Measures].[Reseller Sales Amount])'
set Preferred10Products as '
{[Product].[Model Name].&[Mountain-200],
[Product].[Model Name].&[Road-250],
[Product].[Model Name].&[Mountain-100],
[Product].[Model Name].&[Road-650],
[Product].[Model Name].&[Touring-1000],
[Product].[Model Name].&[Road-550-W],
[Product].[Model Name].&[Road-350-W],
[Product].[Model Name].&[HL Mountain Frame],
[Product].[Model Name].&[Road-150],
[Product].[Model Name].&[Touring-3000]
}'
select {[Measures].[Reseller Sales Amount], [Measures].[Discount Amount], [Measures].[PCT Discount]} on 0,
Preferred10Products on 1
from [Adventure Works]
根据以下结果,两个产品集(Top10SellingProducts 和 Preferred10Products)是相同的
Reseller Sales Amount | Discount Amount | PCT Discount | |
---|---|---|---|
Mountain-200 | $14,356,699.36 | $19,012.71 | 0.13% |
Road-250 | $9,377,457.68 | $4,032.47 | 0.04% |
Mountain-100 | $8,568,958.27 | $139,393.27 | 1.63% |
Road-650 | $7,442,141.81 | $39,698.30 | 0.53% |
Touring-1000 | $6,723,794.29 | $166,144.17 | 2.47% |
Road-550-W | $3,668,383.88 | $1,901.97 | 0.05% |
Road-350-W | $3,665,932.31 | $20,946.50 | 0.57% |
HL Mountain Frame | $3,365,069.27 | $174.11 | 0.01% |
Road-150 | $2,363,805.16 | $0.00 | 0.00% |
Touring-3000 | $2,046,508.26 | $79,582.15 | 3.89% |
下面的示例将阐释深度 Autoexists 的概念。 在该示例中,我们将依据 [Product].[Product Line] 属性对 [Mountain] 组中的产品筛选 Top10SellingProducts。 请注意两个属性(slicer 和 axis)均属于同一维度 [Product]。
with member [Measures].[PCT Discount] AS '[Measures].[Discount Amount]/[Measures].[Reseller Sales Amount]', FORMAT_STRING = 'Percent'
set Top10SellingProducts as 'topcount([Product].[Model Name].children, 10, [Measures].[Reseller Sales Amount])'
// Preferred10Products set removed for clarity
select {[Measures].[Reseller Sales Amount], [Measures].[Discount Amount], [Measures].[PCT Discount]} on 0,
Top10SellingProducts on 1
from [Adventure Works]
where [Product].[Product Line].[Mountain]
产生以下结果集:
Reseller Sales Amount | Discount Amount | PCT Discount | |
---|---|---|---|
Mountain-200 | $14,356,699.36 | $19,012.71 | 0.13% |
Mountain-100 | $8,568,958.27 | $139,393.27 | 1.63% |
HL Mountain Frame | $3,365,069.27 | $174.11 | 0.01% |
Mountain-300 | $1,907,249.38 | $876.95 | 0.05% |
Mountain-500 | $1,067,327.31 | $17,266.09 | 1.62% |
Mountain-400-W | $592,450.05 | $303.49 | 0.05% |
LL Mountain Frame | $521,864.42 | $252.41 | 0.05% |
ML Mountain Frame-W | $482,953.16 | $206.95 | 0.04% |
ML Mountain Frame | $343,785.29 | $161.82 | 0.05% |
Women's Mountain Shorts | $260,304.09 | $6,675.56 | 2.56% |
在上面的结果集中,我们看到 Top10SellingProducts 列表中有七种新产品,并且 Mountain-200、Mountain-100 和 HL Mountain Frame 移到了列表顶部。 在前面的结果集中,这三个值是混杂的。
这称为深度 Autoexists,因为对 Top10SellingProducts 集进行计算以符合查询的切片条件。 深度 Autoexists 意味着将对所有表达式进行计算,以便在应用了切片器表达式、轴中的嵌套 select 表达式等后到达可能的最深空间。
不过,有人可能希望能够对与 Preferred10Products 等效的 Top10SellingProducts 进行分析,如下面的示例所示:
with member [Measures].[PCT Discount] AS '[Measures].[Discount Amount]/[Measures].[Reseller Sales Amount]', FORMAT_STRING = 'Percent'
set Top10SellingProducts as 'topcount([Product].[Model Name].children, 10, [Measures].[Reseller Sales Amount])'
set Preferred10Products as '
{[Product].[Model Name].&[Mountain-200],
[Product].[Model Name].&[Road-250],
[Product].[Model Name].&[Mountain-100],
[Product].[Model Name].&[Road-650],
[Product].[Model Name].&[Touring-1000],
[Product].[Model Name].&[Road-550-W],
[Product].[Model Name].&[Road-350-W],
[Product].[Model Name].&[HL Mountain Frame],
[Product].[Model Name].&[Road-150],
[Product].[Model Name].&[Touring-3000]
}'
select {[Measures].[Reseller Sales Amount], [Measures].[Discount Amount], [Measures].[PCT Discount]} on 0,
Preferred10Products on 1
from [Adventure Works]
where [Product].[Product Line].[Mountain]
产生以下结果集:
Reseller Sales Amount | Discount Amount | PCT Discount | |
---|---|---|---|
Mountain-200 | $14,356,699.36 | $19,012.71 | 0.13% |
Mountain-100 | $8,568,958.27 | $139,393.27 | 1.63% |
HL Mountain Frame | $3,365,069.27 | $174.11 | 0.01% |
在上面的示例中,与预期的一样,切片生成的结果仅包含 Preferred10Products 中属于 [Product].[Product Line] 中的 [Mountain] 组的那些产品,因为 Preferred10Products 是一个常量表达式。
此结果集还可以理解为浅表 Autoexists。 这是因为该表达式是在切片子句之前计算的。 在上面的示例中,出于演示目的以介绍这一概念,该表达式是一个常量表达式。
可以使用 Autoexists 连接字符串属性在会话级修改 Autoexists 的行为。 下面的示例先打开一个新会话,然后将 Autoexists=3 属性添加到连接字符串。 必须打开新连接才能执行该示例。 在与 Autoexist 设置建立连接后,设置将一直有效,直到该连接结束。
with member [Measures].[PCT Discount] AS '[Measures].[Discount Amount]/[Measures].[Reseller Sales Amount]', FORMAT_STRING = 'Percent'
set Top10SellingProducts as 'topcount([Product].[Model Name].children, 10, [Measures].[Reseller Sales Amount])'
//Preferred10Products set removed for clarity
select {[Measures].[Reseller Sales Amount], [Measures].[Discount Amount], [Measures].[PCT Discount]} on 0,
Top10SellingProducts on 1
from [Adventure Works]
where [Product].[Product Line].[Mountain]
下面的结果集现在显示 Autoexists 的浅表行为。
Reseller Sales Amount | Discount Amount | PCT Discount | |
---|---|---|---|
Mountain-200 | $14,356,699.36 | $19,012.71 | 0.13% |
Mountain-100 | $8,568,958.27 | $139,393.27 | 1.63% |
HL Mountain Frame | $3,365,069.27 | $174.11 | 0.01% |
可以使用连接字符串中的 AUTOEXISTS=[1|2|3] 参数修改自动存在行为;有关参数用法,请参阅支持的 XMLA 属性 (XMLA) 和 ConnectionString 。
另请参阅
MDX 中的重要概念 (Analysis Services)
多维数据集空间
元组
使用成员、元组和集 (MDX)
直观合计和非直观合计
MDX 语言参考 (MDX)
多维表达式 (MDX) 参考