Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » SQL Anywhere Server - SQL Reference » Views » System views in Sybase Central

SYSCAPABILITYNAME system view Next Page

SYSCHECK system view


Each row in the SYSCHECK system view provides the definition for a named check constraint in a table. The underlying system table for this view is ISYSCHECK.

Columns
Column nameColumn typeColumn constraint
check_idUNSIGNED INTNOT NULL
check_defnLONG VARCHARNOT NULL

check_id    A number that uniquely identifies the constraint in the database.

check_defn    The CHECK expression.

Constraints on underlying system table

PRIMARY KEY (check_id)

FOREIGN KEY (check_id) references SYS.ISYSCONSTRAINT (constraint_id)