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

Thread: Materialized view

Threaded View

  1. #3
    Join Date
    Feb 2007
    Location
    UNDER MOON
    Posts
    44
    Materialized views designed to speed up queries by storing data from queries in a pre-joined, pre-summarized format. Unlike traditional view ,which is merely stored in the data dictionary as a select statement that is executed when the view is accessed.

    A materialized view stores the physical result of the view in its own segment, separate and distinct from the underlying table on which the view is based. The segment can be stored in its own tablespace and can be indexed and partitioned.

    Materialized views are intended primarily for use in data warehouse and decision support system where large volumes of data are accessed and summarized using queries.
    Last edited by liakat; 07-27-2007 at 01:57 PM.

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