@@ -71,13 +71,15 @@ should reboot your Oracle AWS RDS instance.
7171
7272Once ` LOG_MODE `  is correctly set to ARCHIVELOG, execute the following
7373commands to complete the LogMiner configuration. The first command enables
74- archive logging and the second adds supplemental logging.
74+ archive logging and the second adds [ supplemental logging] ( #supp-logging ) .
7575
7676``` sql 
7777exec rdsadmin .rdsadmin_util .set_configuration(' archivelog retention hours' 24 );
7878exec rdsadmin .rdsadmin_util .alter_supplemental_logging(' ADD' 
7979``` 
8080
81+ ## 2. Enable supplemental logging {#supp-logging}  
82+ 
8183You must enable supplemental logging for the tables you want to capture or
8284for the entire database. This lets Debezium capture the state of
8385database rows before and after changes occur. 
@@ -100,7 +102,7 @@ the following command:
100102ALTER  DATABASE  ADD SUPPLEMENTAL LOG DATA;
101103``` 
102104
103- ## 2 . Check the redo log sizing 
105+ ## 3 . Check the redo log sizing 
104106
105107Before you use the Debezium connector, you should check with your
106108database administrator that there are enough
@@ -110,7 +112,7 @@ of tables and columns in the database. If you don't have enough capacity in
110112the logs then you might see performance problems with both the database and
111113the Debezium connector.
112114
113- ## 3 . Set the Archive log destination 
115+ ## 4 . Set the Archive log destination 
114116
115117You can configure up to 31 different destinations for archive logs
116118(you must have administrator privileges to do this). You can set parameters for
@@ -140,7 +142,7 @@ use the following setting:
140142}
141143``` 
142144
143- ## 4 . Create a user for the connector 
145+ ## 5 . Create a user for the connector 
144146
145147The Debezium Oracle connector must run as an Oracle LogMiner user with
146148specific permissions. The following example shows some SQL that creates
@@ -197,7 +199,7 @@ GRANT SELECT ON V_$STATNAME TO c##dbzuser CONTAINER=ALL;
197199exit;
198200``` 
199201
200- ## 5 . Configuration is complete 
202+ ## 6 . Configuration is complete 
201203
202204Once you have followed the steps above, your Oracle database is ready
203205for Debezium to use.
0 commit comments