Each row of the SYSREMOTEOPTIONS view describes the values of a SQL Remote message link parameter.
Values in the setting column are hidden from users that do not have the SELECT ANY TABLE system privilege. 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 |
![]() |
Discuss this page in DocCommentXchange.
|
Copyright © 2014, SAP AG or an SAP affiliate company. - SAP Sybase SQL Anywhere 16.0 |