Class Reference
IRIS for UNIX 2024.1.2
InterSystems: The power behind what matters   
Documentation  Search
  [USER] >  [INFORMATION] >  [SCHEMA] >  [TABLES]
Private  Storage   

persistent class INFORMATION.SCHEMA.TABLES extends %Library.Persistent

SQL Table Name: TABLES

Returns one row for each table in the current namespace for which the current user has privileges.

Inventory

Parameters Properties Methods Queries Indices ForeignKeys Triggers
1 18


Summary

Properties
Classname Description ISINSERTABLEINTO ISSHARDED
ISTYPED Owner REFERENCEGENERATION SELFREFERENCINGCOLUMNNAME
TABLECATALOG TABLENAME TABLESCHEMA TABLETYPE
USERDEFINEDTYPECATALOG USERDEFINEDTYPENAME USERDEFINEDTYPESCHEMA

Methods
%AddToSaveSet %AddToSyncSet %BuildDeferredIndices %BuildIndicesAsync
%BuildIndicesAsyncResponse %CheckConstraints %CheckConstraintsForExtent %ClassIsLatestVersion
%ClassName %ComposeOid %ConstructClone %Delete
%DeleteExtent %DeleteId %DispatchClassMethod %DispatchGetModified
%DispatchGetProperty %DispatchMethod %DispatchSetModified %DispatchSetMultidimProperty
%DispatchSetProperty %Exists %ExistsId %Extends
%GUID %GUIDSet %GetLock %GetParameter
%GetSwizzleObject %Id %IsA %IsModified
%IsNull %KillExtent %LockExtent %LockId
%New %NormalizeObject %ObjectIsNull %ObjectModified
%Oid %OnBeforeAddToSync %OnDeleteFinally %OnDetermineClass
%OnOpenFinally %OnSaveFinally %Open %OpenId
%OriginalNamespace %PackageName %PurgeIndices %Reload
%RemoveFromSaveSet %ResolveConcurrencyConflict %RollBack %Save
%SaveDirect %SerializeObject %SetModified %SortBegin
%SortEnd %SyncObjectIn %SyncTransport %UnlockExtent
%UnlockId %ValidateIndices %ValidateObject %ValidateTable


Parameters

• parameter READONLY = 1;
READONLY = 1 means that objects can be created, opened but not saved or deleted. Tables are projected to SQL as READONLY.

Properties

• property Classname as %String(MAXLEN=254) [ Calculated,SqlFieldName = CLASSNAME ];
Name of the class that projected this table
• property Description as %String(MAXLEN=254) [ Calculated,SqlFieldName = DESCRIPTION ];
Table's description
• property ISINSERTABLEINTO as %String(MAXLEN=3) [ Calculated,SqlFieldName = IS_INSERTABLE_INTO,Required ];
The values of IS_INSERTABLE_INTO have the following meanings:
  • YES - The table being described is insertable-into.
  • NO - The table being described is not insertable-into.
• property ISSHARDED as %String(MAXLEN=3) [ Calculated,SqlFieldName = IS_SHARDED ];
• property ISTYPED as %String(MAXLEN=3) [ Calculated,SqlFieldName = IS_TYPED ];
From the standard:
	A table RT whose row type is derived from a structured type ST is called a typed table. Only a base table or a view can be a typed table. 
	A typed table has columns corresponding, in name and declared type, to every attribute of ST and one other column REFC that is the self-referencing column of RT; 
	let REFCN be the  of REFC. The declared type of REFC is necessarily REF(ST) and the nullability characteristic of REFC is known not nullable. 
	If RT is a base table, then the table constraint "UNIQUE(REFCN)" is implicit in the definition of RT. A typed table is called a referenceable table. 
	A self-referencing column cannot be updated. Its value is determined during the insertion of a row into the referenceable table. 
	The value of a system-generated self-referencing column and a derived self-referencing column is automatically generated when the row is inserted into the referenceable table. 
	The value of a user-generated self-referencing column is supplied as part of the candidate row to be inserted into the referenceable table.
