persistent class INFORMATION.SCHEMA.COLUMNHISTOGRAMS
extends %Persistent
SQL Table Name: COLUMN_HISTOGRAMS
parameter READONLY = 1;
READONLY = 1 means that objects can be created, opened but not saved or deleted.
Tables are projected to SQL as READONLY.
property BUCKETPOSITION
as %Integer [ SqlFieldName = BUCKET_POSITION,Required ];
property BUCKETWIDTH
as %Float [ SqlFieldName = BUCKET_WIDTH ];
property COLUMNNAME
as %String(COLLATION="Upper",MAXLEN=128) [ SqlFieldName = COLUMN_NAME,Required ];
Name of the column.
property INTERPOLATABLE
as %Boolean;
property NULLBUCKETS
as %Integer [ SqlFieldName = NULL_BUCKETS ];
property ORDINALPOSITION
as %Integer [ SqlFieldName = ORDINAL_POSITION,Required ];
Column's ordinal position within the table.
property PERCENTILE
as %Float;
property TABLECATALOG
as %String(MAXLEN=128) [ Calculated,SqlFieldName = TABLE_CATALOG ];
Table qualifier - always NULL in InterSystems IRIS
property TABLENAME
as %String(COLLATION="Upper",MAXLEN=128) [ SqlFieldName = TABLE_NAME,Required ];
Name of the table.
property TABLESCHEMA
as %String(COLLATION="Upper",MAXLEN=128) [ SqlFieldName = TABLE_SCHEMA,Required ];
Name of schema that contains the table.
property VALUE
as %String;