NonEmptySubset

Given an input set, NonEmptySubset returns a subset of that input set in which all tuples evaluate to nonempty. An optional value expression may be specified for the nonempty check.

This function can help optimize queries that are based on a large set for which the set of nonempty combinations is known to be small. NonEmptySubset reduces the size of the set in the presense of a metric; for example, you might request the nonempty subset of descendants for specific Units.

NonEmptySubset is used to reduce the size of a set before a subsequent analytical retrieval.

Syntax

NonEmptySubset (set [, value_expression [, dimension...]])
ParameterDescription

set

The set to reduce

value_expression

A value expression--ideally, a stored member or a simple formula. For each tuple in set, if value_expression is nonempty, the tuple is returned as part of the subset. Otherwise, it is removed.

dimension

One or more (comma-separated) dimensions from which to return the non-empty subset

Notes

Value_expression, if used, should be a stored member or simple formula. If value_expression is a complex formula, the retrieval of the nonempty subset is not optimized.

Example

The following example gets the bottom 10 products in terms of Units (items per package), and then returns the CrossJoin of that set and the level 0 members (zip codes) of [Albany - NY].

WITH SET Bottom_10 
AS '
 BottomCount(
  Leaves(Products),
  10,
  Units
 )
'
SELECT 
 {Units} 
ON COLUMNS,
 NonEmptySubset(CrossJoin(Bottom_10, Leaves([Albany - NY])))
ON ROWS
FROM Asosamp.Sample

This query returns the following grid:

(axis)Items Per Package
Digital Cameras,122014
Camcorders,122013
Photo Printers, 122012
Digital Recorders, 122012
Desktops,122013
Digital Cameras,122125
Camcorders,122122
Photo Printers, 122123
Flat Panel, 122121
HDTV,122121
Home Theater, 122121
Desktops, 122122
Notebooks,122121
Digital Cameras,122231
Camcorders,122231
Photo Printers,122234
HTDV,122231
Notebooks,122231
Camcorders,122294
HDTV,122291
Home Theater,122293
Desktops,122291
Digital Cameras,122492
Photo Printers,122493
Projection TVs,122491
HDTV,122492
Home Theater,122491
Digital Recorders,122491
Notebooks,122491
Camcorders,122572
Photo Printers,122574
Projection TVs,122572
HDTV,122571
Home Theater,122573
Digital Recorders,122571