abstract persistent class %DeepSee.ListingTable
extends %Persistent
Base class for all DeepSee listing tables.
Listing tables are used to hold the set of fact IDs when drilling through
a cube to generate a listing.
parameter CUBENAME;
Name of the cube that created this listing table.
parameter MANAGEDEXTENT = 0;
Turn off extent management for listing tables.
property queryKey
as %String(MAXLEN=255) [ SqlFieldName = _DSqueryKey ];
Key for the DRILLTHROUGH query that populated this record.
property sourceId
as %String(MAXLEN=255) [ SqlFieldName = _DSsourceId ];
Id in the source data table.
index (ID on queryKey,sourceId) [IdKey];