SYSREMARK system view

Each row in the SYSREMARK system view describes a remark (or comment) for an object. The underlying system table for this view is ISYSREMARK.

Column Data type Description
object_id UNSIGNED BIGINT The internal ID for the object that has an associated remark.
remarks LONG VARCHAR The remark or comment associated with the object.

Constraints on underlying system table

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