persistent class INFORMATION.SCHEMA.FOREIGNSERVERS
extends %Library.Persistent
SQL Table Name: FOREIGN_SERVERS
This table has one row for each Foreign Server the users is privileged for in the current namespace
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 ClassName
as %String(MAXLEN=256) [ SqlFieldName = CLASSNAME,Required ];
property Description
as %String(MAXLEN=256) [ Calculated,SqlFieldName = DESCRIPTION ];
property ForeignDataWrapper
as %String(MAXLEN=256) [ Calculated,SqlFieldName = FOREIGN_DATA_WRAPPER ];
property Owner
as %String(MAXLEN=256) [ Calculated,SqlFieldName = OWNER ];
property ParameterString
as %String(MAXLEN=3200) [ Calculated,SqlFieldName = PARAMETERS ];
property ServerName
as %String(COLLATION="UPPER",MAXLEN=128) [ SqlFieldName = SERVER_NAME,Required ];
property ServerSchema
as %String(COLLATION="UPPER",MAXLEN=128) [ SqlFieldName = SERVER_SCHEMA,Required ];