@@ -128,7 +128,7 @@ The data-collections array lists tables by their fully-qualified names, using th
128
128
129
129
## Example for Adding a Signaling Table for Oracle Database
130
130
131
- 1 . Creating a signaling table ` DEBEZIUM_SIGNAL ` :
131
+ 1 . Create a signaling table ` DEBEZIUM_SIGNAL ` :
132
132
133
133
``` sql
134
134
CREATE TABLE DEBEZIUM_SIGNAL
@@ -139,7 +139,7 @@ The data-collections array lists tables by their fully-qualified names, using th
139
139
);
140
140
```
141
141
142
- 2 . Adding the property ` debezium.source.signal.data.collection ` to the ` application.properties ` file:
142
+ 2 . Add the property ` debezium.source.signal.data.collection ` to the ` application.properties ` file:
143
143
144
144
``` properties
145
145
debezium.source.signal.data.collection =ORCLPDB1.C# #DBZUSER.DEBEZIUM_SIGNAL
@@ -149,13 +149,13 @@ The data-collections array lists tables by their fully-qualified names, using th
149
149
150
150
3 . Enable supplemental logging for the ` DEBEZIUM_SIGNAL ` table:
151
151
152
- ```
152
+ ``` sql
153
153
ALTER table c# #dbzuser.DEBEZIUM_SIGNAL add SUPPLEMENTAL LOG DATA(ALL) COLUMNS;
154
154
```
155
155
156
156
> Note: If the supplemental logging is enabled for the entire database you can skip this step.
157
157
158
- 4 . Restart the Debezium Server
158
+ 4 . Restart the Debezium Server.
159
159
160
160
## Example for Adding the EMP table to the pipeline
161
161
@@ -170,11 +170,11 @@ The data-collections array lists tables by their fully-qualified names, using th
170
170
To enable supplemental logging for all the table columns:
171
171
172
172
``` sql
173
- ALTER Table c# #dbzuser.EMP add SUPPLEMENTAL LOG DATA(ALL)
173
+ ALTER TABLE c# #dbzuser.EMP ADD SUPPLEMENTAL LOG DATA(ALL)
174
174
COLUMNS
175
175
```
176
176
177
- 3 . Restart the ` Debezium Server `
177
+ 3 . Restart the ` Debezium Server ` .
178
178
179
179
4 . To trigger the ` incremental snapshot ` for the `EMP table, run:
180
180
@@ -185,4 +185,4 @@ The data-collections array lists tables by their fully-qualified names, using th
185
185
186
186
> Note: The column ` id ` is a unique string in the DEBEZIUM_SIGNAL table
187
187
188
- 5 . The ` EMP ` table will be added to the pipeline, and irs keys will be stored in the RDI bdb with no need to run ` redis-di reset `
188
+ 5 . The ` EMP ` table will be added to the pipeline, and irs keys will be stored in the RDI bdb with no need to run ` redis-di reset ` .
0 commit comments