Skip to content

Commit 58c319c

Browse files
committed
add an example for adding a signal table and a new table to the pipeline(Oracle)
1 parent 618af3d commit 58c319c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

content/rdi/installation/adding-tables-to-existing-pipeline.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ The data-collections array lists tables by their fully-qualified names, using th
128128

129129
## Example for Adding a Signaling Table for Oracle Database
130130

131-
1. Creating a signaling table `DEBEZIUM_SIGNAL`:
131+
1. Create a signaling table `DEBEZIUM_SIGNAL`:
132132

133133
```sql
134134
CREATE TABLE DEBEZIUM_SIGNAL
@@ -139,7 +139,7 @@ The data-collections array lists tables by their fully-qualified names, using th
139139
);
140140
```
141141

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:
143143

144144
```properties
145145
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
149149
150150
3. Enable supplemental logging for the `DEBEZIUM_SIGNAL` table:
151151

152-
```
152+
```sql
153153
ALTER table c##dbzuser.DEBEZIUM_SIGNAL add SUPPLEMENTAL LOG DATA(ALL) COLUMNS;
154154
```
155155

156156
> Note: If the supplemental logging is enabled for the entire database you can skip this step.
157157
158-
4. Restart the Debezium Server
158+
4. Restart the Debezium Server.
159159

160160
## Example for Adding the EMP table to the pipeline
161161

@@ -170,11 +170,11 @@ The data-collections array lists tables by their fully-qualified names, using th
170170
To enable supplemental logging for all the table columns:
171171

172172
```sql
173-
ALTER Table c##dbzuser.EMP add SUPPLEMENTAL LOG DATA(ALL)
173+
ALTER TABLE c##dbzuser.EMP ADD SUPPLEMENTAL LOG DATA(ALL)
174174
COLUMNS
175175
```
176176

177-
3. Restart the `Debezium Server`
177+
3. Restart the `Debezium Server`.
178178

179179
4. To trigger the `incremental snapshot` for the `EMP table, run:
180180

@@ -185,4 +185,4 @@ The data-collections array lists tables by their fully-qualified names, using th
185185

186186
> Note: The column `id` is a unique string in the DEBEZIUM_SIGNAL table
187187
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

Comments
 (0)