You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT (XIDUSN ||'.'|| XIDSLT ||'.'|| XIDSQN) AS XID, SCN,START_SCN,COMMIT_SCN, TABLE_NAME, SQL_REDO FROM V\$LOGMNR_CONTENTS WHERE REGEXP_LIKE(TABLE_NAME, '(T1|T2|T3|T4|T5)') AND SCN >=${scn}
result is like:
SCN:358141 START_SCN:358135 COMMIT_SCN:358142 XID:5.13.401 SQL:insert into "TESTUSR1"."T2"("ID","DATA") values ('3','##########STR##########STR##########STR##########STR##########STR##########STR##########STR#########3');
after a little big digging, we can find that:
the transaction id (xid) is exactly the same
the data is exactly the same
openlogreplicator's start scn and c_scn is the not same as logminer's start_scn;
Describe the solution you'd like
Know the matching start_scn and commit_scn in openlogreplicator's output or how to calculate the start_scn and commit_scn by simple math op from current JSON output.
BTW, if the meaning of scn in begin output (in above example, is 358135) the meaning of c_scn in commit output? (in above example, is 358141)? Can find any matching record in Logminer's output
Describe alternatives you've considered
not found yet, but maybe can use XID to identify the transaction but it is not monotonically increasing
Additional context
primary usage of start_scn and commit_scn is for smooth connection of full sync and increment sync and validation
The text was updated successfully, but these errors were encountered:
For me it is a problem to set up everything, logminer, config, etc. I need either a script to run to get the results or some redo log data to reproduce the issue.
After thinking about it I would say this it not a but rather an enhancement. By default OLR puts the commit timestamp to all DML operations from the transaction. This is more logical. Actually if you look at the database and would like to restore the content up to some SCN - the particular DML did not change at that moment. Thus it is misleading that it changed at that SCN. It actually changed at the moment when the transaction has been successfully committed.
Thus, the actual SCN of the DML operation should be the COMMIT SCN.
Is your feature request related to a problem? Please describe.
The OpenLogReplicator's json output has scn, c_scn field, like:
while dumping redo from Logminer by SQL:
result is like:
after a little big digging, we can find that:
Describe the solution you'd like
Know the matching start_scn and commit_scn in openlogreplicator's output or how to calculate the start_scn and commit_scn by simple math op from current JSON output.
BTW, if the meaning of scn in begin output (in above example, is 358135) the meaning of c_scn in commit output? (in above example, is 358141)? Can find any matching record in Logminer's output
Describe alternatives you've considered
not found yet, but maybe can use XID to identify the transaction but it is not monotonically increasing
Additional context
primary usage of start_scn and commit_scn is for smooth connection of full sync and increment sync and validation
The text was updated successfully, but these errors were encountered: