Skip to content

Commit 0353c56

Browse files
DOC-4985 implemented feedback about signals table
1 parent 1e8e47b commit 0353c56

File tree

1 file changed

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

1 file changed

+3
-5
lines changed

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

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ you might want to prevent the Debezium user from creating tables, or
216216
selecting or locking any table.
217217

218218
The Debezium user needs the `CREATE TABLE` privilege to create the
219-
`LOG_MINING_FLUSH` and `signals` tables when it connects for the first
219+
`LOG_MINING_FLUSH` table when it connects for the first
220220
time. After this point, it doesn't need to create any more tables,
221221
so you can safely revoke this privilege with the following command:
222222

@@ -225,8 +225,8 @@ REVOKE CREATE TABLE FROM c##dbzuser container=all;
225225
```
226226

227227
[The example above](#create-dbz-user) grants the `SELECT ANY TABLE` and
228-
`FLASHBACK ANY TABLE` privileges for convenience, but only the tables synced to RDI,
229-
the `signals` table, and the `V_$XXX` tables strictly need these privileges.
228+
`FLASHBACK ANY TABLE` privileges for convenience, but only the tables synced to RDI
229+
and the `V_$XXX` tables strictly need these privileges.
230230
You can replace the `GRANT SELECT ANY TABLE` command with explicit
231231
commands for each table. For example, you would use commands like the
232232
following for the tables in our sample
@@ -235,7 +235,6 @@ database. (Note that Oracle 19c requires you to run a separate `GRANT`
235235
command for each table individually.)
236236

237237
```sql
238-
GRANT SELECT ON signals TO c##dbzuser;
239238
GRANT SELECT ON chinook.album TO c##dbzuser;
240239
GRANT SELECT ON chinook.artist TO c##dbzuser;
241240
GRANT SELECT ON chinook.customer TO c##dbzuser;
@@ -246,7 +245,6 @@ Similarly, instead of `GRANT FLASHBACK ANY TABLE`, you would use the following
246245
commands:
247246

248247
```sql
249-
GRANT FLASHBACK ON signals TO c##dbzuser;
250248
GRANT FLASHBACK ON chinook.album TO c##dbzuser;
251249
GRANT FLASHBACK ON chinook.artist TO c##dbzuser;
252250
GRANT FLASHBACK ON chinook.customer TO c##dbzuser;

0 commit comments

Comments
 (0)