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

SYSMVOPTIONNAME system view Next Page

SYSOBJECT system view


Each row in the SYSOBJECT system view describes a database object. The underlying system table for this view is ISYSOBJECT.

Columns
Column name Column type Column constraint
object_id UNSIGNED BIGINT NOT NULL
status TINYINT NOT NULL
object_type TINYINTNOT NULL
creation_timeTIMESTAMPNOT NULL

object_id    The internal ID for the object, uniquely identifying it in the database.

status    The status of the object. Values include:

object_type    Type of object. Values include:

ValueMeaning
1Table
2View
3Materialized view
4Column
5Index
6Procedure
7Trigger
8Event
9User
10Publication
11Remote type
12Login mapping
13JAR
14Java class
16Service

creation_time    The date and time when the object was created.

Constraints on underlying system table

PRIMARY KEY (object_id)