ABSTRACT_TYPE Table

The ABSTRACT_TYPE table contains rows for each entry in the OBJECT_TYPE and the PROPERTY_TYPE table. The following table describes the columns in the ABSTRACT_TYPE table:

Column Name

Data Type

Description

ID@

INTEGER

The ID of the object in the model. Though this is a short ID, it never changes.

TYPE@

INTEGER

The class ID of the object.

NAME

VARCHAR

The name of the type.

Use a query similar to the following to show all the class names that are associated with the types used to define the M0 schema:

SELECT ID@, NAME
FROM M1.ABSTRACT_TYPE
ORDER BY 1

Back to Top