On Dec 13, 10:12 am, San_Ora_DBA <
sanjaydharmadhik...@gmail.com>
wrote:
> > David Fitzjarrell- Hide quoted text -
>
> - Show quoted text -
Realize that some sections of the documentation pass unaltered between
releases and in some cases new functionality supercedes the
information from a prior release; this is such a case, however you
want to create a materialized view log in the standby database and
have an external materialized view benefit from that configuration.
Reading the section you cited also provides this piece of knowledge:
"Logical Standby supports the creation and maintenance of new
materialized views locally on the logical standby database in addition
to other kinds of auxiliary data structure. For example, online
transaction processing (OLTP) systems frequently use highly normalized
tables for update performance but these can lead to slower response
times for complex decision support queries. Materialized views that
denormalize the replicated data for more efficient query support on
the logical standby database can be created, as follows (connect as
user SYS before issuing these statements):
SQL> ALTER SESSION DISABLE GUARD;
...
"
The above alter session statement is critical to enabling the creation
of materialized view logs in a logical standby database.
David Fitzjarrell