ESS_DIMSTATS_T

This is a Dimension Statistical Structure used to get information about a specific database dimension. Fields in this structure cannot be modified using the API. An array of these structures is included at the end of the ESS_DBSTATS_T structure to provide information about each dimension in the database. The fields are:

typedef struct ESS_DIMSTATS_T
{
   ESS_MBRNAME_T     DimName;           
   ESS_USHORT_T      DimType;           
   ESS_ULONG_T       DeclaredDimSize;   
   ESS_ULONG_T       ActualDimSize;     
} ESS_DIMSTATS_T, *ESS_PDIMSTATS_T;
Data TypeFieldDescription
ESS_MBRNAME_TDimNameThe dimension member name
ESS_USHORT_TDimTypeThe dimension type (sparse or dense). This field can contain the following values:
  • ESS_DIMTYPE_SPARSE

  • ESS_DIMTYPE_DENSE

ESS_ULONG_TDeclaredDimSizeThe declared dimension size (the number of members declared in the specified dimension, including any label only or shared members in that dimension)
ESS_ULONG_TActualDimSizeThe actual dimension size (the number of members in the specified dimension, excluding any label only or shared members in that dimension)