Oracle8i SQL Reference Release 3 (8.1.7) Part Number A85397-01 |
|
SQL Statements:
CREATE SYNONYM to DROP ROLLBACK SEGMENT, 24 of 31
Use the DROP
MATERIALIZED
VIEW
LOG
statement to remove a materialized view log from the database.
The terms "snapshot" and "materialized view" are synonymous.
See Also:
|
A materialized view log consists of a table and a trigger. To drop a materialized view log, you must have the privileges needed to drop a table.
schema
Specify the schema containing the materialized view log and its master table. If you omit schema
, Oracle assumes the materialized view log and master table are in your own schema.
table
Specify the name of the detail table associated with the materialized view log to be dropped.
After you drop a materialized view log, some materialized views based on the materialized view log's detail table can no longer be fast refreshed. These materialized views include rowid materialized views, primary key materialized views, and subquery materialized views.
DROP
MATERIALIZED
VIEW
LOG
Example
The following statement drops the materialized view log on the parts
master table:
DROP MATERIALIZED VIEW LOG ON parts;
|
![]() Copyright © 1996-2000, Oracle Corporation. All Rights Reserved. |
|