<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to create an Oracle 9i Materialized View &amp;amp; Materialized View log? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-an-oracle-9i-materialized-view-amp-materialized/m-p/3457723#M848384</link>
    <description>Hi Eric&lt;BR /&gt;&lt;BR /&gt;check these links&lt;BR /&gt;&lt;A href="http://www.oracle.com/technology/products/oracle9i/daily/oct24.html" target="_blank"&gt;http://www.oracle.com/technology/products/oracle9i/daily/oct24.html&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.oracle.com/technology/products/oracle9i/daily/oct17.html" target="_blank"&gt;http://www.oracle.com/technology/products/oracle9i/daily/oct17.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;and especailly white paper on Materialized views :&lt;BR /&gt;&lt;A href="http://www.oracle.com/technology/products/oracle9i/pdf/o9i_mv.pdf" target="_blank"&gt;http://www.oracle.com/technology/products/oracle9i/pdf/o9i_mv.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Jean-Luc</description>
    <pubDate>Fri, 07 Jan 2005 05:43:40 GMT</pubDate>
    <dc:creator>Jean-Luc Oudart</dc:creator>
    <dc:date>2005-01-07T05:43:40Z</dc:date>
    <item>
      <title>How to create an Oracle 9i Materialized View &amp; Materialized View log?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-an-oracle-9i-materialized-view-amp-materialized/m-p/3457718#M848379</link>
      <description>1. Does any good document teach us create MVIEW step by step?&lt;BR /&gt;2. What kind of refresh type does MVIEW need MVIEW LOG?&lt;BR /&gt;&lt;BR /&gt;Pls kindly share your opinion.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;Eric FJ</description>
      <pubDate>Fri, 07 Jan 2005 03:40:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-an-oracle-9i-materialized-view-amp-materialized/m-p/3457718#M848379</guid>
      <dc:creator>ericfjchen</dc:creator>
      <dc:date>2005-01-07T03:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an Oracle 9i Materialized View &amp; Materialized View log?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-an-oracle-9i-materialized-view-amp-materialized/m-p/3457719#M848380</link>
      <description>Hi Eric,&lt;BR /&gt;check out this link:&lt;BR /&gt;&lt;A href="http://www.databasejournal.com/features/oracle/article.php/2192071" target="_blank"&gt;http://www.databasejournal.com/features/oracle/article.php/2192071&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Kind regards&lt;BR /&gt;Christian</description>
      <pubDate>Fri, 07 Jan 2005 04:02:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-an-oracle-9i-materialized-view-amp-materialized/m-p/3457719#M848380</guid>
      <dc:creator>Christian Marquardt_1</dc:creator>
      <dc:date>2005-01-07T04:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an Oracle 9i Materialized View &amp; Materialized View log?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-an-oracle-9i-materialized-view-amp-materialized/m-p/3457720#M848381</link>
      <description>check this doc:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96567/repmview.htm#25271" target="_blank"&gt;http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96567/repmview.htm#25271&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;sks</description>
      <pubDate>Fri, 07 Jan 2005 04:04:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-an-oracle-9i-materialized-view-amp-materialized/m-p/3457720#M848381</guid>
      <dc:creator>Sanjay Kumar Suri</dc:creator>
      <dc:date>2005-01-07T04:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an Oracle 9i Materialized View &amp; Materialized View log?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-an-oracle-9i-materialized-view-amp-materialized/m-p/3457721#M848382</link>
      <description>Hi Eric,&lt;BR /&gt;&lt;BR /&gt;The terms Materialized View (MVIEW) are synonymous and they will be used  &lt;BR /&gt;interchangeably. A materialized view is a replica of a target master from a single point in time. It was introduced in oracle 7 and The most remarkable MVIEW enhancements in Oracle9 are the multitier materialized views and support for user-defined types. &lt;BR /&gt;&lt;BR /&gt;A typical create MVIEW statement has the following form: &lt;BR /&gt; &lt;BR /&gt;  create materialized view snap_test &lt;BR /&gt;  refresh fast &lt;BR /&gt;  start with sysdate &lt;BR /&gt;  next sysdate+1 as &lt;BR /&gt;  select * from master_table@master_db; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;This statement should be executed in snap_db. It will create &lt;BR /&gt; &lt;BR /&gt;  - A MVIEW base table called SNAP_TEST which has the same structure as  &lt;BR /&gt;    MASTER_TABLE. &lt;BR /&gt;  - A new object namely SNAP_TEST of type materialized view &lt;BR /&gt;  - A UNIQUE index on the PK columns or ROWID depending on the type of  &lt;BR /&gt;    MVIEW log at master site &lt;BR /&gt;&lt;BR /&gt;Metalink  Note:258227.1 explains â  Overview of the types of MVIEW available in Oracle 8 and 9iâ  . This will privide steps that you require.&lt;BR /&gt;&lt;BR /&gt;Now your second query,&lt;BR /&gt;After the materialized view is created, changes can be made to the master table, and possibly also to the materialized view. To keep a materialized view's data relatively current with the data in the master table, the materialized view must be periodically refreshed.&lt;BR /&gt;&lt;BR /&gt;You can choose between Complete, Fast, and Force refresh types. Complete refresh is performed by deleting (or truncating) the rows from the snapshot and inserting the rows satisfying the mview query.&lt;BR /&gt;&lt;BR /&gt;Attached is a document for Oracle's materialized view fast refresh.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I hope this helps&lt;BR /&gt;&lt;BR /&gt;Indira A</description>
      <pubDate>Fri, 07 Jan 2005 04:21:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-an-oracle-9i-materialized-view-amp-materialized/m-p/3457721#M848382</guid>
      <dc:creator>Indira Aramandla</dc:creator>
      <dc:date>2005-01-07T04:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an Oracle 9i Materialized View &amp; Materialized View log?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-an-oracle-9i-materialized-view-amp-materialized/m-p/3457722#M848383</link>
      <description>Opps forgot the attachment.</description>
      <pubDate>Fri, 07 Jan 2005 04:23:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-an-oracle-9i-materialized-view-amp-materialized/m-p/3457722#M848383</guid>
      <dc:creator>Indira Aramandla</dc:creator>
      <dc:date>2005-01-07T04:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an Oracle 9i Materialized View &amp; Materialized View log?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-an-oracle-9i-materialized-view-amp-materialized/m-p/3457723#M848384</link>
      <description>Hi Eric&lt;BR /&gt;&lt;BR /&gt;check these links&lt;BR /&gt;&lt;A href="http://www.oracle.com/technology/products/oracle9i/daily/oct24.html" target="_blank"&gt;http://www.oracle.com/technology/products/oracle9i/daily/oct24.html&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.oracle.com/technology/products/oracle9i/daily/oct17.html" target="_blank"&gt;http://www.oracle.com/technology/products/oracle9i/daily/oct17.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;and especailly white paper on Materialized views :&lt;BR /&gt;&lt;A href="http://www.oracle.com/technology/products/oracle9i/pdf/o9i_mv.pdf" target="_blank"&gt;http://www.oracle.com/technology/products/oracle9i/pdf/o9i_mv.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Jean-Luc</description>
      <pubDate>Fri, 07 Jan 2005 05:43:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-an-oracle-9i-materialized-view-amp-materialized/m-p/3457723#M848384</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2005-01-07T05:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an Oracle 9i Materialized View &amp; Materialized View log?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-an-oracle-9i-materialized-view-amp-materialized/m-p/3457724#M848385</link>
      <description>hi Eric,&lt;BR /&gt;&lt;BR /&gt;1.  Documentations&lt;BR /&gt;please try: &lt;A href="http://download-east.oracle.com/docs/cd/A81042_01/DOC/server.816/a76994/mv.htm#721" target="_blank"&gt;http://download-east.oracle.com/docs/cd/A81042_01/DOC/server.816/a76994/mv.htm#721&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;Yogeeraj</description>
      <pubDate>Fri, 07 Jan 2005 06:25:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-an-oracle-9i-materialized-view-amp-materialized/m-p/3457724#M848385</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2005-01-07T06:25:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an Oracle 9i Materialized View &amp; Materialized View log?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-an-oracle-9i-materialized-view-amp-materialized/m-p/3457725#M848386</link>
      <description>hi again,&lt;BR /&gt;&lt;BR /&gt;2. &lt;BR /&gt;&lt;BR /&gt;the docs says:&lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt;Materialized view logs are required if you want to use fast refresh. They are defined using a CREATE MATERIALIZED VIEW LOG statement on the base table that is to be changed. They are not created on the materialized view. For fast refresh of materialized views, the definition of the materialized view logs must specify the ROWID clause. In addition, for aggregate materialized views, it must also contain every column in the table referenced in the materialized view, the INCLUDING NEW VALUES clause and the SEQUENCE clause.&lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;hope this helps too!&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;Yogeeraj</description>
      <pubDate>Fri, 07 Jan 2005 06:28:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-an-oracle-9i-materialized-view-amp-materialized/m-p/3457725#M848386</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2005-01-07T06:28:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an Oracle 9i Materialized View &amp; Materialized View log?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-an-oracle-9i-materialized-view-amp-materialized/m-p/3457726#M848387</link>
      <description>hi again,&lt;BR /&gt;&lt;BR /&gt;also note that you need no mv logs to refresh, they are optional -- with them we might be able &lt;BR /&gt;to do an incremental refresh, without them -- a complete refresh is called for.&lt;BR /&gt;&lt;BR /&gt;hope this helps too!&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Fri, 07 Jan 2005 07:34:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-an-oracle-9i-materialized-view-amp-materialized/m-p/3457726#M848387</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2005-01-07T07:34:11Z</dc:date>
    </item>
  </channel>
</rss>

