Examples - Connect_CDC - connect_cdc_mimix_share - 6.x

Connect CDC Getting Started Guide

Product type
Software
Portfolio
Integrate
Product family
Connect
Product
Connect > Connect CDC (MIMIX Share)
Version
6.x
ft:locale
en-US
Product name
Connect CDC
ft:title
Connect CDC Getting Started Guide
Copyright
2025
First publish date
2003
ft:lastEdition
2026-02-25
ft:lastPublication
2026-02-25T19:01:02.274000
L1_Product_Gateway
Integrate
L2_Product_Segment
Data Integration
L3_Product_Brand
Precisely Connect
L4_Investment_Segment
Application Data Integration
L5_Product_Group
ADI - Connect
L6_Product_Name
Connect CDC

For a list of all processed archive logs with the full path name, execute the following query:

select name from sys.<rpuser>_v_processed_logs

where <rpuser> is the metabase name, which results in a display similar to this:

NAME
C:\ORACLE9.2\ORADATA\ORCL\ARCHIVE\OMNI1_3649.ARC
C:\ORACLE9.2\ORADATA\ORCL\ARCHIVE\OMNI1_3650.ARC
C:\ORACLE9.2\ORADATA\ORCL\ARCHIVE\OMNI1_3651.ARC

To get the archive log sequence numbers execute the following query:

select sequence# from sys.<rpuser>_v_processed_logs

which results in the display:

SEQUENCE#
3649
3650
3651

For the minimum and maximum sequence numbers, execute the following query:

select min(sequence#) first, max(sequence#) last from <rpuser>_v_processed_logs

which results in the display similar to:

FIRST        LAST
3649         3651   

The values this query returns represent the range of archive log sequence numbers that are safe to be deleted. For example, with the results of the above query, the following Recovery Manager command can be used to delete archive logs.

BACKUP ARCHIVELOG FROM SEQUENCE 3649 UNTIL SEQUENCE 3651 DELETE INPUT;