Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Performance advantage of read only views?

David BalažicJan 30 2025
create view foo as select x,y,z from tab1 where a='b';

versus

create view foo as select x,y,z from tab1 where a='b' with read only;

Besides the obvious “it can not be updated”, what differences are there between two such views?

Any advantage in adding the WITH READ ONLY clause? Performance-wise?

Comments
Post Details
Added on Jan 30 2025
0 comments
147 views