what is Materialized view? What is a snapshot? what are the
similarities and differences between Materialized views and
snapshots?
Answers were Sorted based on User's Feedback
Answer / mkumar.it
Snapshots and Materialized view are used interchangibly as
both are almost same. However, materialized view is having
additional feature of query rewrite which is not in snapsot.
In this feature, suppose you made any materialized view
using some aggrigate function and you query base table from
sql using same aggrigate funtion, the query will execute on
the materialized view instead of querying base table
provided you have query rewrite priviledge.
| Is This Answer Correct ? | 14 Yes | 2 No |
Answer / its me...
A materialized view is a database object that contains the
results of a query. The FROM clause of the query can name
tables, views, and other materialized views. Collectively
these objects are called master tables .
materialized views allow you to maintain copies of remote
data on your local node.
You can select data from a materialized view as you would
from a table or view.
| Is This Answer Correct ? | 5 Yes | 1 No |
How to create a new oracle data file?
How do I know if oracle is installed on windows?
What are privileges and grants?
Explain integrity constraints?
When do we use group by clause in a sql query?
Does oracle database need java?
what is the maximum number of indexes i can create for a table? What happens if i create indexes for all the columns of a table? Will it slow down the speed of retrieval
What is the effect of setting the value "CHOOSE" for OPTIMIZER_GOAL, parameter of the ALTER SESSION Command ?
How to turn on or off recycle bin for the instance?
What is Read-Only Transaction ?
Typically, where is the conventional directory structure chosen for Oracle binaries to reside?
what is reindexing?