You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
commands can be run on a PDB, while commands like enabling ``ARCHIVELOG``
32
+
must be run on the container/master database (CDB). For details on each
33
+
architecture, see `Overview of Container Databases and Pluggable Databases <https://oracle-base.com/articles/12c/multitenant-overview-container-database-cdb-12cr1>`__.
37
34
- Some commands differ based on whether the database is single or
38
35
multi-tenant. In a multi-tenant database, permissions must
39
36
include the suffix ``CONTAINER=ALL``.
40
-
- Oracle Express editions don't support logging the necessary information for
41
-
continuous migration jobs, so you can't run continuous migration against an
42
-
Oracle XE database.
37
+
- You can't run a continuous migration job against Oracle Database Express
38
+
Edition (XE), because XE doesn't support the necessary logs.
43
39
44
40
Steps
45
41
-----
@@ -110,11 +106,10 @@ Steps
110
106
111
107
#. If archive logging isn't already enabled, enable it.
112
108
113
-
The following is an example of the code Relational Migrator
114
-
The following code is an example. You can run it manually if you
115
-
substituting your database name. If you're migrating a
116
-
multi-tenant database, run these commands on the
117
-
container/master database.
109
+
Relational Migrator can automatically generate code to enable
110
+
logging. The following code is an example. If you're migrating a
111
+
multi-tenant database, run these commands on the container/
112
+
master database.
118
113
119
114
.. code-block:: sql
120
115
:copyable: true
@@ -128,16 +123,14 @@ Steps
128
123
129
124
.. step:: Enable supplemental logging
130
125
131
-
a. Enable
132
-
supplemental logging:
126
+
a. Enable supplemental logging:
133
127
134
128
.. code-block:: sql
135
129
:copyable: true
136
130
137
131
ALTER DATABASE ADD SUPPLEMENTAL LOG DATA;
138
132
139
-
#. You must also enable supplemental logging for every
140
-
table in the migration:
133
+
#. Enable supplemental logging for every table in the migration:
0 commit comments