Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 » SQL Anywhere Server - SQL Reference » System Objects » Views » Compatibility views

 

SYSUSERLIST compatibility view (deprecated)

The SYSUSERAUTH view is provided for compatibility with older versions of SQL Anywhere.

Each row of the SYSUSERLIST view describes a user, without exposing their user_id and password. Each user is identified by their user name.

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"."SYSUSERLIST"( 
      name,
      resourceauth,
      dbaauth,
      scheduleauth,user_group ) 
  as select SYSUSERPERM.user_name,
            SYSUSERPERM.resourceauth,
            SYSUSERPERM.dbaauth,
            SYSUSERPERM.scheduleauth,
            SYSUSERPERM.user_group
    from SYS.SYSUSERPERM;
See also