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 » Consolidated views

SYSARTICLES consolidated view Next Page

SYSCAPABILITIES consolidated view


Each row in the SYSCAPABILITIES view describes a capability. This view gets its data from the ISYSCAPABILITY and ISYSCAPABILITYNAME system tables.

The tables and columns that make up this view are provided in the SQL statement below. To learn more about a particular table or column, use the links provided beneath the view definition.

ALTER VIEW "SYS"."SYSCAPABILITIES"
  as select t1.capid,t1.srvid,t2.capname,t1.capvalue from
    SYS.ISYSCAPABILITY as t1 join
    SYS.ISYSCAPABILITYNAME as t2 on t1.capid = t2.capid
See also