Skip to content

Commit 451afb3

Browse files
Apply suggestions from code review
Co-authored-by: andy-stark-redis <[email protected]>
1 parent a87d469 commit 451afb3

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ To comply with security policies, you can modify the `SELECT ANY TABLE` and `FLA
157157
so that the connector can access only those tables that you intend to capture.
158158

159159
Do not modify other grants, such as the `SELECT ANY TRANSACTION` grant,
160-
or the set of `SELECT ON V_$` grants, which provide access to dynamic performance views (`V$`).
160+
or the set of `SELECT ON V_$` grants, which provide access to dynamic performance views (`V_$`).
161161
These grants are required for the connector to function.
162162

163163
{{< note >}}To prevent data loss, if you restrict the scope of the SELECT and FLASHBACK grants,
@@ -228,7 +228,7 @@ exit;
228228
|--------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
229229
| CREATE SESSION | Enables the connector to connect to Oracle. |
230230
| SET CONTAINER | Enables the connector to switch between pluggable databases. This is only required when the Oracle installation has container database support (CDB) enabled. |
231-
| SELECT ON V_$DATABASE | Enables the connector to read the V$DATABASE table. |
231+
| SELECT ON V_$DATABASE | Enables the connector to read the V_$DATABASE table. |
232232
| FLASHBACK ANY TABLE | Enables the connector to perform Flashback queries, which is how the connector performs the initial snapshot of data. Optionally, rather than granting FLASHBACK permission on all tables, you can grant the FLASHBACK privilege for specific tables only. |
233233
| SELECT ANY TABLE | Enables the connector to read any table. Optionally, rather than granting SELECT permission on all tables, you can grant the SELECT privilege for specific tables only. |
234234
| SELECT_CATALOG_ROLE | Enables the connector to read the data dictionary, which is needed by Oracle LogMiner sessions. |

0 commit comments

Comments
 (0)