persistent class %BI.WebSCModule
extends %Persistent
parameter EXTENTSIZE = 200;
The EXTENTSIZE parameter is used to inform the Caché 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 { default = 1000000; }
property Descr
as %String(MAXLEN=2000);
property Groupings
as array of %String(TRUNCATE=1);
property Name
as %String(MAXLEN=2000,TRUNCATE=1) [ Required ];
property Param
as %String(MAXLEN=2000,TRUNCATE=1);
property Param2
as %String(MAXLEN=2000,TRUNCATE=1);
property Type
as %String(TRUNCATE=1) [ Required ];
query ListAll()
SQL Query
:
SELECT ID,Name,Param,Type,Param2 FROM %BI.WebSCModule ORDER BY Name