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

SYSREMOTEUSERS consolidated view Next Page

SYSSUBSCRIPTIONS consolidated view


Each row describes a subscription from one user ID (which must have REMOTE permissions) to one publication.

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"."SYSSUBSCRIPTIONS"
  as select p.publication_name,u.user_name,s.subscribe_by,
    s.created,s.started from
    SYS.SYSSUBSCRIPTION as s key join
    SYS.SYSPUBLICATION as p join
    SYS.SYSUSERPERM as u on u.user_id = s.user_id
See also