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

SYSREMOTEOPTION2 consolidated view Next Page

SYSREMOTEOPTIONS consolidated view


Each row of the SYSREMOTEOPTIONS view describes the values of a SQL Remote message link parameter. Some columns in this view contain potentially sensitive data. For that reason, access to this view is restricted to users with DBA authority. The SYSREMOTEOPTION2 view provides public access to the insensitive data.

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"."SYSREMOTEOPTIONS"
  as select srt.type_name,
    sup.user_name,
    srot."option",
    SYS.HIDE_FROM_NON_DBA(sro.setting) as setting from
    SYS.ISYSREMOTETYPE as srt,
    SYS.ISYSREMOTEOPTIONTYPE as srot,
    SYS.ISYSREMOTEOPTION as sro,
    SYS.ISYSUSER as sup where
    srt.type_id = srot.type_id and
    srot.option_id = sro.option_id and
    sro.user_id = sup.user_id
See also