@@ -10,11 +10,11 @@ Configure Migration Prerequisites for Oracle
10
10
:depth: 1
11
11
:class: singlecol
12
12
13
- When migrating data from an Oracle source database, the database may require
13
+ When you migrate data from an Oracle source database, that database may require
14
14
configuration changes. If Relational Migrator determines the
15
15
database needs configuration changes, it automatically generates a
16
16
SQL script with the required changes. Have a Database Administrator (DBA)
17
- review the script, then have them run the commands on the database server.
17
+ review the script and run the commands on the database server.
18
18
19
19
Oracle configuration depends on the type of migration job:
20
20
@@ -28,15 +28,15 @@ About this Task
28
28
29
29
- If you're migrating from an Oracle 12c instance, you must run commands as
30
30
the SYSDBA role.
31
- - Oracle 12c introduced the concept of a pluggable database. Some
31
+ - Oracle 12c introduced the concept of a pluggable database (PDB) . Some
32
32
of these commands can be run on a PDB (pluggable database), while commands
33
- such as enabling ``ARCHIVELOG`` must be run on the
34
- CDB ( container/master database). For details on each architecture,
33
+ like enabling ``ARCHIVELOG`` must be run on the
34
+ container/master database (CDB ). For details on each architecture,
35
35
see `Overview of Container Databases and Pluggable Databases
36
36
<https://oracle-base.com/articles/12c/multitenant-overview-container-database-cdb-12cr1>`__.
37
37
- Some commands differ based on whether the database is single or
38
38
multi-tenant. In a multi-tenant database, permissions must
39
- include the suffix ``CONTAINER=ALL``
39
+ include the suffix ``CONTAINER=ALL``.
40
40
- Oracle Express editions don't support logging the necessary information for
41
41
continuous migration jobs, so you can't run continuous migration against an
42
42
Oracle XE database.
98
98
99
99
.. step:: Turn on archive logging
100
100
101
- a. To check if archive logging is already enabled, run the following query:
101
+ a. To see if archive logging is already enabled, run the following query:
102
102
103
103
.. code-block:: sql
104
104
:copyable: true
@@ -108,10 +108,10 @@ Steps
108
108
This outputs ``ARCHIVELOG`` if logging is enabled, or
109
109
``NOARCHIVELOG`` if it isn't.
110
110
111
- #. Enable archive logging if it isn't already enabled.
111
+ #. If archive logging isn't already enabled, enable it.
112
112
113
113
The following is an example of the code Relational Migrator
114
- generates for enabling logging, which you can run manually by
114
+ The following code is an example. You can run it manually if you
115
115
substituting your database name. If you're migrating a
116
116
multi-tenant database, run these commands on the
117
117
container/master database.
@@ -128,7 +128,7 @@ Steps
128
128
129
129
.. step:: Enable supplemental logging
130
130
131
- a. To run continuous migration jobs against Oracle, enable
131
+ a. Enable
132
132
supplemental logging:
133
133
134
134
.. code-block:: sql
0 commit comments