DBAsupport.com Forums - Powered by vBulletin
Results 1 to 4 of 4

Thread: Materialized Views

  1. #1
    Join Date
    Sep 2000
    Posts
    96
    What are materialized views?

  2. #2
    Join Date
    Apr 2001
    Location
    Czechia
    Posts
    712

    Wink

    One of the best explanations could be found here:

    http://otn.oracle.com/docs/products/...chem.htm#18094

  3. #3
    Join Date
    Mar 2002
    Posts
    13
    materialized view is a kind of instantial view, the data of materialized view is stored in the database,so the performance is improved. it is also called snapshot.

    it is different from the normal view. oracle does not store any data for normal view,it only stores the SQL statement of the view in the database.

  4. #4
    Join Date
    Feb 2001
    Posts
    290
    I bet you Have to read the manual or some document on Materialized Viewes..

    Basically The term Materialized views is a synonym for Snapshots. They are very much useful for perfromance.

    Like , if you have query fired hundred times a day and every times it will fetch the data from the base tables, its time consuming and performance hit.

    What if i have got stored data for a "query" that i am using hundread times a day... think ... that is nothing but materialized view... And i am going to get very good performance .

    This is usually used in replicated environments...

    Thanks,
    Madhu

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width