What criteria is used by the system to determine if a view is read only? I created a view that involves two tables. It does display columns from each of the tables. All columns in both tables can be updated. I am not using any functions on the columns, no calcuations, no group or having clauses. The tables have no constraints of any kind at this time.
create view as select a.name, b.id,bname,b.va lue1, b.values2 from tablea a, tableb b
where b.id = a.id;
This is being marked as 'Read Only' in the system. Is this due to multiple tables in the view creation? Now each table to have several columns that can't be null. Could that be why?
create view as select a.name, b.id,bname,b.va lue1, b.values2 from tablea a, tableb b
where b.id = a.id;
This is being marked as 'Read Only' in the system. Is this due to multiple tables in the view creation? Now each table to have several columns that can't be null. Could that be why?
Comment