Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: internal handling of views
A "view" can simply be thought of as a stored query. Oracle simply
runs the underlying SQL that is used to make a view.
Then there are Materialized Views (used to be called snapshots) in which oracle takes a query and writes data out that can be retrieved later via query.
Now, materialized views have refresh clauses that can cause the materialized view to be refreshed when a piece of pertanent data in the tables contained in the query that generated the view is changed.
You should check the docs for the particulars. Received on Sat Aug 05 2006 - 22:26:57 CDT
![]() |
![]() |