| Oracle® Database Advanced Replicatio
n Management API Reference 10g Release 1 (10.1) Part Number B10733-01 |
|
|
Materialized vie w replication provides the flexibility to build data sets to meet the needs of your users and front-end applications, while still mee ting the requirements of your security configuration. This chapter describes how to manage materialized view sites with the replicati on management API.
This chapter contains these topics:
Refreshing a materialized view synchronizes the data in the m aterialized view's master(s) and the data in the materialized view. You can either refresh all of the materialized views in a refresh group at once, or you can refresh materialized views individually. If you have applications that depend on more than one materialize d view at a materialized view site, then Oracle Corporation recommends using refresh groups so that the data is transactionally consi stent in all of the materialized views used by the application.
The following example refresh
es the hr_refg refresh group:
EXECUTE DBMS_REFRESH. REFRESH ('hr_refg');
The following example refreshes the hr
.departments_mv materialized view:
BEGIN DBMS_MVIEW.REFRESH ( < a name="34855"> list => 'hr.departments_mv', method => '?'); END; /
|
Note: Do not use the |
| See Also:
PL/SQ
L Packages and Types Reference for more information about the |
To change the master site of a materiali
zed view group at a level 1 materialized view site to another master site, call the SWITCH_MVIEW_MASTER procedure in the
DBMS_REPCAT package, as shown in the following example:
BEGIN < /a>DBMS_REPCAT.SWITCH_MVIEW_MASTER ( gname => 'hr_repg', master => 'orc3.world'); END; /
In this example, the master site for the hr_repg replication group is changed to the orc3.world
master site. You must call this procedure at the materialized view site whose master site you want to change. The new databas
e must be a master site in the replication environment. When you call this procedure, Oracle uses the new master to perform a full re
fresh of each materialized view in the local materialized view group. Make sure you have set up the materialized view site to use the
new master site before you run the SWITCH_MVIEW_MASTER procedure.
The entries i
n the SYS.SLOG$ table at the old master site for the switched materialized view are not removed. As a result, the materi
alized view log (MLOG$ table) of the switched updatable materialized view at the old master site has the potential to gr
ow indefinitely, unless you purge it by calling DBMS_MVIEW.PURGE_LOG.
You may need to drop replication activity at a materialized view site for a number of reasons. Perhaps the data requirements have changed or an employee has left the company. In any case, as a DBA you will need to drop the replication support for the target materialized view site.
This section contains the following sections:
Meet the following requirements to complete these actions:
< strong class="Bold">Executed As:
Executed At:
Replication Status: Normal
Complete the following steps to drop a materialized view group created with a deployment template.
/************************* BEGINNING OF SCRIPT ******************************
*/ SET ECHO ON SPOOL drop_mv_group_public.out CONNECT hr/hr@orc3.world /*
*/ BEGIN DBMS_REPCAT_INSTANTIATE.DROP_SITE_INSTANTIATION( refresh_template_name => 'hr_refg_dt', site_name => 'mv4.world'); < /a>END; / /*
If you are not able to connect to the r emote materialized view site, then the target materialized view group cannot refresh, but the existing data still remains at the mate rialized view site.
*/ BEGIN DBMS_REPCAT.DROP_MVIEW_REPGROUP ( gname => 'hr_repg', drop_contents => TRUE); END; / /*
If you want to physically remove the contents of the materialized view group
from the materialized view database, then be sure that you specify TRUE for the drop_contents parameter.
Connect as the refresh group owner and remove the refresh group.
a>*/ CONNECT hr/hr@mv4.world BEGIN DBMS_REFRESH.DESTROY ( name => 'hr_refg'); END ; / SET ECHO OFF SPOOL OFF /************************* END OF SCRIPT **********************************/
The following steps are to be performed by the replication administrator on behalf of the materialized view group owner. Meet the following requirements to complete these actions:
Executed As:
Executed At:
< ul class="LB1">Replication S tatus: Normal
Complete the following steps to drop a materialized view group created with a deployment template.
/************************* BEGINNING OF SCRIPT *********** *******************
*/ SET ECHO ON SPOOL drop_mv_group_private.out CONNEC T repadmin/repadmin@orc1.world /*
*/ BEGIN DBMS_REPCAT_RGT. DROP_SITE_INSTANTIATION ( refresh_template_name => 'hr_refg_dt', user_nam e => 'hr', site_name => 'mv4.world'); END; / /*
*/ CONNECT mviewadmin/mviewadmin@mv4.world /*
If you are unable to connect to the remote materialized view site, then the target materialized view group cannot refresh, but the existing data still remains at the materialized view site.
*/ BEGIN DBMS_REPCAT.DROP_MVIEW_REPGROUP ( gname => 'hr_repg', drop_contents =&g t; TRUE, gowner => 'hr'); END; / /*
If you want to physically remove the contents of the mat
erialized view group from the materialized view database, then be sure that you specify TRUE for the drop_contents
parameter.
Connect as the refresh group owner and remove the refresh group.
*/ CONNECT hr/hr@mv4.world B EGIN DBMS_REFRESH.DESTROY ( name => 'hr_refg'); END; / SET ECHO OFF SPOOL OFF /************************* END OF SCRIPT ********************************** /
The most secure method of removing replication support for a materialized view site is to physically drop the replicated objects or groups at the ma terialized view site. The following two sections describe how to drop these objects and groups while connected to the materialized vi ew group.
Ideally, these procedures should be executed while the materialized view is connect ed to its target master site or master materialized view site. A connection ensures that any related metadata at the master site or m aster materialized view site is removed. If a connection to the master site or master materialized view site is not possible, then be sure to complete the procedure described in "Cleaning Up a Master Site or Master Materialized View Site " to manually remove the related metadata.
When it becomes necessary to remove a materialized view group from a materialized vi
ew site, use the DROP_MVIEW_REPGROUP procedure to drop a materialized view group. When you execute this procedure and ar
e connected to the target master site or master materialized view site, the metadata for the target materialized view group at the ma
ster site or master materialized view site is removed. If you cannot connect, then see "Cleaning Up a Ma
ster Site or Master Materialized View Site" for more information.
Meet the following requirements to complete these actions:
Exe cuted As: Materialized View Administrator
Executed At: Remote Materialized View Site
Replication Status: N/A
Complete the following steps to drop a materialized view group at a materialized view site:
CONNECT mviewadmin/mviewadmin@mv1.world
BEGIN DBMS_REPCAT.DROP_MVIEW_REPGROUP ( gname => 'hr_repg', drop_contents => TRUE); END; /
If you want to physically remove the contents of the materialized v
iew group from the materialized view database, then be sure that you specify TRUE for the drop_contents par
ameter.
When it becomes necessary to r
emove an individual materialized view from a materialized view site, use the DROP_MVIEW_REPOBJECT procedure API to drop
a materialized view. When you execute this procedure and are connected to the target master site or master materialized view site, th
e metadata for the target materialized view at the master site or master materialized view site is removed. If you cannot connect, th
en see "Cleaning Up a Master Site or Master Materialized View Site"
for more information.
Meet the following requirements to complete these actions:
Executed As: Materialized View Administrator
Executed At: Remote Materialized View Site
Replication Status: N/A
Complete the following steps to drop an individu al materialized view at a materialized view site.
CONNECT mviewadmin/mviewadmin@mv1.world
BEGIN DBMS_REPCAT.DROP_MVIEW_REPOBJECT ( sname => 'hr', oname => 'employees _mv1', type => 'SNAPSHOT', drop_objects => TRUE); END ; /
If you want to physically remove the contents
of the materialized view from the materialized view database, then be sure that you specify TRUE for the drop_con
tents parameter.
If you are unable to drop a materialized view group or materialized view object while connected to the target master site or master m aterialized view site, then you must remove the related metadata at the master site or master materialized view site manually. Cleani ng up the metadata also ensures that you are not needlessly maintaining master table or master materialized view changes to a materia lized view log. The following sections describe how to clean up your master site or master materialized view site after dropping a ma terialized view group or object.
If you have executed the steps described in "Dropping a Materialized View Group Created Manually" and were not connected to the master site or master materialized view site, then you are encouraged to complete the following steps to clean up the target master site or master materialized view site.
Meet the following requirements to complete these actions:
Exec uted As: Replication Administrator
Executed At: Master Site or Master Materialized View Site for Target Materialized View Site
Replication Status: Normal
Complete the following steps to clean up a master site o r master materialized view site after dropping a materialized view group:
/************ ************* BEGINNING OF SCRIPT ******************************
*/ BEGIN DBMS_REPCAT.UNREGISTER_MVIEW_REPGROUP ( gname => 'hr_repg', mviewsite => 'mv1.world'); END; / /*
Execute the PU
RGE_MVIEW_FROM_LOG procedure for each materialized view that was in the materialized view groups you unregistered in Step 2.
p>
|
Note: If for some reason unregistering the materialized view group fails, then you should still complete this step. |
| See Also:
PL/SQL Packages and Types Reference for more information about the |
| See Also:
PL/SQL Packages and Types Reference for more information about th
e |
|
Note: < p class="NB">If for some reason unregistering the materialized view fails, then you should still complete this step. |
| See Also: <
a name="36910">
PL/SQL Packages and Types Reference for more information about the |
*/ BEGIN DBMS_MVIEW.PURGE_MV IEW_FROM_LOG ( mviewowner => 'hr', mviewname => 'employees_mv1', mviewsite => 'mv1.world'); END; / a>SET ECHO OFF SPOOL OFF /************************* END OF SCRIPT **********************************/
The following sections explain how to manage materialized view logs:
After creating a materialized view log, you can alter its storage parameters and support for corresponding materialized views. The following sections explain more about altering materialized view logs. Only the following users can alter a materialized view log:
SELECT privilege for
the master table or master materialized view and ALTER privilege on the MLOG$_master_nam
e, where master_name is the name of the master for the materialized view log. For example, if the master
table is employees, then the materialized view log table name is MLOG$_employees.To alter a materialized view log's storage paramete
rs, use the ALTER MATERIALIZED VIEW LOG statement. For example, the following sta
tement alters a materialized view log on the employees table in the hr schema:
ALTER MATERIALIZED VIEW LOG ON hr.employees PCTFREE 25 PCTUSED 40;
To add new columns to a materialized view
log, use the SQL statement ALTER MATERIALIZED VIEW LOG. For example, the followin
g statement alters a materialized view log on the customers table in the sales schema:
ALTER MATERIALIZED VIEW LOG ON hr.employees ADD (department_id);a>
| See Also:
< em class="Italic">Oracle Database Advanced Replicati on for more information about adding columns to a materialized view log |
Oracle automatically tracks which rows in a materialized view log have bee n used during the refreshes of materialized views, and purges these rows from the log so that the log does not grow endlessly. Becaus e multiple simple materialized views can use the same materialized view log, rows already used to refresh one materialized view may s till be needed to refresh another materialized view. Oracle does not delete rows from the log until all mater ialized views have used them.
For example, suppose two materialized views were created agains
t the customers table in a master site. Oracle refreshes the customers materialized view at the spdb1
database. However, the server that manages the master table and associated materialized view log does not purge the materiali
zed view log rows used during the refresh of this materialized view until the customers materialized view at the s
pdb2 database also refreshes using these rows.
Because Oracle must wait for all depend ent materialized views to refresh before purging rows from a materialized view log, unwanted situations can occur that cause a materi alized view log to grow indefinitely when multiple materialized views are based on the same master table or master materialized view.
For example, such situations can occur when more than one materialized view is based on a ma ster table or master materialized view and one of the following conditions is true:
Always try to keep a materialized view log a s small as possible to minimize the database space that it uses. To remove rows from a materialized view log and make space for newer log records, you can perform one of the following actions:
To manually purge rows from a materialized
view log, execute the PURGE_LOG procedure of the DBMS_MVIEW package at the database that contains the log.
For example, to purge entries from the materialized view log of the customers table that are necessary only for the lea
st recently refreshed materialized view, execute the following procedure:
BEGIN DBMS_MVIEW.PURGE_LOG ( master => 'hr.employees', num => 1, flag => 'DELETE'); END; /
Only the owner of a materialized view log or a user with the EXECUTE privilege for the DB
MS_MVIEW package can purge rows from the materialized view log by executing the PURGE_LOG procedure.
|
See Also:
PL/SQL Packages and Typ
es Reference for more information about the |
If a materialized view log grows and allocates many extents, then purgin
g the log of rows does not reduce the amount of space allocated for the log. In such cases, you should truncate the materialized view
log. Only the owner of a materialized view log or a user with the DELETE ANY TABLE system pri
vilege can truncate a materialized view log.
To reduce the space allocated for a materialized view log by truncating it, complete the following steps:
For example, issue a statement similar to the following:
LOCK TABLE hr.employees IN EXCLUSIVE MODE;
For example, issue a statement similar to the following:
For example, issue a statement similar to the following:
TRUNCATE TABLE hr.MLOG$_employees;
Perform this step so th at you do not have to perform a complete refresh of the dependent materialized views.
For exa mple, issue statements similar to the following:
INSERT INTO hr.MLOG$_employees SELECT * FROM hr.templog; DROP TABLE hr.templog;
You can accomplish this by performing a rollback:
ROLLBACK;
To improve performance and optimize disk use, you can periodically reorganize master tables. This section d escribes how to reorganize a master and preserve the fast refresh capability of associated materialized views.
a>|
Note: These sect ions do not discuss online redefinition of tables. Online redefinition is not allowed on master tables with materialized view logs, m aster materialized views, or materialized views. Online redefinition is allowed only on master tables that do not have materialized v iew logs. See the Oracle Datab ase Administrator's Guide for more information about online redefinition of tables. |
When you reorganize a table, any ROWID information of
the materialized view log must be invalidated. Oracle detects a table reorganization automatically only if the table is truncated as
part of the reorganization.
If the table is not truncated, then Oracle must be notified of t
he table reorganization. To support table reorganizations, two procedures in the DBMS_MVIEW package, BEGIN_TABLE_R
EORGANIZATION and END_TABLE_REORGANIZATION, notify Oracle that the specified table has been reorganized. The proc
edures perform clean-up operations, verify the integrity of the logs and triggers that the fast refresh mechanism needs, and invalida
te the ROWID information in the table's materialized view log. The inputs are the owner and name of the master to be reo
rganized. There is no output.
When a tabl e is truncated, its materialized view log is also truncated. However, for primary key materialized views, you can preserve the materi alized view log, allowing fast refreshes to continue. Although the information stored in a materialized view log is preserved, the ma terialized view log becomes invalid with respect to rowids when the master is truncated. The rowid information in the materialized vi ew log will seem to be newly created and cannot be used by rowid materialized views for fast refresh.
The PRESERVE MATERIALIZED VIEW LOG option is the default. Therefore, if
you specify the PRESERVE MATERIALIZED VIEW LOG option or no option, then the info
rmation in the master's materialized view log is preserved, but current rowid materialized views can use the log for a fast refresh o
nly after a complete refresh has been performed.
|
Note: To ensure that any previously fast refreshable m aterialized view is still refreshable, follow the guidelines in "Methods of Reorganizing a Database Tabl e". |
If the PURGE MATERIALIZED VIEW LOG option is specified, then the materialized view log is purged along w
ith the master.
Either of the following two statements preserves materiali
zed view log information when the master table named employees is truncated:
TRU NCATE TABLE hr.employees PRESERVE MATERIALIZED VIEW LOG; TRUNCATE TABLE hr.employees;
The following statement truncates the materialized view log along with the master table:
Oracle provides four table reorganization methods that preserve the capability for fast refresh. These appear in the following sections. Other reorganization methods require an initial complete refresh to enable sub sequent fast refreshes.
|
Caution: When a table is renamed, its associated PL/SQL triggers are also adjusted to the new name of the table. | <
/tr>
Ensure that no transaction is issued against the reorganized table between cal
ling BEGIN_TABLE_REORGANIZATION and END_TABLE_REORGANIZATION.
Complete the following steps:
|
Caution: When you truncate masters as part of a reor
ganization, you must use the |
Ensure that no transaction is issued against the re
organized table between calling BEGIN_TABLE_REORGANIZATION and END_TABLE_REORGANIZATION.
Complete the following steps:
|
Caution: When a table is renamed, its associated PL/S QL triggers are also adjusted to the new name of the table. |
Ensu
re that no transaction is issued against the reorganized table between calling BEGIN_TABLE_REORGANIZATION and END_
TABLE_REORGANIZATION.
Complete the following steps:
|
Caution: When a table is renamed, its associated PL/SQL triggers are also adjusted to the new name of the table. |
Ensure that no transaction is issued against
the reorganized table between calling BEGIN_TABLE_REORGANIZATION and END_TABLE_REORGANIZATION.
| See Also:
PL/SQL Packages and Ty
pes Reference for more information about the |
You can delete a materialized view log regardless of its master or any ex isting materialized views. For example, you might decide to drop a materialized view log if one of the following conditions is true:< /p>
Here, a master can be a master table or a master materialized view. To delete a materialized v
iew log, execute the DROP MATERIALIZED VIEW LOG statement in SQL*Plus. For exampl
e, the following statement deletes the materialized view log for a table named customers in the sales schem
a:
DROP MATERIALIZED VIEW LOG ON hr.employees;< /a>
Only the owner of the master or a user with the DROP ANY TABLE system privil
ege can drop a materialized view log.
Specifying a group
owner when you define a new materialized view group and its related objects enables you to create multiple materialized view groups b
ased on the same replication group at a single materialized view site. Also, specifying group owners enables you to create multiple m
aterialized view groups that are based on the same replication group at a master site or master materialized view site. You accomplis
h this by creating the materialized view groups under different schemas at the materialized view site. This example uses the schemas
bob and jane as group owners and assumes that these schemas exist at the materialized view site.
Executed As:
Executed At:
Replication Status: Normal
mv1.world and the master site is orc1.world
.hr schema at the master site if th
ey do not existComplete the following steps to use a group owner.
See Also:
|
/************************* BEGINNING OF SCRIPT ************************* *****
Before building your materialized view group, you must ma ke sure that the replicated schema exists at the remote materialized view site and that the necessary database links have been create d.
In this example, if the hr schema does not exist, then create the schema. If
the hr schema already exists at the materialized view site, then grant any necessary privileges.
*/ CONNECT SYSTEM/MANAGER@mv1.world a>CREATE TABLESPACE demo_mv1 DATAFILE 'demo_mv1.dbf' SIZE 10M AUTOEXTEND ON EXTENT MANAGEME NT LOCAL AUTOALLOCATE; CREATE TEMPORARY TABLESPACE temp_mv1 TEMPFILE 't emp_mv1.dbf' SIZE 5M AUTOEXTEND ON; CREATE USER hr IDENTIFIED BY hr; ALTER USER hr DEFAULT TABLESPACE demo_mv1 QUOTA UNLIMITED ON demo_mv1; ALTER USER hr TEMPORARY TABLESPACE temp_mv1; GRANT CREATE SESSION, CREATE TABLE, CREATE PROCEDURE, CRE ATE SEQUENCE, CREATE TRIGGER, CREATE VIEW, CREATE SYNONYM, ALTER SESSION, CREATE MATERIALIZED VIEW, ALTER ANY MATERIALIZED VIEW, < a name="39049"> CREATE DATABASE LINK TO hr; /* a>
If it does not already exist, then create the database link for the replicated schema.< /p>
Before building your materialized view group, you must make sure that the necessary database
links exist for the replicated schema. The owner of the materialized views needs a database link pointing to the proxy_refreshe
r that was created when the master site was set up.
*/ SET ECHO ON SPOOL mv_group_owner.out CONN ECT hr/hr@mv1.world CREATE DATABASE LINK orc1.world CONNECT TO proxy _refresher IDENTIFIED BY proxy_refresher; /*
*/ CONNECT mviewadmin/mviewadmin@mv1.world /*
The replication group that you specify in the gname parameter must match the name of the replication grou
p that you are replicating at the target master site or master materialized view site. The gowner parameter enables you
to specify an additional identifier that lets you create multiple materialized view groups based on the same replication group at the
same materialized view site.
In this example, materialized view groups are created for the g
roup owners bob and jane, and these two materialized view groups are based on the same replication group.
p>
*/ BEGIN DBMS_REPCAT.CREATE_MVIEW_REPGROUP ( gname => 'hr_repg', master => 'orc1.world', propagation_mode => 'ASYNCHRONOUS', gowner => 'bob'); END; / BEGIN DBMS_REPCAT.CREATE_MVIEW_REPGROUP ( gname => 'hr_repg', master => 'orc1.world', propagation_mode => 'ASYNCHRONOUS', gowner => 'jane'); END; / /*
The gowner value used when creating your materialized view objects must match the gowner value specifi
ed when you created the materialized view group in the previous procedures. After creating the materialized view groups, you can crea
te materialized views based on the same master in the hr_repg materialized view group owned by bob and
Whenever you create a materialized view, always specify the schema name of the table owner in the query for the mater
ialized view. In the following examples, hr is specified as the owner of the table in each query.
*/ CREATE MATERIALIZED VIEW hr.countries_bob REFRES H FAST WITH PRIMARY KEY FOR UPDATE AS SELECT * FROM hr.countries@orc1.world; CREATE MATERIALIZED VIEW hr.departments_bob REFRESH FAST WITH PRIMARY KEY FOR UPDATE AS SELECT * FROM hr.departments@orc1.world; CREATE MATERIALIZED VIEW hr.employees_bob REFRESH FAST WITH PRIMARY KEY FOR UPDATE AS SELECT * FROM hr.employees@orc1.world; CREATE MATERIALIZED VIEW hr.jobs_bob REFRESH FAST WITH PRIMARY KEY FOR UP DATE AS SELECT * FROM hr.jobs@orc1.world; CREATE MATERIALIZED VIEW hr .job_history_bob REFRESH FAST WITH PRIMARY KEY FOR UPDATE AS SELECT * FROM hr.job_histo ry@orc1.world; CREATE MATERIALIZED VIEW hr.locations_bob REFRESH FAST WITH PRIMARY KEY FOR UPDATE AS SELECT * FROM hr.locations@orc1.world; a>CREATE MATERIALIZED VIEW hr.regions_bob REFRESH FAST WITH PRIMARY KEY FOR UPDATE AS S ELECT * FROM hr.regions@orc1.world; /*
*/ CREATE MATERIALIZED VIEW hr.departments_jane REFRESH FAST WITH PR IMARY KEY FOR UPDATE AS SELECT * FROM hr.departments@orc1.world; CREA TE MATERIALIZED VIEW hr.employees_jane REFRESH FAST WITH PRIMARY KEY FOR UPDATE AS SELE CT * FROM hr.employees@orc1.world; /*
*/ BEGIN DBMS_R EPCAT.CREATE_MVIEW_REPOBJECT ( gname => 'hr_repg', sname => 'hr', oname => 'countries_bob', type => 'SNAPSHOT', min_comm unication => TRUE, gowner => 'bob'); END; / < /a> BEGIN DBMS_REPCAT.CREATE_MVIEW_REPOBJECT ( gname => 'hr_repg', sname => 'hr', oname => 'departments_b ob', type => 'SNAPSHOT', min_communication => TRUE, gowner => 'bob'); END; / BEGIN DBMS_REPCAT.CREATE_MVIEW_REPOBJECT ( gname => 'hr_repg', sname => 'hr', oname => 'employees_bob', type => 'SNAP SHOT', min_communication => TRUE, gowner => 'bob'); END ; / BEGIN DBMS_REPCAT. CREATE_MVIEW_REPOBJECT ( gname => 'hr_repg', sname => 'hr', oname => 'jobs_bob', type => 'SNAPSHOT', min_communication = > TRUE, gowner => 'bob'); END; / BEGIN DBMS_REPCAT.CREATE_MVIEW_REPOBJECT ( gname => 'hr_repg', sname => 'hr', oname => 'job_history_bob', type => 'SNAPSHOT', min_communication => TRUE, gowner = > 'bob'); END; / BEGIN DBMS_REPCAT.CREATE_MVIEW_REPOBJECT ( gname => 'hr_repg', sname => 'hr', oname => 'locations_bob', type => 'SNAPSHOT', min_communication => TRUE, gowner => 'bob'); END; / BEGIN DBMS_REPCAT.CREATE_MVIE W_REPOBJECT ( gname => 'hr_repg', sname => 'hr', oname => 'regions_bob', type => 'SNAPSHOT', min_communication => TRU E, gowner => 'bob'); END; / /*
*/ BEGIN DBMS_REPCAT.CREATE_MVIEW_REPOBJECT ( gname =&g t; 'hr_repg', sname => 'hr', oname => 'departments_jane', < /a> type => 'SNAPSHOT', min_communication => TRUE, gowner => 'jane' ); END; / BEGIN DBMS_REPCAT.CREATE_MVIEW_REPOBJECT ( gname => 'hr_repg', sna me => 'hr', oname => 'employees_jane', type => 'SNAPSHOT', min_communication => TRUE, gowner => 'jane'); END; < /a>/ SET ECHO OFF SPOOL OFF /*
| Se
e Also:
Chapter 5, "Create Materialized View Gr oup" (Step 6) for more information about adding materialized views to a refresh group |
tr>
/************************* END OF SCRIPT **********************************/ pre>