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
Copy file name to clipboardExpand all lines: product_docs/docs/migration_portal/4/known_issues_notes.mdx
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -245,17 +245,17 @@ While using the Oracle default case, you may experience a lower compatibility ra
245
245
- The EDB DDL Extractor currently doesn't support the extraction of `ROLES`, `SYSTEM GRANTS ON ROLES`, `OBJECT GRANTS ON ROLES`, and `ROLE GRANTS` from Oracle 11g. This behavior results in error messages being written to the extracted files in the sections corresponding to these object types. These errors don't cause any issue in the assessment of these files by Migration Portal.
246
246
- The EDB DDL Extractor script may log `object "OBJECT_NAME" of type SYNONYM not found in schema "PUBLIC"` errors in the dependent objects section of the extracted file. This happens only if the user selects the option to extract dependent objects from an Oracle multi tenant environment where the Oracle database is a container database.
247
247
248
-
### "Snapshot Too Old" Error
248
+
### "Snapshot Too Old" error
249
249
250
-
The EDB DDL Extractor displays the error “ORA-01555: snapshot too old“ at runtime when the database server generates a volume of transactions that cannot be properly processed by the UNDO tablespace.
250
+
The EDB DDL Extractor displays the error “ORA-01555: snapshot too old“ at runtime when the database server generates a volume of transactions that can't be properly processed by the UNDO tablespace.
251
251
252
252
When the database server generates undo transactions at a high rate, it can cause the server to run out of space to store undo data. Since the UNDO tablespace is implemented as a circular buffer, it starts overwriting older undo data blocks. Resolve this error and rerun the EDB DDL Extractor to ensure you extract the DDLs without any errors.
253
253
254
-
To work around this error, increase the allocated space for the UNDO_RETENTION parameter.
254
+
To work around this error, increase the allocated space for the `UNDO_RETENTION` parameter.
255
255
256
256
First, check the currently allocated total space for undo operations and the currently free space:
257
257
258
-
1. Check the existing value of the UNDO_RETENTION parameter:
258
+
1. Check the existing value of the `UNDO_RETENTION` parameter:
259
259
260
260
```sql
261
261
SELECT value FROM v$parameter WHERE name ='undo_retention';
@@ -283,14 +283,14 @@ Next, determine the number of MB your environment requires and increase the allo
283
283
```
284
284
285
285
!!!note
286
-
The value reflects the number of undo blocks consumed during a 10-minute interval, then converted into MB.
286
+
The value reflects the number of undo blocks consumed during a 10-minute interval, converted to MB.
287
287
!!!
288
288
289
289
1. Calculate the total number of MB your environment requires for the UNDO tablespace. For example, if the transaction volume generates X MB of undo data per minute, and the requirement is to retain the data for Y minutes:
290
290
291
291
UNDO Space (MB) = X (MB/min) × Y (min)
292
292
293
-
1. Update the UNDO_RETENTION parameter according to the required space in MB. This example increases the storage space to 2400 MB.
293
+
1. Update the `UNDO_RETENTION` parameter according to the required space in MB. This example increases the storage space to 2400 MB:
0 commit comments