@@ -216,7 +216,7 @@ you might want to prevent the Debezium user from creating tables, or
216216selecting or locking any table.
217217
218218The 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
220220time. After this point, it doesn't need to create any more tables,
221221so 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.
230230You can replace the ` GRANT SELECT ANY TABLE ` command with explicit
231231commands for each table. For example, you would use commands like the
232232following for the tables in our sample
@@ -235,7 +235,6 @@ database. (Note that Oracle 19c requires you to run a separate `GRANT`
235235command for each table individually.)
236236
237237``` sql
238- GRANT SELECT ON signals TO c# #dbzuser;
239238GRANT SELECT ON chinook .album TO c# #dbzuser;
240239GRANT SELECT ON chinook .artist TO c# #dbzuser;
241240GRANT SELECT ON chinook .customer TO c# #dbzuser;
@@ -246,7 +245,6 @@ Similarly, instead of `GRANT FLASHBACK ANY TABLE`, you would use the following
246245commands:
247246
248247``` sql
249- GRANT FLASHBACK ON signals TO c# #dbzuser;
250248GRANT FLASHBACK ON chinook .album TO c# #dbzuser;
251249GRANT FLASHBACK ON chinook .artist TO c# #dbzuser;
252250GRANT FLASHBACK ON chinook .customer TO c# #dbzuser;
0 commit comments