I have a table in oracle 11.2.0.3 that I want to capture in the redo logs. The issue is that it has an sdo_geometry field. This is a legacy table that I can not change. But the good news is I do not need that sdo_geometry field. So I have created a materialized view as shown below.
CREATE MATERIALIZED VIEW LOG ON LEGACY_TABLE_NAME
WITH PRIMARY KEY
INCLUDING NEW VALUES;
CREATE MATERIALIZED VIEW LEGACY_TABLE_NAME_MV
NOLOGGING
NOCACHE
BUILD IMMEDIATE
REFRESH FAST ON COMMIT
WITH PRIMARY KEY
AS
SELECT <List of non sdo_gemoetry columns> FROM LEGACY_TABLE_NAME;
The issue shows up when I do an update and look at the redo logs. Instead of seeing an update statement, I see a delete and insert statements. Since I am using a primary key, I would expect to see the update statement.
Does anyone know what I need to do to ensure that I see an update statement in the redo logs.
Thanks
I think you are misunderstanding what a
redolog
stores with what amateriliazed view log
does.Let's try to make a test for both scenarios:
Oracle version: 12.2
RedoLog Contents
Now let's start a LogMiner session by loading the redo log files into LogMiner:
As you can see above, the
UPDATE
appears normally as any otherDML
operation in theSQL_REDO
column ofV$LOGMNR_CONTENTS
. So, obviously the REDO files store any update operation as long as the operation is done in Logging mode, or the database is in FORCE LOGGING MODE, in which case it doesn't matter what mode the operation is done, because it will always be stored.Materialized View Log
Let's create a
materialized view log
and amaterialized view
as you did in your question. However, to verify the content of the MLOG$ tables, I will put the refresh on demand, instead of on commit.As we did create the materialized view with refresh on demand, now let's the content of the
MLOG$
tableThen I refresh
The reason why you don't see
UPDATE
onDMLTYPE$$
is because you choose Primary Key as WITH clause in your Materialized View creation. In that case, only D or I will appear in the columnDMLTYPE$$
, but when it is an update, you will get two rows with the same transaction ID (XID$$
field in the example above has the same value )However, check what happen when I use
ROWID
instead ofPRIMARY KEY
Let' see the content of the
M$LOG
table nowI have now 4 rows, 2 for the inserts, 1 update for the field C1 and another for the field C2, which are in fact the same transaction ( field
XID$$
)I hope it clarifies how the MLOG$ tables are populated when you choose ROWID or PRIMARY KEYY. Note that materialized view log tables using primary keys also have
rupd$_
tables. The rupd$_ table supports updateable materialized views, which are only possible on log tables with primary keys.