SYSSOURCE system view

Each row in the SYSSOURCE system view contains the source code, if applicable, for an object listed in the SYSOBJECT system view. The underlying system table for this view is ISYSSOURCE.

Column name Data type Description
object_id UNSIGNED BIGINT The internal ID for the object whose source code is being defined.
source LONG VARCHAR This column contains the original source code for the object if the preserve_source_format database option is On when the object was created.

Constraints on underlying system table

PRIMARY KEY (object_id)
FOREIGN KEY (object_id) REFERENCES SYS.ISYSOBJECT (object_id) MATCH UNIQUE FULL