Entering content frame

INSERT Privilege for the Owner of the View Table 

The owner of the view table (see CREATE VIEW statement) has the INSERT privilege. This means that he or she can specify the view table as the insert table in the INSERT statement, if the following conditions are satisfied:

·        The view table can be updated (updateable view table).

·        The owner of the view table has the INSERT privilege for all tables in the FROM clause of the CREATE VIEW statement.

·        The selected columns of the CREATE VIEW statement consist of table columns or column names, but they do not consist of expressions with more than one column name.

·        The CREATE VIEW statement contains every mandatory column from all tables of the FROM clause as the selected column.

 

Leaving content frame