CREATED Table

This table exposes all the objects that were created during the session. The following table describes the columns in the CREATED table:

Column Name

Data Type

Description

ID@

INTEGER

The ID of the object in the model. This is the short ID of an object, which is unique in the model, but may change from session to session.

TYPE@

INTEGER

The class ID of the object.

NAME

VARCHAR

The name of the object. For a dual object, this will be the logical name.

OWNER_PATH

VARCHAR

A period-separated list of the ownership chain for the object.

You can use a query similar to the following to see all the objects created in the session:

SELECT *
FROM AL.CREATED

Back to Top