persistent class EnsLib.XML.SearchTable
extends %Persistent, Ens.VDoc.XMLSearchTable
Defines a set of properties derived from XML Stream objects embedded in class 'Ens.StreamContainer'
that can be used in SQL to locate and join to XML documents of interest.
parameter EXTENTSIZE = 4000000;
The EXTENTSIZE parameter is used to inform the SQL Query Optimizer
of the approximate number of instances in the extent containing instances of this class.
For example, a class that expects to have about 1,000,000 instances should define:
parameter EXTENTSIZE = 1000000;
index (indexDocId on DocId,PropId,PropValue) [Unique];
Index must be re-declared in each non-Abstract, %Persistent subclass
index (indexValue on PropId,PropValue,DocId) [IdKey,Unique];
Index must be re-declared in each non-Abstract, %Persistent subclass