Each row of the SYSVIEWS view describes one view, including its view definition.
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"."SYSVIEWS"( vcreator, viewname,viewtext) as select u.user_name,t.table_name,t.view_def from SYS.SYSTABLE as t join SYS.ISYSUSER as u on(u.user_id = t.creator) where t.table_type = 'VIEW'
Column name | Column type | Column constraint |
---|---|---|
vcreator | CHAR (128) | NOT NULL |
viewname | CHAR(128) | NOT NULL |
viewtext | LONG VARCHAR |