InterSystems IRIS does not currently support typed tables, therefore IS_TYPED is always NO.
• property Owner as %String(MAXLEN=254) [ Calculated,SqlFieldName = OWNER ];
Table's owner
• property REFERENCEGENERATION as %String(MAXLEN=16,VALUELIST=",SYSTEM GENERATED,USER GENERATED,DERIVED") [ Calculated,SqlFieldName = REFERENCE_GENERATION ];
From the Standard:
	The values of REFERENCE_GENERATION have the following meanings:
		SYSTEM GENERATED - The values of the self-referencing column of the table are generated by the SQL-server.
		USER GENERATED   - The values of the self-referencing column of the table are generated by the user.
		DERIVED          - The values of the self-referencing column of the table are generated from columns of the table.
		null             - The table being described does not have a self-referencing column.
Since InterSystems IRIS does not support self-referencing columns, REFERENCE_GENERATION is always null.
• property SELFREFERENCINGCOLUMNNAME as %String(MAXLEN=3) [ Calculated,SqlFieldName = SELF_REFERENCING_COLUMN_NAME ];
From the standard:
	The value of SELF_REFERENCING_COLUMN_NAME is the name of the self-referencing column of the table, if the table is a typed table. 
		Otherwise, the value of SELF_REFERENCING_COLUMN_NAME is the null value.
Since InterSystems IRIS does not currently support typed table (see IS_TYPED), SELF_REFERENCING_COLUMN_NAME is always NULL
• 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 TABLETYPE as %String(COLLATION="SqlUpper",MAXLEN=16,VALUELIST=",BASE TABLE,VIEW,GLOBAL TEMPORARY,LOCAL TEMPORARY,SYSTEM TABLE,SYSTEM VIEW,FOREIGN TABLE") [ SqlFieldName = TABLE_TYPE,Required ];
The values of TABLE_TYPE have the following meanings:
  • BASE TABLE - The table being described is a persistent base table.
  • SYSTEM TABLE - The table being described is a system persistent base table.
  • FOREIGN TABLE - The table being described is a foreign table, projecting data external to IRIS.
  • VIEW - The table being described is a viewed table.
  • SYSTEM VIEW - The table being described is a viewed table.
  • GLOBAL TEMPORARY - The table being described is a global temporary table.
  • LOCAL TEMPORARY - The table being described is a created local temporary table.
• property USERDEFINEDTYPECATALOG as %String(MAXLEN=3) [ Calculated,SqlFieldName = USER_DEFINED_TYPE_CATALOG ];
From the standard:
	If the table being described is a table of a structured type TY, then the values of USER_DEFINED_TYPE_CATALOG, USER_DEFINED_TYPE_SCHEMA, and USER_DEFINED_TYPE_NAME 
	are the fully qualified name of TY; otherwise, the values of USER_DEFINED_TYPE_CATALOG, USER_DEFINED_TYPE_SCHEMA, and USER_DEFINED_TYPE_NAME are the null value.
For InterSystems IRIS, USER_DEFINED_TYPE_CATALOG is always NULL.
• property USERDEFINEDTYPENAME as %String(MAXLEN=3) [ Calculated,SqlFieldName = USER_DEFINED_TYPE_NAME ];
For InterSystems IRIS, USER_DEFINED_TYPE_NAME is always NULL.
• property USERDEFINEDTYPESCHEMA as %String(MAXLEN=3) [ Calculated,SqlFieldName = USER_DEFINED_TYPE_SCHEMA ];
For InterSystems IRIS, USER_DEFINED_TYPE_SCHEMA is always NULL.


Copyright (c) 2025 by InterSystems Corporation. Cambridge, Massachusetts, U.S.A. All rights reserved. Confidential property of InterSystems Corporation.