Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
197a8f1
DOC-5937 trial Oracle checklist
andy-stark-redis Nov 7, 2025
223a915
Merge branch 'main' into DOC-5937-rdi-source-prep-checklists
andy-stark-redis Nov 13, 2025
a465e25
DOC-5937 made checkboxes look more 'interactive'
andy-stark-redis Nov 13, 2025
6a81fb2
DOC-5937 added hidden MongoDB checklist
andy-stark-redis Nov 13, 2025
19d555f
DOC-5937 added hidden MySQL checklist
andy-stark-redis Nov 13, 2025
c1baee5
DOC-5937 added PostgreSQL checklists and extra anchors in list
andy-stark-redis Nov 13, 2025
fd826a2
DOC-5937 added Spanner checklists plus new list item anchors
andy-stark-redis Nov 13, 2025
ab19fa0
DOC-5937 added SQL Server checklist
andy-stark-redis Nov 13, 2025
110ba74
DOC-5937 added AWS Aurora MySQL checklists and new anchors
andy-stark-redis Nov 13, 2025
1589216
DOC-5937 added AWS Aurora PostgreSQL checklists and new anchors
andy-stark-redis Nov 13, 2025
1b17ad2
DOC-5937 added AWS RDS SQL Server checklists and new anchors
andy-stark-redis Nov 13, 2025
1f3fa28
DOC-5937 made MongoDB checklist interactive
andy-stark-redis Nov 14, 2025
7b8aeb2
DOC-5937 made MySQL checklist interactive plus added sublists
andy-stark-redis Nov 14, 2025
9b306d8
DOC-5937 make PostrgreSQL checklist interactive plus add mini-lists
andy-stark-redis Nov 14, 2025
b93f69b
DOC-5937 made Spanner checklist interactive plus added mini-lists
andy-stark-redis Nov 14, 2025
e0c6dc9
DOC-5937 made SQL Server checklist interactive plus added mini-lists
andy-stark-redis Nov 14, 2025
6f6bc4c
DOC-5937 small formatting changes
andy-stark-redis Nov 14, 2025
acd0bf8
DOC-5937 fixes to AWS Aurora MySQL lists
andy-stark-redis Nov 14, 2025
ebb0e0a
DOC-5937 fixes for AWS Aurora SQL server lists
andy-stark-redis Nov 14, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,37 @@ Oracle provides two main systems that Debezium can use to capture data changes:
- [LogMiner](#logminer)
- [XStream](#xstream)

The sections below explain how to configure each system for use with Debezium and RDI.
The sections below explain how to configure each system for use with Debezium and RDI.
The checklists summarize the steps you should follow to configure each system.
You may find it helpful to use them to track your progress as you work through the steps.

**LogMiner**

```checklist {id="oraclelogminerlist"}
- [ ] [Configure Oracle LogMiner](#1-configure-oracle-logminer)
- [ ] [Enable supplemental logging](#supp-logging)
- [ ] [Check the redo log sizing](#3-check-the-redo-log-sizing)
- [ ] [Set the Archive log destination](#4-set-the-archive-log-destination)
- [ ] [Create a user for the connector](#create-dbz-user)
```

**XStream**

```checklist {id="oraclexstreamlist"}
- [ ] [Configure Xstream](#1-configure-xstream)
- [ ] [Create Xstream users](#2-create-xstream-users)
- [ ] [Create an Xstream outbound server](#3-create-an-xstream-outbound-server)
- [ ] [Add a custom Docker image for the Debezium server](#4-add-a-custom-docker-image-for-the-debezium-server)
- [ ] [Enable the Oracle configuration in RDI](#5-enable-the-oracle-configuration-in-rdi)
```

**Optional: XMLTYPE Support**

```checklist {id="oraclexmltypelist"}
- [ ] [Create a custom Debezium Server image](#create-a-custom-debezium-server-image)
- [ ] [Configure RDI for XMLTYPE support](#configure-rdi-for-xmltype-support)
- [ ] [Test XMLTYPE support](#test-xmltype-support)
```

## LogMiner

Expand Down Expand Up @@ -330,7 +360,7 @@ you should also revoke `LOCK` on all tables:
REVOKE LOCK ANY TABLE FROM c##dbzuser container=all;
```

### 6. Configuration is complete
### 6. Configuration is complete {#logminer-complete}

Once you have followed the steps above, your Oracle database is ready
for Debezium to use.
Expand Down Expand Up @@ -627,7 +657,7 @@ See the
[Debezium Oracle documentation](https://debezium.io/documentation/reference/stable/connectors/oracle.html#oracle-connector-properties)
for a full list of properties you can use in the `advanced.source` subsection.

### 6. Configuration is complete
### 6. Configuration is complete {#xstream-complete}

After you have followed the steps above, your Oracle database is ready
for Debezium to use.
Expand Down