Skip to content

Commit 97363d5

Browse files
DOC-4384 fix previous incorrect change
1 parent 765fbfd commit 97363d5

File tree

1 file changed

+7
-5
lines changed
  • content/integrate/redis-data-integration/data-pipelines/prepare-dbs

1 file changed

+7
-5
lines changed

content/integrate/redis-data-integration/data-pipelines/prepare-dbs/oracle.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,15 @@ should reboot your Oracle AWS RDS instance.
7171

7272
Once `LOG_MODE` is correctly set to ARCHIVELOG, execute the following
7373
commands 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
7777
exec rdsadmin.rdsadmin_util.set_configuration('archivelog retention hours',24);
7878
exec rdsadmin.rdsadmin_util.alter_supplemental_logging('ADD');
7979
```
8080

81+
## 2. Enable supplemental logging {#supp-logging}
82+
8183
You must enable supplemental logging for the tables you want to capture or
8284
for the entire database. This lets Debezium capture the state of
8385
database rows before and after changes occur.
@@ -100,7 +102,7 @@ the following command:
100102
ALTER DATABASE ADD SUPPLEMENTAL LOG DATA;
101103
```
102104

103-
## 2. Check the redo log sizing
105+
## 3. Check the redo log sizing
104106

105107
Before you use the Debezium connector, you should check with your
106108
database administrator that there are enough
@@ -110,7 +112,7 @@ of tables and columns in the database. If you don't have enough capacity in
110112
the logs then you might see performance problems with both the database and
111113
the Debezium connector.
112114

113-
## 3. Set the Archive log destination
115+
## 4. Set the Archive log destination
114116

115117
You 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

145147
The Debezium Oracle connector must run as an Oracle LogMiner user with
146148
specific permissions. The following example shows some SQL that creates
@@ -197,7 +199,7 @@ GRANT SELECT ON V_$STATNAME TO c##dbzuser CONTAINER=ALL;
197199
exit;
198200
```
199201

200-
## 5. Configuration is complete
202+
## 6. Configuration is complete
201203

202204
Once you have followed the steps above, your Oracle database is ready
203205
for Debezium to use.

0 commit comments

Comments
 (0)