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. |
PRIMARY KEY (object_id)
FOREIGN KEY (object_id) references SYS.ISYSOBJECT (object_id) MATCH UNIQUE FULL
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |