From e423b7b0d3ce9cc5f765b8de9cc7ce8efdc44bb9 Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Thu, 6 Jan 2022 16:17:54 +0530 Subject: [PATCH 01/18] Adding updates for replacing DDL extractor --- .../03_mp_overview_wiki.mdx | 2 +- .../01_mp_schema_extraction.mdx | 111 ++++++++---------- .../02_mp_schema_assessment.mdx | 2 +- 3 files changed, 53 insertions(+), 62 deletions(-) diff --git a/product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/03_mp_overview_wiki.mdx b/product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/03_mp_overview_wiki.mdx index 5adbfce6c3d..3812b1cf4d8 100644 --- a/product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/03_mp_overview_wiki.mdx +++ b/product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/03_mp_overview_wiki.mdx @@ -13,9 +13,9 @@ The Portal wiki page provides quick access to: - What’s New information - Quick Start guide +- Extracting schema - Migrating schema - Migrating data -- DDL Extractor guide - Knowledge Base - Repair handlers - Migration Portal User Guide diff --git a/product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/01_mp_schema_extraction.mdx b/product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/01_mp_schema_extraction.mdx index eca1f4dba9e..0611735e9e4 100644 --- a/product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/01_mp_schema_extraction.mdx +++ b/product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/01_mp_schema_extraction.mdx @@ -9,83 +9,74 @@ legacyRedirectsGenerated: -## Prerequisites +# Extracting Schema +This section guides you through the steps to use the Oracle’s Data Pump utility to extract Oracle schemas to a SQL dump file. You can extract metadata and data for a complete database or subsets of a database. However, Migration Portal only requires the metadata information in the SQL dump file to assess the extracted schemas. -Before extracting a schema, you must download the latest EDB DDL Extractor script from the Migration Portal Projects page or from the link provided in the DDL Extractor guide in the Portal wiki. You can run the script in SQL Developer or SQL\*Plus. It uses Oracle’s `DBMS_METADATA` built-in package to extract DDLs for different objects under schemas, which you specify while running the script. The EDB DDL extractor creates the DDL file uploaded to the portal and analyzed for EDB Postgres compatibility. +Note that Oracle Data Pump’s command-line clients expdp and impdp use the procedures provided in the DBMS_DATAPUMP PL/SQL package. -!!!Note - You must have `CONNECT` and `SELECT_CATALOG_ROLE` roles and `CREATE TABLE` privilege. +### Prerequisites -## For SQL\*Plus +* If you plan on exporting schemas that are not your own, ensure that you are assigned the *DATAPUMP_IMP_FULL_DATABASE* role. Otherwise, you can only export your own schema. -1. Connect to SQL\*Plus and run the command: +* Ensure that you have a sufficient tablespace quota to create objects in the tablespace. - `SQL>@edb_ddl_extractor.sql` +## Extract one or more schemas to an SQL dump file -2. Provide the schema name and the path or directory in which the extractor stores the extracted DDL. When extracting multiple schemas, use a comma (`‘,’`) as a delimiter. +The Data Pump utility can be run from SQL*Plus, as follows: -!!!Note - If you want to extract all the user schemas from the current database, don't mention any schema names while extracting. However, we recommend that you mention the schema names that you want to extract. +1. Create a directory object that points to a directory on your server file system. For example: + **On Linux**: + `SQL> create directory DMPDIR as '/sample/file/path';` + **On Windows**: + `SQL> create directory DMPDIR as 'c:\sample\file\path\';` -3. If you want to extract dependent objects from other schemas, enter `yes` or `no`. +2. Grant read, write permissions to the user running the Data Pump utility. +`SQL> grant read,write on directory DMPDIR to ;` -## On Linux +3. Before running the export command, create a parameter file with a *.par* extension and add the following attributes and values: + + + `CONTENT=metadata_only`: Extracts only the metadata of the schemas. + + `INCLUDE`: Specifies which database object types to include. Use this list to ensure that the Data Pump utility only extracts database object types supported by the Migration Portal. + + `EXCLUDE`: Specifies which schemas to exclude. Use this list to ensure that the Data Pump utility *does not* extract Oracle system schemas which are not supported by the Migration Portal. + + **Note**: (Optional) To extract all schemas in the database, you can enter `FULL=Y` in the par file. + + In this example, we create a parameters.par file with the following content: -```text -Enter a comma separated list of schemas to be extracted (Default all schemas): HR, SCOTT, FINANCE + ``` + $ cat parameters.par -Location for output file (Default current location) : /home/oracle/extracted_ddls/ + CONTENT=metadata_only -WARNING: + INCLUDE=SYNONYM,SEQUENCE,TYPE,TABLE,CONSTRAINT,PROCEDURE,FUNCTION,PACKAGE,INDEX,MATERIALIZED_VIEW,VIEW,TRIGGER,DB_LINK + + EXCLUDE=SCHEMA:"IN(select username as schema_name from sys.dba_users where LOWER(username) LIKE 'pg_%' OR username IN + ('ANONYMOUS','APEX_PUBLIC_USER','APEX_030200','APEX_040000','APEX_040200','APPQOSSYS','AUDSYS','CTXSYS','DMSYS','DBSNMP', + 'DBSFWUSER','DEMO','DIP','DMSYS', 'DVF','DVSYS','EXFSYS','FLOWS_FILES','FLOWS_020100', 'FRANCK','GGSYS','GSMADMIN_INTERNAL', + 'GSMCATUSER','GSMROOTUSER','GSMUSER','LBACSYS','MDDATA','MDSYS','MGMT_VIEW','OJVMSYS','OLAPSYS','ORDPLUGINS','ORDSYS', + 'ORDDATA','OUTLN','ORACLE_OCM','OWBSYS','OWBYSS_AUDIT','PDBADMIN','RMAN','REMOTE_SCHEDULER_AGENT','SI_INFORMTN_SCHEMA', + 'SPATIAL_CSW_ADMIN_USR','SPATIAL_WFS_ADMIN_USR','SQLTXADMIN','SQLTXPLAIN','SYS$UMF','SYS','SYSBACKUP','SYSDG','SYSKM', + 'SYSRAC','SYSTEM','SYSMAN','TSMSYS','WKPROXY','WKSYS','WK_TEST','WMSYS','XDB','XS$NULL'))" + ``` -Given schema(s) list may contain objects which are dependent on objects from other schema(s), not mentioned in the list.` `Assessment may fail for such objects. It is suggested to extract all dependent objects together. +4. Next, run the export command to generate a db.dump file with metadata. For example, to extract Schema1, Schema2, and Schema3 schemas to a db.dump file, run the following command: + + ``` + $ expdp @ DIRECTORY=DMPDIR SCHEMAS=Schema1,Schema2,Schema3 DUMPFILE=db.dump parfile=parameters.par + ``` + **Note**: If you have specified `FULL=Y` in your .par file, you must run the command without the schemas parameter, as follows: + + `expdp @ DIRECTORY=DMPDIR DUMPFILE=db.dump parfile=parameters.par` -Extract dependent object from other schemas?(yes/no) (Default no / Ignored for all schemas option): yes -``` +5. To generate a SQL file from the dump file, run the import command. -## On Windows + For example, to generate YourSchemas.SQL file from the db.dump file, enter the following command: + + `$ impdp @ DIRECTORY= TRANSFORM=OID:n SQLFILE=YourSchemas.sql DUMPFILE=db.dump` -```text -Enter comma separated list of schemas to be extracted (Default all schemas): HR, SCOTT, FINANCE -Location for output file (Default current location) : c:\Users\Example\Desktop\ +**Note**: Migration Portal might become unresponsive for large SQL files depending on your system’s and browser’s resource availability. If the SQL file size exceeds 1 GB, you can reduce the SQL file size by splitting the schemas across multiple SQL files and extracting fewer schemas in each SQL file. -WARNING: - -Given schema(s) list may contain objects which are dependent on objects from other schema(s), not mentioned in the list.` `Assessment may fail for such objects. It is suggested to extract all dependent objects together. - -Extract dependent object from other schemas?(yes/no) (Default no / Ignored for all schemas option): yes -``` - -## For SQL Developers - -1. Connect to the SQL server and run the following command: - -![Enter the path for Linux or Windows.](../images/mp_schema_extraction_paths.png) - -2. Enter a comma-separated list of schemas: - -![Provide a list of schemas.](../images/mp_schema_extraction_list.png) - -3. Enter the path for the output file: - -![Specify the output file path.](../images/mp_schema_extraction_target.png) - -4. Enter **yes** or **no** to extract dependent objects: - -![Extracting dependent objects.](../images/mp_schema_dependent_objects.png) - -!!! Note - You can also enter a single schema name in both SQL\*Plus and SQL Developer. - -The script then iterates through the object types in the source database and, once the task is completed, the SQL output is stored at the location entered for the output file. - -## Additional notes - -- The EDB DDL Extractor script doesn't extract objects restored using Flashback that still have names like `BIN$b54+4XlEYwPgUAB/AQBWwA==$0`. If you want to extract these objects, you must change the name of the objects and rerun the extraction process. -- DDL Extractor extracts `nologging` tables as normal tables. Once these tables are migrated to EDB Postgres Advanced Server, `WAL` log files are created. -- DDL Extractor creates Global Temporary tables to store the schema names and their dependency information. These tables are dropped at the end of successful extraction. -- DDL Extractor script doesn't extract schemas whose name starts with `PG_` because PostgreSQL doesn't support this prefix. If you want to extract these schemas, you must change name of schema before extraction. ## Supported object types @@ -125,7 +116,7 @@ The Migration Portal supports the migration of the following object types: ## Oracle system schemas -EDB DDL Extractor script ignores the following system schemas while extracting from Oracle: +Migration Portal ignores the following Oracle system schemas: | | | | | --------------------- | --------------------- | ------------------ | diff --git a/product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx b/product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx index dd8e934d2c7..07c070139bc 100644 --- a/product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx +++ b/product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx @@ -29,7 +29,7 @@ You can assess an Oracle database schema for compatibility with EDB Postgres Adv - Select a source DB and version for the source. - Select the target DB and Version for the target. -6. To upload the .SQL file generated by the latest EDB DDL Extractor for Oracle Database, select **Choose file**. +6. To upload the .SQL file generated by the Data Pump utility, select **Choose file**. !!! Note - Don't modify the `.SQL` file. From 11cfbdee9def0937dc37740609edaf5bdca2519f Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Thu, 6 Jan 2022 22:32:42 +0530 Subject: [PATCH 02/18] Updating release version and Release notes section and support for EPAS 14 --- .../{3.4.0 => 3.4.1}/01_mp_release_notes/index.mdx | 4 ++-- .../{3.4.0 => 3.4.1}/02_supported_platforms.mdx | 2 +- .../03_mp_using_portal/01_mp_overview_home.mdx | 0 .../03_mp_using_portal/02_mp_overview_project.mdx | 0 .../03_mp_using_portal/03_mp_overview_wiki.mdx | 0 .../{3.4.0 => 3.4.1}/03_mp_using_portal/index.mdx | 0 .../01_mp_schema_extraction.mdx | 0 .../02_mp_schema_assessment.mdx | 0 .../03_mp_schema_migration.mdx | 0 .../04_mp_data_migration.mdx | 0 .../04_mp_migrating_database/index.mdx | 0 .../05_mp_advanced_data_migration.mdx | 0 .../migration_portal/{3.4.0 => 3.4.1}/images/1.png | 0 .../images/162980660731198462.textClipping | Bin .../migration_portal/{3.4.0 => 3.4.1}/images/3.png | 0 .../{3.4.0 => 3.4.1}/images/EDB_logo.png | 0 .../images/Migrate_Cloud_Finish.png | 0 .../{3.4.0 => 3.4.1}/images/biganimal.png | 0 .../{3.4.0 => 3.4.1}/images/edb_logo.svg | 0 .../{3.4.0 => 3.4.1}/images/edb_logo_full_color.svg | 0 .../migrate_cloud_select_platform_updated.png | 0 .../images/mp_enterprisedb_website.png | 0 .../images/mp_migrate_cloud_connection.png | 0 .../images/mp_migrate_cloud_connection_complete.png | 0 ..._migrate_cloud_connection_complete_updatated.png | 0 .../images/mp_migrate_cloud_connection_updated.png | 0 .../images/mp_migrate_cloud_finish_1.png | 0 .../mp_migrate_cloud_launch_cluster_updated.png | 0 .../images/mp_migrate_cloud_select_platform.png | 0 .../images/mp_migrate_cloud_success_updated.png | 0 .../{3.4.0 => 3.4.1}/images/mp_new_filters.png | 0 .../{3.4.0 => 3.4.1}/images/mp_overview_home.png | 0 .../images/mp_overview_home_updated.png | 0 .../images/mp_overview_project_kb.png | 0 .../images/mp_overview_project_numbered.png | 0 .../{3.4.0 => 3.4.1}/images/mp_overview_wiki.png | 0 .../{3.4.0 => 3.4.1}/images/mp_overview_wiki_1.png | 0 .../{3.4.0 => 3.4.1}/images/mp_overview_wiki_2.png | 0 .../{3.4.0 => 3.4.1}/images/mp_overview_wiki_5.png | 0 .../images/mp_schema_assessment_analysis_result.png | 0 .../images/mp_schema_assessment_errors.png | 0 .../images/mp_schema_assessment_incompatible.png | 0 .../images/mp_schema_assessment_new_project.png | 0 .../images/mp_schema_assessment_new_project_1.png | 0 .../images/mp_schema_assessment_new_project_2.png | 0 .../images/mp_schema_assessment_new_project_4.png | 0 .../mp_schema_assessment_new_project_4_edited.png | 0 .../images/mp_schema_assessment_new_project_5.png | 0 .../mp_schema_assessment_new_project_edited.png | 0 .../images/mp_schema_assessment_schema_report.png | 0 .../mp_schema_assessment_schema_report_pdf.png | 0 .../images/mp_schema_assessment_select_schema.png | 0 .../images/mp_schema_assessment_verifying_ddl.png | 0 .../images/mp_schema_assessment_workaround.png | 0 .../images/mp_schema_dependent_objects.png | 0 .../images/mp_schema_extraction_list.png | 0 .../images/mp_schema_extraction_paths.png | 0 .../images/mp_schema_extraction_target.png | 0 .../images/mp_schema_mig_cloud_cluster.png | 0 .../mp_schema_mig_cloud_cluster_connection_page.png | 0 .../mp_schema_mig_cloud_cluster_connection_test.png | 0 .../images/mp_schema_mig_cloud_epas_mig_success.png | 0 .../mp_schema_mig_cloud_epas_schemas_selection.png | 0 .../images/mp_schema_mig_cloud_option.png | 0 .../images/mp_schema_mig_exist_epas_contact_us.png | 0 .../images/mp_schema_mig_exist_epas_download.png | 0 .../images/mp_schema_mig_exist_epas_mig_success.png | 0 .../mp_schema_mig_exist_epas_schemas_selection.png | 0 ...chema_mig_exist_epas_schemas_selection_linux.png | 0 .../images/mp_schema_mig_exist_epas_windows.png | 0 .../images/mp_schema_mig_exist_linux.png | 0 .../images/mp_schema_mig_new_epas_download.png | 0 .../images/mp_schema_mig_new_epas_import.png | 0 .../images/mp_schema_mig_new_epas_linux.png | 0 .../images/mp_schema_mig_new_epas_linux_guide.png | 0 .../images/mp_schema_mig_new_epas_linux_import.png | 0 .../images/mp_schema_mig_new_epas_linux_repo.png | 0 .../images/mp_schema_mig_new_epas_mig_success..png | 0 .../images/mp_schema_mig_new_epas_mig_success.png | 0 ...p_schema_mig_new_epas_schemas_selection copy.png | 0 .../mp_schema_mig_new_epas_schemas_selection.png | 0 .../images/mp_schema_mig_new_epas_windows.png | 0 .../images/mp_schema_mig_new_epas_windows_guide.png | 0 .../mp_schema_mig_new_epas_windows_import.png | 0 .../mp_schema_mig_new_epas_windows_installer.png | 0 .../images/mp_schema_migration_cds.png | 0 .../mp_schema_migration_connection_details.png | 0 .../mp_schema_migration_connection_successful.png | 0 .../images/mp_schema_migration_deployed.png | 0 .../mp_schema_migration_download_file_button.png | 0 .../mp_schema_migration_download_file_option.png | 0 .../images/mp_schema_migration_existing_epas.png | 0 .../images/mp_schema_migration_home.png | 0 .../images/mp_schema_migration_home_cloud.png | 0 .../images/mp_schema_migration_home_new.png | 0 .../mp_schema_migration_select_schemas (copy).png | 0 .../images/mp_schema_migration_select_schemas.png | 0 .../{3.4.0 => 3.4.1}/images/mp_using_portal.png | 0 .../images/mp_using_portal_accessing.png | 0 .../mp_whats_new_assessment_report_rh_counts.png | 0 .../images/mp_whats_new_branding_updates.png | 0 .../images/mp_whats_new_common_failures.png | 0 .../mp_whats_new_compatibility_guage_color.png | 0 .../{3.4.0 => 3.4.1}/images/mp_whats_new_csv.png | 0 .../images/mp_whats_new_objects_repaired_by_me.png | 0 .../images/mp_whats_new_prepopulated_email.png | 0 .../images/mp_whats_new_warning_sign.png | 0 .../images/project page overview.png | 0 .../images/select-operating-system-linux.png | 0 .../{3.4.0 => 3.4.1}/images/test.png | 0 .../{3.4.0 => 3.4.1}/images/whats_new_new_look.png | 0 .../migration_portal/{3.4.0 => 3.4.1}/index.mdx | 0 112 files changed, 3 insertions(+), 3 deletions(-) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/01_mp_release_notes/index.mdx (88%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/02_supported_platforms.mdx (91%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/03_mp_using_portal/01_mp_overview_home.mdx (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/03_mp_using_portal/02_mp_overview_project.mdx (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/03_mp_using_portal/03_mp_overview_wiki.mdx (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/03_mp_using_portal/index.mdx (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/04_mp_migrating_database/01_mp_schema_extraction.mdx (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/04_mp_migrating_database/02_mp_schema_assessment.mdx (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/04_mp_migrating_database/03_mp_schema_migration.mdx (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/04_mp_migrating_database/04_mp_data_migration.mdx (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/04_mp_migrating_database/index.mdx (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/05_mp_advanced_data_migration.mdx (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/1.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/162980660731198462.textClipping (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/3.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/EDB_logo.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/Migrate_Cloud_Finish.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/biganimal.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/edb_logo.svg (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/edb_logo_full_color.svg (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/migrate_cloud_select_platform_updated.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_enterprisedb_website.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_migrate_cloud_connection.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_migrate_cloud_connection_complete.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_migrate_cloud_connection_complete_updatated.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_migrate_cloud_connection_updated.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_migrate_cloud_finish_1.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_migrate_cloud_launch_cluster_updated.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_migrate_cloud_select_platform.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_migrate_cloud_success_updated.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_new_filters.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_overview_home.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_overview_home_updated.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_overview_project_kb.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_overview_project_numbered.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_overview_wiki.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_overview_wiki_1.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_overview_wiki_2.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_overview_wiki_5.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_assessment_analysis_result.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_assessment_errors.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_assessment_incompatible.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_assessment_new_project.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_assessment_new_project_1.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_assessment_new_project_2.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_assessment_new_project_4.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_assessment_new_project_4_edited.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_assessment_new_project_5.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_assessment_new_project_edited.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_assessment_schema_report.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_assessment_schema_report_pdf.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_assessment_select_schema.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_assessment_verifying_ddl.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_assessment_workaround.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_dependent_objects.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_extraction_list.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_extraction_paths.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_extraction_target.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_cloud_cluster.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_cloud_cluster_connection_page.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_cloud_cluster_connection_test.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_cloud_epas_mig_success.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_cloud_epas_schemas_selection.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_cloud_option.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_exist_epas_contact_us.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_exist_epas_download.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_exist_epas_mig_success.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_exist_epas_schemas_selection.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_exist_epas_schemas_selection_linux.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_exist_epas_windows.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_exist_linux.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_new_epas_download.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_new_epas_import.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_new_epas_linux.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_new_epas_linux_guide.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_new_epas_linux_import.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_new_epas_linux_repo.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_new_epas_mig_success..png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_new_epas_mig_success.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_new_epas_schemas_selection copy.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_new_epas_schemas_selection.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_new_epas_windows.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_new_epas_windows_guide.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_new_epas_windows_import.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_mig_new_epas_windows_installer.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_migration_cds.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_migration_connection_details.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_migration_connection_successful.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_migration_deployed.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_migration_download_file_button.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_migration_download_file_option.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_migration_existing_epas.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_migration_home.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_migration_home_cloud.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_migration_home_new.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_migration_select_schemas (copy).png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_schema_migration_select_schemas.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_using_portal.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_using_portal_accessing.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_whats_new_assessment_report_rh_counts.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_whats_new_branding_updates.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_whats_new_common_failures.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_whats_new_compatibility_guage_color.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_whats_new_csv.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_whats_new_objects_repaired_by_me.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_whats_new_prepopulated_email.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/mp_whats_new_warning_sign.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/project page overview.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/select-operating-system-linux.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/test.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/images/whats_new_new_look.png (100%) rename product_docs/docs/migration_portal/{3.4.0 => 3.4.1}/index.mdx (100%) diff --git a/product_docs/docs/migration_portal/3.4.0/01_mp_release_notes/index.mdx b/product_docs/docs/migration_portal/3.4.1/01_mp_release_notes/index.mdx similarity index 88% rename from product_docs/docs/migration_portal/3.4.0/01_mp_release_notes/index.mdx rename to product_docs/docs/migration_portal/3.4.1/01_mp_release_notes/index.mdx index 91d9bdec99c..0ba98d7c3ed 100644 --- a/product_docs/docs/migration_portal/3.4.0/01_mp_release_notes/index.mdx +++ b/product_docs/docs/migration_portal/3.4.1/01_mp_release_notes/index.mdx @@ -4,9 +4,9 @@ redirects: - ../01_whats_new/ --- -The Migration Portal documentation describes the latest version of Migration Portal 3.4.0 including minor releases and patches. The release notes in this section provide information on what was new in each release. For new functionality introduced in a minor or patch release, there are also indicators within the content about what release introduced the feature. +The Migration Portal documentation describes the latest version of Migration Portal. -New features, enhancements, bug fixes, and other changes in Migration Portal 3.4.0 include the following: +New features, enhancements, bug fixes, and other changes in Migration Portal 3.4.1 include the following: | Type | Description | | ---- |------------ | diff --git a/product_docs/docs/migration_portal/3.4.0/02_supported_platforms.mdx b/product_docs/docs/migration_portal/3.4.1/02_supported_platforms.mdx similarity index 91% rename from product_docs/docs/migration_portal/3.4.0/02_supported_platforms.mdx rename to product_docs/docs/migration_portal/3.4.1/02_supported_platforms.mdx index cd01e4ce096..9001da32e06 100644 --- a/product_docs/docs/migration_portal/3.4.0/02_supported_platforms.mdx +++ b/product_docs/docs/migration_portal/3.4.1/02_supported_platforms.mdx @@ -6,7 +6,7 @@ title: "Supported platforms" -The Migration Portal supports assessment and migration from Oracle 11g, 12c, 18c, and 19c to EDB Postgres Advanced Server 10, 11, 12, or 13. Migration Portal is supported on the following browsers and operating systems. +The Migration Portal supports assessment and migration from Oracle 11g, 12c, 18c, and 19c to EDB Postgres Advanced Server 10, 11, 12, 13, or 14. Migration Portal is supported on the following browsers and operating systems. ## Supported browsers diff --git a/product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/01_mp_overview_home.mdx b/product_docs/docs/migration_portal/3.4.1/03_mp_using_portal/01_mp_overview_home.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/01_mp_overview_home.mdx rename to product_docs/docs/migration_portal/3.4.1/03_mp_using_portal/01_mp_overview_home.mdx diff --git a/product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/02_mp_overview_project.mdx b/product_docs/docs/migration_portal/3.4.1/03_mp_using_portal/02_mp_overview_project.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/02_mp_overview_project.mdx rename to product_docs/docs/migration_portal/3.4.1/03_mp_using_portal/02_mp_overview_project.mdx diff --git a/product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/03_mp_overview_wiki.mdx b/product_docs/docs/migration_portal/3.4.1/03_mp_using_portal/03_mp_overview_wiki.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/03_mp_overview_wiki.mdx rename to product_docs/docs/migration_portal/3.4.1/03_mp_using_portal/03_mp_overview_wiki.mdx diff --git a/product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/index.mdx b/product_docs/docs/migration_portal/3.4.1/03_mp_using_portal/index.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/index.mdx rename to product_docs/docs/migration_portal/3.4.1/03_mp_using_portal/index.mdx diff --git a/product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/01_mp_schema_extraction.mdx b/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/01_mp_schema_extraction.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/01_mp_schema_extraction.mdx rename to product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/01_mp_schema_extraction.mdx diff --git a/product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx b/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/02_mp_schema_assessment.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx rename to product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/02_mp_schema_assessment.mdx diff --git a/product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/03_mp_schema_migration.mdx b/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/03_mp_schema_migration.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/03_mp_schema_migration.mdx rename to product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/03_mp_schema_migration.mdx diff --git a/product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/04_mp_data_migration.mdx b/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/04_mp_data_migration.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/04_mp_data_migration.mdx rename to product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/04_mp_data_migration.mdx diff --git a/product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/index.mdx b/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/index.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/index.mdx rename to product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/index.mdx diff --git a/product_docs/docs/migration_portal/3.4.0/05_mp_advanced_data_migration.mdx b/product_docs/docs/migration_portal/3.4.1/05_mp_advanced_data_migration.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/05_mp_advanced_data_migration.mdx rename to product_docs/docs/migration_portal/3.4.1/05_mp_advanced_data_migration.mdx diff --git a/product_docs/docs/migration_portal/3.4.0/images/1.png b/product_docs/docs/migration_portal/3.4.1/images/1.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/1.png rename to product_docs/docs/migration_portal/3.4.1/images/1.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/162980660731198462.textClipping b/product_docs/docs/migration_portal/3.4.1/images/162980660731198462.textClipping similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/162980660731198462.textClipping rename to product_docs/docs/migration_portal/3.4.1/images/162980660731198462.textClipping diff --git a/product_docs/docs/migration_portal/3.4.0/images/3.png b/product_docs/docs/migration_portal/3.4.1/images/3.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/3.png rename to product_docs/docs/migration_portal/3.4.1/images/3.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/EDB_logo.png b/product_docs/docs/migration_portal/3.4.1/images/EDB_logo.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/EDB_logo.png rename to product_docs/docs/migration_portal/3.4.1/images/EDB_logo.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/Migrate_Cloud_Finish.png b/product_docs/docs/migration_portal/3.4.1/images/Migrate_Cloud_Finish.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/Migrate_Cloud_Finish.png rename to product_docs/docs/migration_portal/3.4.1/images/Migrate_Cloud_Finish.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/biganimal.png b/product_docs/docs/migration_portal/3.4.1/images/biganimal.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/biganimal.png rename to product_docs/docs/migration_portal/3.4.1/images/biganimal.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/edb_logo.svg b/product_docs/docs/migration_portal/3.4.1/images/edb_logo.svg similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/edb_logo.svg rename to product_docs/docs/migration_portal/3.4.1/images/edb_logo.svg diff --git a/product_docs/docs/migration_portal/3.4.0/images/edb_logo_full_color.svg b/product_docs/docs/migration_portal/3.4.1/images/edb_logo_full_color.svg similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/edb_logo_full_color.svg rename to product_docs/docs/migration_portal/3.4.1/images/edb_logo_full_color.svg diff --git a/product_docs/docs/migration_portal/3.4.0/images/migrate_cloud_select_platform_updated.png b/product_docs/docs/migration_portal/3.4.1/images/migrate_cloud_select_platform_updated.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/migrate_cloud_select_platform_updated.png rename to product_docs/docs/migration_portal/3.4.1/images/migrate_cloud_select_platform_updated.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_enterprisedb_website.png b/product_docs/docs/migration_portal/3.4.1/images/mp_enterprisedb_website.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_enterprisedb_website.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_enterprisedb_website.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_connection.png b/product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_connection.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_connection.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_connection.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_connection_complete.png b/product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_connection_complete.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_connection_complete.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_connection_complete.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_connection_complete_updatated.png b/product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_connection_complete_updatated.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_connection_complete_updatated.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_connection_complete_updatated.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_connection_updated.png b/product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_connection_updated.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_connection_updated.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_connection_updated.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_finish_1.png b/product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_finish_1.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_finish_1.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_finish_1.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_launch_cluster_updated.png b/product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_launch_cluster_updated.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_launch_cluster_updated.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_launch_cluster_updated.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_select_platform.png b/product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_select_platform.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_select_platform.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_select_platform.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_success_updated.png b/product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_success_updated.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_success_updated.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_success_updated.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_new_filters.png b/product_docs/docs/migration_portal/3.4.1/images/mp_new_filters.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_new_filters.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_new_filters.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_overview_home.png b/product_docs/docs/migration_portal/3.4.1/images/mp_overview_home.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_overview_home.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_overview_home.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_overview_home_updated.png b/product_docs/docs/migration_portal/3.4.1/images/mp_overview_home_updated.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_overview_home_updated.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_overview_home_updated.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_overview_project_kb.png b/product_docs/docs/migration_portal/3.4.1/images/mp_overview_project_kb.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_overview_project_kb.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_overview_project_kb.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_overview_project_numbered.png b/product_docs/docs/migration_portal/3.4.1/images/mp_overview_project_numbered.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_overview_project_numbered.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_overview_project_numbered.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_overview_wiki.png b/product_docs/docs/migration_portal/3.4.1/images/mp_overview_wiki.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_overview_wiki.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_overview_wiki.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_overview_wiki_1.png b/product_docs/docs/migration_portal/3.4.1/images/mp_overview_wiki_1.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_overview_wiki_1.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_overview_wiki_1.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_overview_wiki_2.png b/product_docs/docs/migration_portal/3.4.1/images/mp_overview_wiki_2.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_overview_wiki_2.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_overview_wiki_2.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_overview_wiki_5.png b/product_docs/docs/migration_portal/3.4.1/images/mp_overview_wiki_5.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_overview_wiki_5.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_overview_wiki_5.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_analysis_result.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_analysis_result.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_analysis_result.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_analysis_result.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_errors.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_errors.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_errors.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_errors.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_incompatible.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_incompatible.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_incompatible.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_incompatible.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_1.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_1.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_1.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_1.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_2.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_2.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_2.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_2.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_4.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_4.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_4.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_4.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_4_edited.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_4_edited.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_4_edited.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_4_edited.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_5.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_5.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_5.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_5.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_edited.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_edited.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_edited.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_edited.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_schema_report.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_schema_report.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_schema_report.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_schema_report.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_schema_report_pdf.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_schema_report_pdf.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_schema_report_pdf.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_schema_report_pdf.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_select_schema.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_select_schema.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_select_schema.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_select_schema.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_verifying_ddl.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_verifying_ddl.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_verifying_ddl.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_verifying_ddl.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_workaround.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_workaround.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_workaround.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_workaround.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_dependent_objects.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_dependent_objects.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_dependent_objects.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_dependent_objects.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_extraction_list.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_extraction_list.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_extraction_list.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_extraction_list.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_extraction_paths.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_extraction_paths.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_extraction_paths.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_extraction_paths.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_extraction_target.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_extraction_target.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_extraction_target.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_extraction_target.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_cluster.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_cluster.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_cluster.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_cluster.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_cluster_connection_page.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_cluster_connection_page.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_cluster_connection_page.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_cluster_connection_page.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_cluster_connection_test.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_cluster_connection_test.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_cluster_connection_test.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_cluster_connection_test.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_epas_mig_success.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_epas_mig_success.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_epas_mig_success.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_epas_mig_success.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_epas_schemas_selection.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_epas_schemas_selection.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_epas_schemas_selection.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_epas_schemas_selection.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_option.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_option.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_option.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_option.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_exist_epas_contact_us.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_contact_us.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_exist_epas_contact_us.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_contact_us.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_exist_epas_download.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_download.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_exist_epas_download.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_download.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_exist_epas_mig_success.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_mig_success.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_exist_epas_mig_success.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_mig_success.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_exist_epas_schemas_selection.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_schemas_selection.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_exist_epas_schemas_selection.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_schemas_selection.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_exist_epas_schemas_selection_linux.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_schemas_selection_linux.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_exist_epas_schemas_selection_linux.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_schemas_selection_linux.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_exist_epas_windows.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_windows.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_exist_epas_windows.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_windows.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_exist_linux.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_linux.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_exist_linux.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_linux.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_download.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_download.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_download.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_download.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_import.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_import.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_import.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_import.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_linux.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_linux.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_linux.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_linux.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_linux_guide.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_linux_guide.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_linux_guide.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_linux_guide.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_linux_import.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_linux_import.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_linux_import.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_linux_import.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_linux_repo.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_linux_repo.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_linux_repo.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_linux_repo.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_mig_success..png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_mig_success..png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_mig_success..png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_mig_success..png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_mig_success.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_mig_success.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_mig_success.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_mig_success.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_schemas_selection copy.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_schemas_selection copy.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_schemas_selection copy.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_schemas_selection copy.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_schemas_selection.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_schemas_selection.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_schemas_selection.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_schemas_selection.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_windows.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_windows.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_windows.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_windows.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_windows_guide.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_windows_guide.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_windows_guide.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_windows_guide.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_windows_import.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_windows_import.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_windows_import.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_windows_import.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_windows_installer.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_windows_installer.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_windows_installer.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_windows_installer.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_cds.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_cds.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_cds.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_cds.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_connection_details.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_connection_details.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_connection_details.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_connection_details.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_connection_successful.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_connection_successful.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_connection_successful.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_connection_successful.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_deployed.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_deployed.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_deployed.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_deployed.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_download_file_button.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_download_file_button.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_download_file_button.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_download_file_button.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_download_file_option.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_download_file_option.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_download_file_option.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_download_file_option.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_existing_epas.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_existing_epas.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_existing_epas.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_existing_epas.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_home.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_home.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_home.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_home.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_home_cloud.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_home_cloud.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_home_cloud.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_home_cloud.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_home_new.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_home_new.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_home_new.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_home_new.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_select_schemas (copy).png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_select_schemas (copy).png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_select_schemas (copy).png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_select_schemas (copy).png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_select_schemas.png b/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_select_schemas.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_select_schemas.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_select_schemas.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_using_portal.png b/product_docs/docs/migration_portal/3.4.1/images/mp_using_portal.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_using_portal.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_using_portal.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_using_portal_accessing.png b/product_docs/docs/migration_portal/3.4.1/images/mp_using_portal_accessing.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_using_portal_accessing.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_using_portal_accessing.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_assessment_report_rh_counts.png b/product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_assessment_report_rh_counts.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_assessment_report_rh_counts.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_assessment_report_rh_counts.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_branding_updates.png b/product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_branding_updates.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_branding_updates.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_branding_updates.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_common_failures.png b/product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_common_failures.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_common_failures.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_common_failures.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_compatibility_guage_color.png b/product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_compatibility_guage_color.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_compatibility_guage_color.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_compatibility_guage_color.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_csv.png b/product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_csv.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_csv.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_csv.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_objects_repaired_by_me.png b/product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_objects_repaired_by_me.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_objects_repaired_by_me.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_objects_repaired_by_me.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_prepopulated_email.png b/product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_prepopulated_email.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_prepopulated_email.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_prepopulated_email.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_warning_sign.png b/product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_warning_sign.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_warning_sign.png rename to product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_warning_sign.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/project page overview.png b/product_docs/docs/migration_portal/3.4.1/images/project page overview.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/project page overview.png rename to product_docs/docs/migration_portal/3.4.1/images/project page overview.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/select-operating-system-linux.png b/product_docs/docs/migration_portal/3.4.1/images/select-operating-system-linux.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/select-operating-system-linux.png rename to product_docs/docs/migration_portal/3.4.1/images/select-operating-system-linux.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/test.png b/product_docs/docs/migration_portal/3.4.1/images/test.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/test.png rename to product_docs/docs/migration_portal/3.4.1/images/test.png diff --git a/product_docs/docs/migration_portal/3.4.0/images/whats_new_new_look.png b/product_docs/docs/migration_portal/3.4.1/images/whats_new_new_look.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/images/whats_new_new_look.png rename to product_docs/docs/migration_portal/3.4.1/images/whats_new_new_look.png diff --git a/product_docs/docs/migration_portal/3.4.0/index.mdx b/product_docs/docs/migration_portal/3.4.1/index.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.0/index.mdx rename to product_docs/docs/migration_portal/3.4.1/index.mdx From 3a36a667dcb2121af1e6d1807897adb1b328c7a1 Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Fri, 7 Jan 2022 18:48:56 +0530 Subject: [PATCH 03/18] Updated screenshot in using MP page --- .../docs/migration_portal/3.4.1/images/mp_using_portal.png | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100755 => 100644 product_docs/docs/migration_portal/3.4.1/images/mp_using_portal.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_using_portal.png b/product_docs/docs/migration_portal/3.4.1/images/mp_using_portal.png old mode 100755 new mode 100644 index 6491267a0b5..7e8d99c1ea0 --- a/product_docs/docs/migration_portal/3.4.1/images/mp_using_portal.png +++ b/product_docs/docs/migration_portal/3.4.1/images/mp_using_portal.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7c86bb27061e5a3ff71a2e275d16227afa455fd26f7c8a07dd589115a2d977f7 -size 150849 +oid sha256:793c4295c168d490cd5ee6936f05b15ebe09581264dd6b15f1d9a6f5a7d4f177 +size 225760 From 9f0c06bc77f0e20a52117c7355ce3bf29c836900 Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Fri, 7 Jan 2022 19:23:55 +0530 Subject: [PATCH 04/18] Updated screenshot with correct text and adjusted the alignment of objects --- .../docs/migration_portal/3.4.1/images/mp_using_portal.png | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_using_portal.png b/product_docs/docs/migration_portal/3.4.1/images/mp_using_portal.png index 7e8d99c1ea0..30c9db49fb0 100644 --- a/product_docs/docs/migration_portal/3.4.1/images/mp_using_portal.png +++ b/product_docs/docs/migration_portal/3.4.1/images/mp_using_portal.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:793c4295c168d490cd5ee6936f05b15ebe09581264dd6b15f1d9a6f5a7d4f177 -size 225760 +oid sha256:ba200e3cf5f5af5d7fc500abb740bdddc7573290d62821fd82977b8f9192e5f9 +size 220238 From 3366a91e0e6faa7a9b6ee3499514f864d19d222e Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Fri, 7 Jan 2022 19:34:15 +0530 Subject: [PATCH 05/18] Reduced border of screenshot --- .../docs/migration_portal/3.4.1/images/mp_using_portal.png | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_using_portal.png b/product_docs/docs/migration_portal/3.4.1/images/mp_using_portal.png index 30c9db49fb0..b3cab175dea 100644 --- a/product_docs/docs/migration_portal/3.4.1/images/mp_using_portal.png +++ b/product_docs/docs/migration_portal/3.4.1/images/mp_using_portal.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ba200e3cf5f5af5d7fc500abb740bdddc7573290d62821fd82977b8f9192e5f9 -size 220238 +oid sha256:2e37dd564743f32ca8c997bd0d6df633f7de681f46f31ce042e1f624104eab6b +size 222608 From 7f5ccb5db9240485fb51b4fc5586e4ae25f4a225 Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Thu, 13 Jan 2022 01:24:40 +0530 Subject: [PATCH 06/18] Added details and inputs from team. Added info to resolve Jira tickets as well --- .../01_mp_schema_extraction.mdx | 112 ++++++++++-------- 1 file changed, 61 insertions(+), 51 deletions(-) diff --git a/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/01_mp_schema_extraction.mdx b/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/01_mp_schema_extraction.mdx index 0611735e9e4..1d4402bc7e7 100644 --- a/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/01_mp_schema_extraction.mdx +++ b/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/01_mp_schema_extraction.mdx @@ -9,39 +9,35 @@ legacyRedirectsGenerated: -# Extracting Schema -This section guides you through the steps to use the Oracle’s Data Pump utility to extract Oracle schemas to a SQL dump file. You can extract metadata and data for a complete database or subsets of a database. However, Migration Portal only requires the metadata information in the SQL dump file to assess the extracted schemas. +You can use Oracle’s Data Pump utility to extract metadata and data. However, Migration Portal only requires the metadata in the SQL dump file to assess the extracted schemas. -Note that Oracle Data Pump’s command-line clients expdp and impdp use the procedures provided in the DBMS_DATAPUMP PL/SQL package. +## Extract one or more schemas to an SQL dump file -### Prerequisites +Oracle Data Pump’s command-line clients `expdp` and `impdp` use the procedures provided in the DBMS_DATAPUMP PL/SQL package. -* If you plan on exporting schemas that are not your own, ensure that you are assigned the *DATAPUMP_IMP_FULL_DATABASE* role. Otherwise, you can only export your own schema. +#### Prerequisites -* Ensure that you have a sufficient tablespace quota to create objects in the tablespace. +* If you plan on exporting schemas that are not your own, ensure that you are assigned the *DATAPUMP_IMP_FULL_DATABASE* role. Otherwise, you can only export your own schema. -## Extract one or more schemas to an SQL dump file +* Ensure that you have sufficient tablespace quota to create objects in the tablespace. -The Data Pump utility can be run from SQL*Plus, as follows: +Perform the following steps: -1. Create a directory object that points to a directory on your server file system. For example: +1. In SQL*Plus, create a directory object that points to a directory on your server file system. For example: + **On Linux**: + `SQL> create directory DMPDIR as '/sample/file/path';` + **On Windows**: + `SQL> create directory DMPDIR as 'c:\sample\file\path\';` 2. Grant read, write permissions to the user running the Data Pump utility. -`SQL> grant read,write on directory DMPDIR to ;` -3. Before running the export command, create a parameter file with a *.par* extension and add the following attributes and values: - - + `CONTENT=metadata_only`: Extracts only the metadata of the schemas. - + `INCLUDE`: Specifies which database object types to include. Use this list to ensure that the Data Pump utility only extracts database object types supported by the Migration Portal. - + `EXCLUDE`: Specifies which schemas to exclude. Use this list to ensure that the Data Pump utility *does not* extract Oracle system schemas which are not supported by the Migration Portal. - - **Note**: (Optional) To extract all schemas in the database, you can enter `FULL=Y` in the par file. - - In this example, we create a parameters.par file with the following content: + `SQL> grant read,write on directory DMPDIR to ;` + +3. Before running the `expdp` command, create a parameter file with a `.par` extension (for example: `parameters.par`) on your server. Add attributes and values to the file using the following command: ``` $ cat parameters.par @@ -58,25 +54,63 @@ The Data Pump utility can be run from SQL*Plus, as follows: 'SPATIAL_CSW_ADMIN_USR','SPATIAL_WFS_ADMIN_USR','SQLTXADMIN','SQLTXPLAIN','SYS$UMF','SYS','SYSBACKUP','SYSDG','SYSKM', 'SYSRAC','SYSTEM','SYSMAN','TSMSYS','WKPROXY','WKSYS','WK_TEST','WMSYS','XDB','XS$NULL'))" ``` +The attributes and values in the above command specify the following options: + + `CONTENT=metadata_only` extracts only the metadata of the schemas. + + `INCLUDE=` specifies which database object types to include in the extraction. Enter a comma-separated list of the [Supported object types](#supported-object-types) to only extract the database object types supported by the Migration Portal. + + `EXCLUDE=SCHEMA:` specifies which schemas to exclude in the extraction. Enter the list of the [Unsupported schemas](#unsupported-schemas) to ensure that the Data Pump utility *does not* extract any system schemas. -4. Next, run the export command to generate a db.dump file with metadata. For example, to extract Schema1, Schema2, and Schema3 schemas to a db.dump file, run the following command: + !!! Tip + + (Optional) Oracle Data Pump utility allows you to extract all schemas in the database. To extract metadata for *all* schemas, enter `FULL=Y` in the `.par` file. + +4. From the command line, run the export command to generate a **db.dump** file. For example, to extract metadata information for ``, ``, ``, and so on, run the following command: ``` - $ expdp @ DIRECTORY=DMPDIR SCHEMAS=Schema1,Schema2,Schema3 DUMPFILE=db.dump parfile=parameters.par + $ expdp @ DIRECTORY=DMPDIR SCHEMAS=,, DUMPFILE=db.dump parfile=parameters.par ``` - **Note**: If you have specified `FULL=Y` in your .par file, you must run the command without the schemas parameter, as follows: + Alternatively, If you have specified `FULL=Y` in your `.par` file and want to extract all schemas, you must run the command, as follows: - `expdp @ DIRECTORY=DMPDIR DUMPFILE=db.dump parfile=parameters.par` + ``` + $ expdp @ DIRECTORY=DMPDIR DUMPFILE=db.dump parfile=parameters.par + ``` 5. To generate a SQL file from the dump file, run the import command. - For example, to generate YourSchemas.SQL file from the db.dump file, enter the following command: + For example, to generate **YourSchemas.SQL** file from the db.dump file, enter the following command: - `$ impdp @ DIRECTORY= TRANSFORM=OID:n SQLFILE=YourSchemas.sql DUMPFILE=db.dump` + ``` + $ impdp @ DIRECTORY= TRANSFORM=OID:n SQLFILE=YourSchemas.sql DUMPFILE=db.dump + ``` -**Note**: Migration Portal might become unresponsive for large SQL files depending on your system’s and browser’s resource availability. If the SQL file size exceeds 1 GB, you can reduce the SQL file size by splitting the schemas across multiple SQL files and extracting fewer schemas in each SQL file. +!!! Note + Migration Portal might become unresponsive for large SQL files depending on your system’s and browser’s resource availability. If the SQL file size exceeds 1 GB, you can reduce the SQL file size by splitting the schemas across multiple SQL files and extracting fewer schemas in each SQL file. + +## Unsupported schemas + +Migration Portal does not assess system schemas. This includes schemas beginning with **pg_** and Oracle system schemas. + +See the following table for a list of Oracle systems schemas you must exclude while generating the SQL dump file. +| | | | +| --------------------- | --------------------- | ------------------ | +| ANONYMOUS | APEX_PUBLIC_USER | APEX_030200 | +| APEX_040000 | APEX_040000 | APPQOSSYS | +| AUDSYS | BI | CTXSYS | +| DMSYS | DBSNMP | DIP | +| DVF | DVSYS | EXFSYS | +| FLOWS_FILES | FLOWS_020100 | GSMADMIN_INTERNAL | +| GSMCATUSER | GSMUSER | IX | +| LBACSYS | MDDATA | MDSYS | +| MGMT_VIEW | OE | OJVMSYS | +| OLAPSYS | ORDPLUGINS | ORDSYS | +| ORDDATA | OUTLN | ORACLE_OCM | +| OWBSYS | OWBYSS_AUDIT | PM | +| RMAN | SH | SI_INFORMTN_SCHEMA | +| SPATIAL_CSW_ADMIN_USR | SPATIAL_WFS_ADMIN_USR | SYS | +| SYSBACKUP | SYSDG | SYSKM | +| SYSTEM SYSMAN | TSMSYS WKPROXY | WKSYS | +| WK_TEST XS$NULL | WMSYS | XDB | ## Supported object types @@ -112,28 +146,4 @@ The Migration Portal supports the migration of the following object types: - Directories - Users - RLS policy -- Queues - -## Oracle system schemas - -Migration Portal ignores the following Oracle system schemas: - -| | | | -| --------------------- | --------------------- | ------------------ | -| ANONYMOUS | APEX_PUBLIC_USER | APEX_030200 | -| APEX_040000 | APEX_040000 | APPQOSSYS | -| AUDSYS | BI | CTXSYS | -| DMSYS | DBSNMP | DIP | -| DVF | DVSYS | EXFSYS | -| FLOWS_FILES | FLOWS_020100 | GSMADMIN_INTERNAL | -| GSMCATUSER | GSMUSER | IX | -| LBACSYS | MDDATA | MDSYS | -| MGMT_VIEW | OE | OJVMSYS | -| OLAPSYS | ORDPLUGINS | ORDSYS | -| ORDDATA | OUTLN | ORACLE_OCM | -| OWBSYS | OWBYSS_AUDIT | PM | -| RMAN | SH | SI_INFORMTN_SCHEMA | -| SPATIAL_CSW_ADMIN_USR | SPATIAL_WFS_ADMIN_USR | SYS | -| SYSBACKUP | SYSDG | SYSKM | -| SYSTEM SYSMAN | TSMSYS WKPROXY | WKSYS | -| WK_TEST XS$NULL | WMSYS | XDB | +- Queues \ No newline at end of file From b2b6f51c10169162fe7b7fdb28d9542ecc6366bf Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Mon, 17 Jan 2022 17:42:46 +0530 Subject: [PATCH 07/18] Further improvements to Schema extraction page. --- .../3.4.1/03_mp_using_portal/01_mp_overview_home.mdx | 2 +- .../04_mp_migrating_database/01_mp_schema_extraction.mdx | 8 ++++---- .../04_mp_migrating_database/02_mp_schema_assessment.mdx | 1 - 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/product_docs/docs/migration_portal/3.4.1/03_mp_using_portal/01_mp_overview_home.mdx b/product_docs/docs/migration_portal/3.4.1/03_mp_using_portal/01_mp_overview_home.mdx index 1a478f0e44b..ea5042542af 100644 --- a/product_docs/docs/migration_portal/3.4.1/03_mp_using_portal/01_mp_overview_home.mdx +++ b/product_docs/docs/migration_portal/3.4.1/03_mp_using_portal/01_mp_overview_home.mdx @@ -20,7 +20,7 @@ The Migration Portal home page allows access to the following Migration Portal f - **Create project**: Select **+ New** to create a project. !!!Note - Uploading large DDL files might freeze or crash the browser (depending on the browser and the system resources in use). In this scenario, try running Migration Portal in a different browser or extracting fewer schemas and uploading that file on Migration Portal. + Uploading large .sql files might freeze or crash the browser (depending on the browser and the system resources in use). In this scenario, try running Migration Portal in a different browser or extracting fewer schemas and uploading that file on Migration Portal. - **Search projects**: Use the **Search** box to search for projects. diff --git a/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/01_mp_schema_extraction.mdx b/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/01_mp_schema_extraction.mdx index 1d4402bc7e7..59c52313cdf 100644 --- a/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/01_mp_schema_extraction.mdx +++ b/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/01_mp_schema_extraction.mdx @@ -37,7 +37,7 @@ Perform the following steps: `SQL> grant read,write on directory DMPDIR to ;` -3. Before running the `expdp` command, create a parameter file with a `.par` extension (for example: `parameters.par`) on your server. Add attributes and values to the file using the following command: +3. Before running the `expdp` command, create a file with a `.par` extension (for example: `parameters.par`) on your server. Add attributes and values to the file using the following command: ``` $ cat parameters.par @@ -56,8 +56,8 @@ Perform the following steps: ``` The attributes and values in the above command specify the following options: + `CONTENT=metadata_only` extracts only the metadata of the schemas. - + `INCLUDE=` specifies which database object types to include in the extraction. Enter a comma-separated list of the [Supported object types](#supported-object-types) to only extract the database object types supported by the Migration Portal. - + `EXCLUDE=SCHEMA:` specifies which schemas to exclude in the extraction. Enter the list of the [Unsupported schemas](#unsupported-schemas) to ensure that the Data Pump utility *does not* extract any system schemas. + + `INCLUDE=` specifies which database object types to include in the extraction. A comma-separated list of the [Supported object types](#supported-object-types) is entered to only extract database object types that are supported by Migration Portal. + + `EXCLUDE=SCHEMA:` specifies which schemas to exclude in the extraction. A list of the [Unsupported schemas](#unsupported-schemas) is entered to ensure that the Data Pump utility *does not* extract any system schemas. !!! Tip @@ -68,7 +68,7 @@ The attributes and values in the above command specify the following options: ``` $ expdp @ DIRECTORY=DMPDIR SCHEMAS=,, DUMPFILE=db.dump parfile=parameters.par ``` - Alternatively, If you have specified `FULL=Y` in your `.par` file and want to extract all schemas, you must run the command, as follows: + Alternatively, If you have specified `FULL=Y` in your `.par` file and want to extract all schemas, you must run the command as follows: ``` $ expdp @ DIRECTORY=DMPDIR DUMPFILE=db.dump parfile=parameters.par diff --git a/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/02_mp_schema_assessment.mdx b/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/02_mp_schema_assessment.mdx index 07c070139bc..87b55bbb3bd 100644 --- a/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/02_mp_schema_assessment.mdx +++ b/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/02_mp_schema_assessment.mdx @@ -33,7 +33,6 @@ You can assess an Oracle database schema for compatibility with EDB Postgres Adv !!! Note - Don't modify the `.SQL` file. - - You can upload only the `.SQL` file generated by the latest EDB DDL Extractor. For more information, see [Schema extraction](01_mp_schema_extraction/#mp_schema_extraction). From 9f9d2068a5a72bd0cba8b668fddae216e0e49c2b Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Mon, 17 Jan 2022 20:16:00 +0530 Subject: [PATCH 08/18] Update version and release notes --- .../3.4.1/01_mp_release_notes/index.mdx | 30 ------------------ .../3.5.0/01_mp_release_notes/index.mdx | 18 +++++++++++ .../02_supported_platforms.mdx | 0 .../01_mp_overview_home.mdx | 0 .../02_mp_overview_project.mdx | 0 .../03_mp_overview_wiki.mdx | 0 .../03_mp_using_portal/index.mdx | 0 .../01_mp_schema_extraction.mdx | 0 .../02_mp_schema_assessment.mdx | 0 .../03_mp_schema_migration.mdx | 0 .../04_mp_data_migration.mdx | 0 .../04_mp_migrating_database/index.mdx | 0 .../05_mp_advanced_data_migration.mdx | 0 .../{3.4.1 => 3.5.0}/images/1.png | 0 .../images/162980660731198462.textClipping | Bin .../{3.4.1 => 3.5.0}/images/3.png | 0 .../{3.4.1 => 3.5.0}/images/EDB_logo.png | 0 .../images/Migrate_Cloud_Finish.png | 0 .../{3.4.1 => 3.5.0}/images/biganimal.png | 0 .../{3.4.1 => 3.5.0}/images/edb_logo.svg | 0 .../images/edb_logo_full_color.svg | 0 .../migrate_cloud_select_platform_updated.png | 0 .../images/mp_enterprisedb_website.png | 0 .../images/mp_migrate_cloud_connection.png | 0 .../mp_migrate_cloud_connection_complete.png | 0 ...te_cloud_connection_complete_updatated.png | 0 .../mp_migrate_cloud_connection_updated.png | 0 .../images/mp_migrate_cloud_finish_1.png | 0 ...p_migrate_cloud_launch_cluster_updated.png | 0 .../mp_migrate_cloud_select_platform.png | 0 .../mp_migrate_cloud_success_updated.png | 0 .../images/mp_new_filters.png | 0 .../images/mp_overview_home.png | 0 .../images/mp_overview_home_updated.png | 0 .../images/mp_overview_project_kb.png | 0 .../images/mp_overview_project_numbered.png | 0 .../images/mp_overview_wiki.png | 0 .../images/mp_overview_wiki_1.png | 0 .../images/mp_overview_wiki_2.png | 0 .../images/mp_overview_wiki_5.png | 0 .../mp_schema_assessment_analysis_result.png | 0 .../images/mp_schema_assessment_errors.png | 0 .../mp_schema_assessment_incompatible.png | 0 .../mp_schema_assessment_new_project.png | 0 .../mp_schema_assessment_new_project_1.png | 0 .../mp_schema_assessment_new_project_2.png | 0 .../mp_schema_assessment_new_project_4.png | 0 ...schema_assessment_new_project_4_edited.png | 0 .../mp_schema_assessment_new_project_5.png | 0 ...p_schema_assessment_new_project_edited.png | 0 .../mp_schema_assessment_schema_report.png | 0 ...mp_schema_assessment_schema_report_pdf.png | 0 .../mp_schema_assessment_select_schema.png | 0 .../mp_schema_assessment_verifying_ddl.png | 0 .../mp_schema_assessment_workaround.png | 0 .../images/mp_schema_dependent_objects.png | 0 .../images/mp_schema_extraction_list.png | 0 .../images/mp_schema_extraction_paths.png | 0 .../images/mp_schema_extraction_target.png | 0 .../images/mp_schema_mig_cloud_cluster.png | 0 ...hema_mig_cloud_cluster_connection_page.png | 0 ...hema_mig_cloud_cluster_connection_test.png | 0 .../mp_schema_mig_cloud_epas_mig_success.png | 0 ...chema_mig_cloud_epas_schemas_selection.png | 0 .../images/mp_schema_mig_cloud_option.png | 0 .../mp_schema_mig_exist_epas_contact_us.png | 0 .../mp_schema_mig_exist_epas_download.png | 0 .../mp_schema_mig_exist_epas_mig_success.png | 0 ...chema_mig_exist_epas_schemas_selection.png | 0 ...mig_exist_epas_schemas_selection_linux.png | 0 .../mp_schema_mig_exist_epas_windows.png | 0 .../images/mp_schema_mig_exist_linux.png | 0 .../mp_schema_mig_new_epas_download.png | 0 .../images/mp_schema_mig_new_epas_import.png | 0 .../images/mp_schema_mig_new_epas_linux.png | 0 .../mp_schema_mig_new_epas_linux_guide.png | 0 .../mp_schema_mig_new_epas_linux_import.png | 0 .../mp_schema_mig_new_epas_linux_repo.png | 0 .../mp_schema_mig_new_epas_mig_success..png | 0 .../mp_schema_mig_new_epas_mig_success.png | 0 ...ma_mig_new_epas_schemas_selection copy.png | 0 ..._schema_mig_new_epas_schemas_selection.png | 0 .../images/mp_schema_mig_new_epas_windows.png | 0 .../mp_schema_mig_new_epas_windows_guide.png | 0 .../mp_schema_mig_new_epas_windows_import.png | 0 ..._schema_mig_new_epas_windows_installer.png | 0 .../images/mp_schema_migration_cds.png | 0 ...mp_schema_migration_connection_details.png | 0 ...schema_migration_connection_successful.png | 0 .../images/mp_schema_migration_deployed.png | 0 ..._schema_migration_download_file_button.png | 0 ..._schema_migration_download_file_option.png | 0 .../mp_schema_migration_existing_epas.png | 0 .../images/mp_schema_migration_home.png | 0 .../images/mp_schema_migration_home_cloud.png | 0 .../images/mp_schema_migration_home_new.png | 0 ...schema_migration_select_schemas (copy).png | 0 .../mp_schema_migration_select_schemas.png | 0 .../images/mp_using_portal.png | 0 .../images/mp_using_portal_accessing.png | 0 ..._whats_new_assessment_report_rh_counts.png | 0 .../images/mp_whats_new_branding_updates.png | 0 .../images/mp_whats_new_common_failures.png | 0 ...mp_whats_new_compatibility_guage_color.png | 0 .../images/mp_whats_new_csv.png | 0 .../mp_whats_new_objects_repaired_by_me.png | 0 .../mp_whats_new_prepopulated_email.png | 0 .../images/mp_whats_new_warning_sign.png | 0 .../images/project page overview.png | 0 .../images/select-operating-system-linux.png | 0 .../{3.4.1 => 3.5.0}/images/test.png | 0 .../images/whats_new_new_look.png | 0 .../{3.4.1 => 3.5.0}/index.mdx | 0 113 files changed, 18 insertions(+), 30 deletions(-) delete mode 100644 product_docs/docs/migration_portal/3.4.1/01_mp_release_notes/index.mdx create mode 100644 product_docs/docs/migration_portal/3.5.0/01_mp_release_notes/index.mdx rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/02_supported_platforms.mdx (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/03_mp_using_portal/01_mp_overview_home.mdx (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/03_mp_using_portal/02_mp_overview_project.mdx (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/03_mp_using_portal/03_mp_overview_wiki.mdx (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/03_mp_using_portal/index.mdx (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/04_mp_migrating_database/01_mp_schema_extraction.mdx (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/04_mp_migrating_database/02_mp_schema_assessment.mdx (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/04_mp_migrating_database/03_mp_schema_migration.mdx (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/04_mp_migrating_database/04_mp_data_migration.mdx (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/04_mp_migrating_database/index.mdx (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/05_mp_advanced_data_migration.mdx (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/1.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/162980660731198462.textClipping (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/3.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/EDB_logo.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/Migrate_Cloud_Finish.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/biganimal.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/edb_logo.svg (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/edb_logo_full_color.svg (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/migrate_cloud_select_platform_updated.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_enterprisedb_website.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_migrate_cloud_connection.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_migrate_cloud_connection_complete.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_migrate_cloud_connection_complete_updatated.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_migrate_cloud_connection_updated.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_migrate_cloud_finish_1.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_migrate_cloud_launch_cluster_updated.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_migrate_cloud_select_platform.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_migrate_cloud_success_updated.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_new_filters.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_overview_home.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_overview_home_updated.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_overview_project_kb.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_overview_project_numbered.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_overview_wiki.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_overview_wiki_1.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_overview_wiki_2.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_overview_wiki_5.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_assessment_analysis_result.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_assessment_errors.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_assessment_incompatible.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_assessment_new_project.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_assessment_new_project_1.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_assessment_new_project_2.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_assessment_new_project_4.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_assessment_new_project_4_edited.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_assessment_new_project_5.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_assessment_new_project_edited.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_assessment_schema_report.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_assessment_schema_report_pdf.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_assessment_select_schema.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_assessment_verifying_ddl.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_assessment_workaround.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_dependent_objects.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_extraction_list.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_extraction_paths.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_extraction_target.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_cloud_cluster.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_cloud_cluster_connection_page.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_cloud_cluster_connection_test.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_cloud_epas_mig_success.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_cloud_epas_schemas_selection.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_cloud_option.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_exist_epas_contact_us.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_exist_epas_download.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_exist_epas_mig_success.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_exist_epas_schemas_selection.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_exist_epas_schemas_selection_linux.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_exist_epas_windows.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_exist_linux.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_new_epas_download.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_new_epas_import.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_new_epas_linux.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_new_epas_linux_guide.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_new_epas_linux_import.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_new_epas_linux_repo.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_new_epas_mig_success..png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_new_epas_mig_success.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_new_epas_schemas_selection copy.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_new_epas_schemas_selection.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_new_epas_windows.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_new_epas_windows_guide.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_new_epas_windows_import.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_mig_new_epas_windows_installer.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_migration_cds.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_migration_connection_details.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_migration_connection_successful.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_migration_deployed.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_migration_download_file_button.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_migration_download_file_option.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_migration_existing_epas.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_migration_home.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_migration_home_cloud.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_migration_home_new.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_migration_select_schemas (copy).png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_schema_migration_select_schemas.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_using_portal.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_using_portal_accessing.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_whats_new_assessment_report_rh_counts.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_whats_new_branding_updates.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_whats_new_common_failures.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_whats_new_compatibility_guage_color.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_whats_new_csv.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_whats_new_objects_repaired_by_me.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_whats_new_prepopulated_email.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/mp_whats_new_warning_sign.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/project page overview.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/select-operating-system-linux.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/test.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/images/whats_new_new_look.png (100%) rename product_docs/docs/migration_portal/{3.4.1 => 3.5.0}/index.mdx (100%) diff --git a/product_docs/docs/migration_portal/3.4.1/01_mp_release_notes/index.mdx b/product_docs/docs/migration_portal/3.4.1/01_mp_release_notes/index.mdx deleted file mode 100644 index 0ba98d7c3ed..00000000000 --- a/product_docs/docs/migration_portal/3.4.1/01_mp_release_notes/index.mdx +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: "Release Notes" -redirects: - - ../01_whats_new/ ---- - -The Migration Portal documentation describes the latest version of Migration Portal. - -New features, enhancements, bug fixes, and other changes in Migration Portal 3.4.1 include the following: - -| Type | Description | -| ---- |------------ | -| Feature | Added option to migrate schemas to EDB Postgres Advanced Server clusters on BigAnimal, the cloud platform powered by EDB.| -| Feature | Added repair handler to remove the `ALTER TRIGGER ENABLE` statements or transform `ALTER TRIGGER DISABLE` to EDB Postgres Advanced Server compatible syntax. (ERH-3001: ALTER_TRIGGER)| -| Feature| Added repair handler to add `AS` for EDB Postgres Advanced Server reserved keyword `CASE` when used as an alias in `CASE` Expressions. (ERH-1014: CASE_STATEMENT_ALIAS)| -| Feature| Added a Knowledge Base article to provide a workaround for type inheritance.| -| Feature| Added Knowledge Base article for Oracle's `AFTER ALTER ON SCHEMA` trigger using EDB Postgres Advanced Server's Event triggers.| -| Feature| Added Knowledge Base article for Oracle's feature in which a FUNCTION can use JAVA class using EDB Postgres Advanced Server's PL/JAVA extension. (This is applicable for EDB Postgres Advanced Server versions 10 and 11 only)| -| Enhancement | Added support for assessing larger DDL files (up to 1 GB size).| -| Enhancement | Removed the following Knowledge Base articles as Migration Portal now automatically repairs the incompatibilities associated with these: **PIPELINED functions** - Fixed by ERH-2058, **BYTE Keyword** - Fixed by ERH-2008, **Index having concatenated columns** - Fixed by ERH-1003| -| Enhancement | Enhanced the DDL extractor to find and list empty schemas.| -| Enhancement |Enhanced UI for a better user experience.| -| Enhancement | Optimized the object tree and common failure tree.| -| Enhancement| Enhanced repair handler to transform `BFILE` datatype to `TEXT` datatype in PL/SQL objects as well. (ERH-2039: BFILE_DATA_TYPE)| -| Enhancement| Enhanced repair handler to transform `PARALLEL_ENABLE` to `PARALLEL SAFE` for `PACKAGE BODY` and `FUNCTION` and remove `PARALLEL_ENABLE` keyword from `PACKAGE SPECIFICATION`. (ERH-2049: PARALLEL_ENABLE_FUNCTIONS)| -| Enhancement | DDL Extractor displays a warning message if the source Oracle version is not supported.| -|Bug Fix| Fixed 'Unknown Error' message for some complex PL/SQL objects.(RT73730, RT73910, RT73840, RT73841)| -|Bug Fix| Fixed "DDL file is required" message when file upload was canceled.| -|Bug Fix| Fixed handling of incompatible Oracle Meta Views.| -| Security Fix| Addressed security/compliance findings against possible vulnerabilities.| diff --git a/product_docs/docs/migration_portal/3.5.0/01_mp_release_notes/index.mdx b/product_docs/docs/migration_portal/3.5.0/01_mp_release_notes/index.mdx new file mode 100644 index 00000000000..6faaa8f74b0 --- /dev/null +++ b/product_docs/docs/migration_portal/3.5.0/01_mp_release_notes/index.mdx @@ -0,0 +1,18 @@ +--- +title: "Release Notes" +redirects: + - ../01_whats_new/ +--- + +The Migration Portal documentation describes the latest version of Migration Portal. + +New features, enhancements, bug fixes, and other changes in Migration Portal 3.5.0 include the following: + +| Type | Description | +| ---- |------------ | +| Enhancement | Migration Portal is now certified to support migrations to EDB Postgres Advanced Server 14. | +| Enhancement | Migration Portal now uses the metadata information in a SQL dump file to assess the extracted schemas. You no longer have to download the DDL extractor script to extract DDLs for your schemas. | +| Feature| Updated repair handler to remove OVERFLOW syntax from CREATE TABLE syntax to make it compatible with EDB Postgres Advanced Server compatible syntax. (ERH-2011: ORGANIZATION_INDEX_COMPRESS).| +| Feature| Added a repair handler to remove the NAME clause and associated label name from SET TRANSACTION statements. (ERH-3002: SET_TRANSACTION).| +| Change| Made several small improvements to the User Interface.| + diff --git a/product_docs/docs/migration_portal/3.4.1/02_supported_platforms.mdx b/product_docs/docs/migration_portal/3.5.0/02_supported_platforms.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/02_supported_platforms.mdx rename to product_docs/docs/migration_portal/3.5.0/02_supported_platforms.mdx diff --git a/product_docs/docs/migration_portal/3.4.1/03_mp_using_portal/01_mp_overview_home.mdx b/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/01_mp_overview_home.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/03_mp_using_portal/01_mp_overview_home.mdx rename to product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/01_mp_overview_home.mdx diff --git a/product_docs/docs/migration_portal/3.4.1/03_mp_using_portal/02_mp_overview_project.mdx b/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/02_mp_overview_project.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/03_mp_using_portal/02_mp_overview_project.mdx rename to product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/02_mp_overview_project.mdx diff --git a/product_docs/docs/migration_portal/3.4.1/03_mp_using_portal/03_mp_overview_wiki.mdx b/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/03_mp_overview_wiki.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/03_mp_using_portal/03_mp_overview_wiki.mdx rename to product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/03_mp_overview_wiki.mdx diff --git a/product_docs/docs/migration_portal/3.4.1/03_mp_using_portal/index.mdx b/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/index.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/03_mp_using_portal/index.mdx rename to product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/index.mdx diff --git a/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/01_mp_schema_extraction.mdx b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/01_mp_schema_extraction.mdx rename to product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx diff --git a/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/02_mp_schema_assessment.mdx b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/02_mp_schema_assessment.mdx rename to product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx diff --git a/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/03_mp_schema_migration.mdx b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/03_mp_schema_migration.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/03_mp_schema_migration.mdx rename to product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/03_mp_schema_migration.mdx diff --git a/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/04_mp_data_migration.mdx b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/04_mp_data_migration.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/04_mp_data_migration.mdx rename to product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/04_mp_data_migration.mdx diff --git a/product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/index.mdx b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/index.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/04_mp_migrating_database/index.mdx rename to product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/index.mdx diff --git a/product_docs/docs/migration_portal/3.4.1/05_mp_advanced_data_migration.mdx b/product_docs/docs/migration_portal/3.5.0/05_mp_advanced_data_migration.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/05_mp_advanced_data_migration.mdx rename to product_docs/docs/migration_portal/3.5.0/05_mp_advanced_data_migration.mdx diff --git a/product_docs/docs/migration_portal/3.4.1/images/1.png b/product_docs/docs/migration_portal/3.5.0/images/1.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/1.png rename to product_docs/docs/migration_portal/3.5.0/images/1.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/162980660731198462.textClipping b/product_docs/docs/migration_portal/3.5.0/images/162980660731198462.textClipping similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/162980660731198462.textClipping rename to product_docs/docs/migration_portal/3.5.0/images/162980660731198462.textClipping diff --git a/product_docs/docs/migration_portal/3.4.1/images/3.png b/product_docs/docs/migration_portal/3.5.0/images/3.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/3.png rename to product_docs/docs/migration_portal/3.5.0/images/3.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/EDB_logo.png b/product_docs/docs/migration_portal/3.5.0/images/EDB_logo.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/EDB_logo.png rename to product_docs/docs/migration_portal/3.5.0/images/EDB_logo.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/Migrate_Cloud_Finish.png b/product_docs/docs/migration_portal/3.5.0/images/Migrate_Cloud_Finish.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/Migrate_Cloud_Finish.png rename to product_docs/docs/migration_portal/3.5.0/images/Migrate_Cloud_Finish.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/biganimal.png b/product_docs/docs/migration_portal/3.5.0/images/biganimal.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/biganimal.png rename to product_docs/docs/migration_portal/3.5.0/images/biganimal.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/edb_logo.svg b/product_docs/docs/migration_portal/3.5.0/images/edb_logo.svg similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/edb_logo.svg rename to product_docs/docs/migration_portal/3.5.0/images/edb_logo.svg diff --git a/product_docs/docs/migration_portal/3.4.1/images/edb_logo_full_color.svg b/product_docs/docs/migration_portal/3.5.0/images/edb_logo_full_color.svg similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/edb_logo_full_color.svg rename to product_docs/docs/migration_portal/3.5.0/images/edb_logo_full_color.svg diff --git a/product_docs/docs/migration_portal/3.4.1/images/migrate_cloud_select_platform_updated.png b/product_docs/docs/migration_portal/3.5.0/images/migrate_cloud_select_platform_updated.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/migrate_cloud_select_platform_updated.png rename to product_docs/docs/migration_portal/3.5.0/images/migrate_cloud_select_platform_updated.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_enterprisedb_website.png b/product_docs/docs/migration_portal/3.5.0/images/mp_enterprisedb_website.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_enterprisedb_website.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_enterprisedb_website.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_connection.png b/product_docs/docs/migration_portal/3.5.0/images/mp_migrate_cloud_connection.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_connection.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_migrate_cloud_connection.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_connection_complete.png b/product_docs/docs/migration_portal/3.5.0/images/mp_migrate_cloud_connection_complete.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_connection_complete.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_migrate_cloud_connection_complete.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_connection_complete_updatated.png b/product_docs/docs/migration_portal/3.5.0/images/mp_migrate_cloud_connection_complete_updatated.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_connection_complete_updatated.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_migrate_cloud_connection_complete_updatated.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_connection_updated.png b/product_docs/docs/migration_portal/3.5.0/images/mp_migrate_cloud_connection_updated.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_connection_updated.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_migrate_cloud_connection_updated.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_finish_1.png b/product_docs/docs/migration_portal/3.5.0/images/mp_migrate_cloud_finish_1.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_finish_1.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_migrate_cloud_finish_1.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_launch_cluster_updated.png b/product_docs/docs/migration_portal/3.5.0/images/mp_migrate_cloud_launch_cluster_updated.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_launch_cluster_updated.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_migrate_cloud_launch_cluster_updated.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_select_platform.png b/product_docs/docs/migration_portal/3.5.0/images/mp_migrate_cloud_select_platform.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_select_platform.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_migrate_cloud_select_platform.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_success_updated.png b/product_docs/docs/migration_portal/3.5.0/images/mp_migrate_cloud_success_updated.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_migrate_cloud_success_updated.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_migrate_cloud_success_updated.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_new_filters.png b/product_docs/docs/migration_portal/3.5.0/images/mp_new_filters.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_new_filters.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_new_filters.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_overview_home.png b/product_docs/docs/migration_portal/3.5.0/images/mp_overview_home.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_overview_home.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_overview_home.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_overview_home_updated.png b/product_docs/docs/migration_portal/3.5.0/images/mp_overview_home_updated.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_overview_home_updated.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_overview_home_updated.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_overview_project_kb.png b/product_docs/docs/migration_portal/3.5.0/images/mp_overview_project_kb.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_overview_project_kb.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_overview_project_kb.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_overview_project_numbered.png b/product_docs/docs/migration_portal/3.5.0/images/mp_overview_project_numbered.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_overview_project_numbered.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_overview_project_numbered.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_overview_wiki.png b/product_docs/docs/migration_portal/3.5.0/images/mp_overview_wiki.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_overview_wiki.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_overview_wiki.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_overview_wiki_1.png b/product_docs/docs/migration_portal/3.5.0/images/mp_overview_wiki_1.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_overview_wiki_1.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_overview_wiki_1.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_overview_wiki_2.png b/product_docs/docs/migration_portal/3.5.0/images/mp_overview_wiki_2.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_overview_wiki_2.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_overview_wiki_2.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_overview_wiki_5.png b/product_docs/docs/migration_portal/3.5.0/images/mp_overview_wiki_5.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_overview_wiki_5.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_overview_wiki_5.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_analysis_result.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_analysis_result.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_analysis_result.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_analysis_result.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_errors.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_errors.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_errors.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_errors.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_incompatible.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_incompatible.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_incompatible.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_incompatible.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_new_project.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_new_project.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_1.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_new_project_1.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_1.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_new_project_1.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_2.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_new_project_2.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_2.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_new_project_2.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_4.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_new_project_4.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_4.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_new_project_4.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_4_edited.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_new_project_4_edited.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_4_edited.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_new_project_4_edited.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_5.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_new_project_5.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_5.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_new_project_5.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_edited.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_new_project_edited.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_new_project_edited.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_new_project_edited.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_schema_report.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_schema_report.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_schema_report.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_schema_report.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_schema_report_pdf.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_schema_report_pdf.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_schema_report_pdf.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_schema_report_pdf.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_select_schema.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_select_schema.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_select_schema.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_select_schema.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_verifying_ddl.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_verifying_ddl.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_verifying_ddl.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_verifying_ddl.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_workaround.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_workaround.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_assessment_workaround.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_workaround.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_dependent_objects.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_dependent_objects.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_dependent_objects.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_dependent_objects.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_extraction_list.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_extraction_list.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_extraction_list.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_extraction_list.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_extraction_paths.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_extraction_paths.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_extraction_paths.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_extraction_paths.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_extraction_target.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_extraction_target.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_extraction_target.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_extraction_target.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_cluster.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_cloud_cluster.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_cluster.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_cloud_cluster.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_cluster_connection_page.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_cloud_cluster_connection_page.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_cluster_connection_page.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_cloud_cluster_connection_page.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_cluster_connection_test.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_cloud_cluster_connection_test.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_cluster_connection_test.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_cloud_cluster_connection_test.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_epas_mig_success.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_cloud_epas_mig_success.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_epas_mig_success.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_cloud_epas_mig_success.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_epas_schemas_selection.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_cloud_epas_schemas_selection.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_epas_schemas_selection.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_cloud_epas_schemas_selection.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_option.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_cloud_option.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_cloud_option.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_cloud_option.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_contact_us.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_exist_epas_contact_us.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_contact_us.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_exist_epas_contact_us.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_download.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_exist_epas_download.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_download.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_exist_epas_download.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_mig_success.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_exist_epas_mig_success.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_mig_success.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_exist_epas_mig_success.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_schemas_selection.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_exist_epas_schemas_selection.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_schemas_selection.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_exist_epas_schemas_selection.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_schemas_selection_linux.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_exist_epas_schemas_selection_linux.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_schemas_selection_linux.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_exist_epas_schemas_selection_linux.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_windows.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_exist_epas_windows.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_epas_windows.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_exist_epas_windows.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_linux.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_exist_linux.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_exist_linux.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_exist_linux.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_download.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_download.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_download.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_download.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_import.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_import.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_import.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_import.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_linux.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_linux.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_linux.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_linux.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_linux_guide.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_linux_guide.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_linux_guide.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_linux_guide.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_linux_import.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_linux_import.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_linux_import.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_linux_import.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_linux_repo.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_linux_repo.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_linux_repo.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_linux_repo.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_mig_success..png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_mig_success..png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_mig_success..png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_mig_success..png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_mig_success.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_mig_success.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_mig_success.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_mig_success.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_schemas_selection copy.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_schemas_selection copy.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_schemas_selection copy.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_schemas_selection copy.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_schemas_selection.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_schemas_selection.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_schemas_selection.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_schemas_selection.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_windows.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_windows.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_windows.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_windows.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_windows_guide.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_windows_guide.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_windows_guide.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_windows_guide.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_windows_import.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_windows_import.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_windows_import.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_windows_import.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_windows_installer.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_windows_installer.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_mig_new_epas_windows_installer.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_mig_new_epas_windows_installer.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_cds.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_cds.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_cds.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_cds.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_connection_details.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_connection_details.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_connection_details.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_connection_details.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_connection_successful.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_connection_successful.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_connection_successful.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_connection_successful.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_deployed.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_deployed.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_deployed.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_deployed.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_download_file_button.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_download_file_button.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_download_file_button.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_download_file_button.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_download_file_option.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_download_file_option.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_download_file_option.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_download_file_option.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_existing_epas.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_existing_epas.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_existing_epas.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_existing_epas.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_home.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_home.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_home.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_home.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_home_cloud.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_home_cloud.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_home_cloud.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_home_cloud.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_home_new.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_home_new.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_home_new.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_home_new.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_select_schemas (copy).png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_select_schemas (copy).png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_select_schemas (copy).png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_select_schemas (copy).png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_select_schemas.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_select_schemas.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_schema_migration_select_schemas.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_schema_migration_select_schemas.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_using_portal.png b/product_docs/docs/migration_portal/3.5.0/images/mp_using_portal.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_using_portal.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_using_portal.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_using_portal_accessing.png b/product_docs/docs/migration_portal/3.5.0/images/mp_using_portal_accessing.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_using_portal_accessing.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_using_portal_accessing.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_assessment_report_rh_counts.png b/product_docs/docs/migration_portal/3.5.0/images/mp_whats_new_assessment_report_rh_counts.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_assessment_report_rh_counts.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_whats_new_assessment_report_rh_counts.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_branding_updates.png b/product_docs/docs/migration_portal/3.5.0/images/mp_whats_new_branding_updates.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_branding_updates.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_whats_new_branding_updates.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_common_failures.png b/product_docs/docs/migration_portal/3.5.0/images/mp_whats_new_common_failures.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_common_failures.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_whats_new_common_failures.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_compatibility_guage_color.png b/product_docs/docs/migration_portal/3.5.0/images/mp_whats_new_compatibility_guage_color.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_compatibility_guage_color.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_whats_new_compatibility_guage_color.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_csv.png b/product_docs/docs/migration_portal/3.5.0/images/mp_whats_new_csv.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_csv.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_whats_new_csv.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_objects_repaired_by_me.png b/product_docs/docs/migration_portal/3.5.0/images/mp_whats_new_objects_repaired_by_me.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_objects_repaired_by_me.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_whats_new_objects_repaired_by_me.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_prepopulated_email.png b/product_docs/docs/migration_portal/3.5.0/images/mp_whats_new_prepopulated_email.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_prepopulated_email.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_whats_new_prepopulated_email.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_warning_sign.png b/product_docs/docs/migration_portal/3.5.0/images/mp_whats_new_warning_sign.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/mp_whats_new_warning_sign.png rename to product_docs/docs/migration_portal/3.5.0/images/mp_whats_new_warning_sign.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/project page overview.png b/product_docs/docs/migration_portal/3.5.0/images/project page overview.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/project page overview.png rename to product_docs/docs/migration_portal/3.5.0/images/project page overview.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/select-operating-system-linux.png b/product_docs/docs/migration_portal/3.5.0/images/select-operating-system-linux.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/select-operating-system-linux.png rename to product_docs/docs/migration_portal/3.5.0/images/select-operating-system-linux.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/test.png b/product_docs/docs/migration_portal/3.5.0/images/test.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/test.png rename to product_docs/docs/migration_portal/3.5.0/images/test.png diff --git a/product_docs/docs/migration_portal/3.4.1/images/whats_new_new_look.png b/product_docs/docs/migration_portal/3.5.0/images/whats_new_new_look.png similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/images/whats_new_new_look.png rename to product_docs/docs/migration_portal/3.5.0/images/whats_new_new_look.png diff --git a/product_docs/docs/migration_portal/3.4.1/index.mdx b/product_docs/docs/migration_portal/3.5.0/index.mdx similarity index 100% rename from product_docs/docs/migration_portal/3.4.1/index.mdx rename to product_docs/docs/migration_portal/3.5.0/index.mdx From 1724e61a6f93daffc47d01bdbf9e24958b303981 Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Tue, 18 Jan 2022 16:25:02 +0530 Subject: [PATCH 09/18] Update note for pg_ based on Prashants inputs --- .../3.5.0/01_mp_release_notes/index.mdx | 2 +- .../01_mp_schema_extraction.mdx | 49 +++++++++---------- 2 files changed, 23 insertions(+), 28 deletions(-) diff --git a/product_docs/docs/migration_portal/3.5.0/01_mp_release_notes/index.mdx b/product_docs/docs/migration_portal/3.5.0/01_mp_release_notes/index.mdx index 6faaa8f74b0..33632504d82 100644 --- a/product_docs/docs/migration_portal/3.5.0/01_mp_release_notes/index.mdx +++ b/product_docs/docs/migration_portal/3.5.0/01_mp_release_notes/index.mdx @@ -14,5 +14,5 @@ New features, enhancements, bug fixes, and other changes in Migration Portal 3.5 | Enhancement | Migration Portal now uses the metadata information in a SQL dump file to assess the extracted schemas. You no longer have to download the DDL extractor script to extract DDLs for your schemas. | | Feature| Updated repair handler to remove OVERFLOW syntax from CREATE TABLE syntax to make it compatible with EDB Postgres Advanced Server compatible syntax. (ERH-2011: ORGANIZATION_INDEX_COMPRESS).| | Feature| Added a repair handler to remove the NAME clause and associated label name from SET TRANSACTION statements. (ERH-3002: SET_TRANSACTION).| -| Change| Made several small improvements to the User Interface.| +| Enhancement | Improved the User Interface for a better user experience. | diff --git a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx index 59c52313cdf..6d1dad39158 100644 --- a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx +++ b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx @@ -56,8 +56,8 @@ Perform the following steps: ``` The attributes and values in the above command specify the following options: + `CONTENT=metadata_only` extracts only the metadata of the schemas. - + `INCLUDE=` specifies which database object types to include in the extraction. A comma-separated list of the [Supported object types](#supported-object-types) is entered to only extract database object types that are supported by Migration Portal. - + `EXCLUDE=SCHEMA:` specifies which schemas to exclude in the extraction. A list of the [Unsupported schemas](#unsupported-schemas) is entered to ensure that the Data Pump utility *does not* extract any system schemas. + + `INCLUDE=` specifies which database object types to include in the extraction. Append a comma-separated list of the [Supported object types](#supported-object-types) to only extract database object types that are supported by Migration Portal. + + `EXCLUDE=SCHEMA:` specifies which schemas to exclude in the extraction. Append a list of the [Unsupported schemas](#unsupported-schemas) to ensure that the Data Pump utility *does not* extract any system schemas (including schemas beginning with **pg_**). !!! Tip @@ -86,33 +86,28 @@ The attributes and values in the above command specify the following options: !!! Note Migration Portal might become unresponsive for large SQL files depending on your system’s and browser’s resource availability. If the SQL file size exceeds 1 GB, you can reduce the SQL file size by splitting the schemas across multiple SQL files and extracting fewer schemas in each SQL file. -## Unsupported schemas - -Migration Portal does not assess system schemas. This includes schemas beginning with **pg_** and Oracle system schemas. +### Unsupported schemas See the following table for a list of Oracle systems schemas you must exclude while generating the SQL dump file. -| | | | -| --------------------- | --------------------- | ------------------ | -| ANONYMOUS | APEX_PUBLIC_USER | APEX_030200 | -| APEX_040000 | APEX_040000 | APPQOSSYS | -| AUDSYS | BI | CTXSYS | -| DMSYS | DBSNMP | DIP | -| DVF | DVSYS | EXFSYS | -| FLOWS_FILES | FLOWS_020100 | GSMADMIN_INTERNAL | -| GSMCATUSER | GSMUSER | IX | -| LBACSYS | MDDATA | MDSYS | -| MGMT_VIEW | OE | OJVMSYS | -| OLAPSYS | ORDPLUGINS | ORDSYS | -| ORDDATA | OUTLN | ORACLE_OCM | -| OWBSYS | OWBYSS_AUDIT | PM | -| RMAN | SH | SI_INFORMTN_SCHEMA | -| SPATIAL_CSW_ADMIN_USR | SPATIAL_WFS_ADMIN_USR | SYS | -| SYSBACKUP | SYSDG | SYSKM | -| SYSTEM SYSMAN | TSMSYS WKPROXY | WKSYS | -| WK_TEST XS$NULL | WMSYS | XDB | - -## Supported object types +| | | | | | +| :-------------------- | :------------------ | :---------------- | :----------------- | :---------------------- | +| ANONYMOUS | APEX_PUBLIC_USER | APEX_030200 | APEX_040000 | APEX_040200 | +| APPQOSSYS | AUDSYS | BI | CTXSYS | DMSYS | +| DBSNMP | DIP | DVF | DVSYS | EXFSYS | +| FLOWS_FILES | FLOWS_020100 | GSMADMIN_INTERNAL | GSMCATUSER | GSMUSER | +| IX | LBACSYS | MDDATA | MDSYS | MGMT_VIEW | +| OE | OJVMSYS | OLAPSYS | ORDPLUGINS | ORDSYS | +| ORDDATA | OUTLN | ORACLE_OCM | OWBSYS | OWBYSS_AUDIT | +| PM | RMAN | SH | SI_INFORMTN_SCHEMA | SPATIAL_CSW_ADMIN_USR | +| SPATIAL_WFS_ADMIN_USR | SYS | SYSBACKUP | SYSDG | SYSKM | +| SYSTEM | SYSMAN | TSMSYS | WKPROXY | WKSYS | +| WK_TEST | WMSYS | XDB | XS$NULL | | + +!!! Note + EDB Postgres Advanced Server does not support schema names starting with **pg_**, which should also be excluded while extracting from Oracle. + +### Supported object types The Migration Portal supports the migration of the following object types: @@ -133,7 +128,7 @@ The Migration Portal supports the migration of the following object types: !!! Note COMMENTS on columns, tables, and materialized views are also supported. -## Unsupported object types +### Unsupported object types - Editions - Operators From b076c3e75d71f81ba6d74e8c548f32a68c453370 Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Fri, 21 Jan 2022 16:04:18 +0530 Subject: [PATCH 10/18] Content improvements --- .../01_mp_schema_extraction.mdx | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx index 6d1dad39158..aa8db9e8e40 100644 --- a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx +++ b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx @@ -9,11 +9,15 @@ legacyRedirectsGenerated: -You can use Oracle’s Data Pump utility to extract metadata and data. However, Migration Portal only requires the metadata in the SQL dump file to assess the extracted schemas. +You can use the Data Pump (DBMS_DATAPUMP) PL/SQL package to extract metadata and data from your Oracle database to an SQL dump file. + +!!! Note + If the SQL file size exceeds 1 GB, you can reduce the SQL file size by splitting the schemas across multiple SQL files and extracting fewer schemas in each SQL file. Migration Portal might become unresponsive for large SQL files depending on your system’s and browser’s resource availability. ## Extract one or more schemas to an SQL dump file -Oracle Data Pump’s command-line clients `expdp` and `impdp` use the procedures provided in the DBMS_DATAPUMP PL/SQL package. +Note that Migration Portal only requires the metadata in the SQL dump file to assess the extracted schemas. + #### Prerequisites @@ -37,7 +41,7 @@ Perform the following steps: `SQL> grant read,write on directory DMPDIR to ;` -3. Before running the `expdp` command, create a file with a `.par` extension (for example: `parameters.par`) on your server. Add attributes and values to the file using the following command: +3. Before running the `expdp` command, create a file with a `.par` extension (for example: parameters.par) on your server. Add attributes and values to the file using the following command: ``` $ cat parameters.par @@ -61,7 +65,7 @@ The attributes and values in the above command specify the following options: !!! Tip - (Optional) Oracle Data Pump utility allows you to extract all schemas in the database. To extract metadata for *all* schemas, enter `FULL=Y` in the `.par` file. + (Optional) Oracle Data Pump utility allows you to extract all schemas in the database. To extract metadata for *all* schemas, enter `FULL=Y` in the .par file. 4. From the command line, run the export command to generate a **db.dump** file. For example, to extract metadata information for ``, ``, ``, and so on, run the following command: @@ -83,8 +87,9 @@ The attributes and values in the above command specify the following options: ``` -!!! Note - Migration Portal might become unresponsive for large SQL files depending on your system’s and browser’s resource availability. If the SQL file size exceeds 1 GB, you can reduce the SQL file size by splitting the schemas across multiple SQL files and extracting fewer schemas in each SQL file. +## Extracted schemas and objects + +See the following sections for supported and unsupported schemas and objects. ### Unsupported schemas From 35d3c2b21ec1493c720979420299a20f6c2c75d3 Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Fri, 21 Jan 2022 18:39:12 +0530 Subject: [PATCH 11/18] Removed screenshots Removed based on analysis done here: https://docs.google.com/spreadsheets/d/18b9lp2bUumlud7X-AOCNBSomKMbJtJIQfbW41apBq8A/edit?usp=sharing Still need to take screenshots with new UI for screenshots we are retaining. --- .../02_mp_overview_project.mdx | 2 - .../03_mp_overview_wiki.mdx | 24 ------- .../02_mp_schema_assessment.mdx | 11 +--- .../03_mp_schema_migration.mdx | 63 +++---------------- .../3.5.0/images/mp_enterprisedb_website.png | 4 +- 5 files changed, 15 insertions(+), 89 deletions(-) delete mode 100644 product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/03_mp_overview_wiki.mdx diff --git a/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/02_mp_overview_project.mdx b/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/02_mp_overview_project.mdx index c7a6d0e9379..8c45503b342 100644 --- a/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/02_mp_overview_project.mdx +++ b/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/02_mp_overview_project.mdx @@ -40,5 +40,3 @@ Use the following resources to gather information about your migration projects: - **Quick help**: The Quick help panel displays links to Knowledge Base articles and repair handler documentation. - **Search**: Use the **Search** box to search the Knowledge Base entries or repair handler documentation for specific information. - -![Searching the Knowledge Base entry.](../images/mp_overview_project_kb.png) diff --git a/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/03_mp_overview_wiki.mdx b/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/03_mp_overview_wiki.mdx deleted file mode 100644 index 3812b1cf4d8..00000000000 --- a/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/03_mp_overview_wiki.mdx +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Overview of the Migration Portal wiki page" - - -legacyRedirectsGenerated: - # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. - - "/edb-docs/d/edb-postgres-migration-portal/user-guides/user-guide/3.0.1/mp_overview_wiki.html" ---- - - - -The Portal wiki page provides quick access to: - -- What’s New information -- Quick Start guide -- Extracting schema -- Migrating schema -- Migrating data -- Knowledge Base -- Repair handlers -- Migration Portal User Guide -- FAQs - -![The Migration Portal Wiki page.](../images/mp_overview_wiki.png) diff --git a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx index 87b55bbb3bd..dcf8544e765 100644 --- a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx +++ b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx @@ -40,9 +40,10 @@ You can assess an Oracle database schema for compatibility with EDB Postgres Adv 8. Select **Create & assess** to create a new project and to assess the schemas. - ![The Schema analysis result.](../images/mp_schema_assessment_analysis_result.png) + The analysis tool reviews every construct and executes repair actions to improve compatibility with EDB Postgres Advanced Server. It flags any remaining errors that require manual intervention. + +![The Schema analysis result.](../images/mp_schema_assessment_analysis_result.png) - The analysis tool reviews every construct and executes repair actions to improve compatibility with EDB Postgres Advanced Server. It flags any remaining errors that require manual intervention. 9. Verify the DDL objects (e.g., TABLES) that don't show a 100% success ratio. @@ -78,16 +79,10 @@ When you have finished working with the DDL, you can either download the modifie Migration Portal reports provides a high-level assessment summary of the schemas assessed for your project. In addition, the report provides details about the failed objects and the cause of failure. -![Select schemas for reports.](../images/mp_schema_assessment_select_schema.png) - 1. Select **Report**. 2. Select the schemas to include in the report. 3. To generate the onscreen report, select **Generate**. -![The Schema Assessment Report.](../images/mp_schema_assessment_schema_report.png) - You can optionally select **Generate PDF** to save the report in PDF format. You can also view the count of distinct repair handlers applied to the DDLs under the selected schemas. - -![The saved pdf report.](../images/mp_schema_assessment_schema_report_pdf.png) diff --git a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/03_mp_schema_migration.mdx b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/03_mp_schema_migration.mdx index ac73e08b2d8..e1027022912 100644 --- a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/03_mp_schema_migration.mdx +++ b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/03_mp_schema_migration.mdx @@ -17,8 +17,6 @@ You can migrate to any of these schemas: - New on-premises EDB Postgres Advanced Server - EDB Postgres Advanced Server in the cloud -![Schema migration home page](../images/mp_schema_migration_home.png) - ## Migrating to an existing on-premises EDB Postgres Advanced Server host @@ -29,25 +27,18 @@ You can migrate schemas to an existing on-premises EDB Postgres Advanced Server 1. Select **Existing on-premises EDB Postgres Postgres Advanced Server**. -![Existing on-premises EDB Postgres Advanced Server home page](../images/mp_schema_migration_existing_epas.png) 2. Select one or more schemas to migrate to EDB Postgres Advanced Server. -![Selecting schemas for migration](../images/mp_schema_mig_exist_epas_schemas_selection.png) - - -!!!Note - If your schemas aren't 100% compatible, a banner appears. Complete the Contact Us form as needed. + !!! Note + If your schemas aren't 100% compatible, a banner appears. Complete the Contact Us form as needed. -![The Contact Us form](../images/mp_schema_mig_exist_epas_contact_us.png) 3. To download the assessed schemas, select **Download SQL file**. -![Download the assessed schemas](../images/mp_schema_mig_exist_epas_download.png) 4. Select **Windows**. -![Selecting Windows operating system](../images/mp_schema_mig_exist_epas_windows.png) 5. To import the schemas, run the following command: @@ -63,12 +54,11 @@ You can migrate schemas to an existing on-premises EDB Postgres Advanced Server edb-psql -f .sql ``` -!!!Note + !!! Note You can alternatively use the `pgAdmin` client for the import. The converted schemas migrate to the target server. -![A successful migration](../images/mp_schema_mig_exist_epas_mig_success.png) ### Migrate schemas on Linux @@ -76,19 +66,15 @@ You can migrate schemas to an existing on-premises EDB Postgres Advanced Server 1. Select `Existing on-premises EDB Postgres Advanced Server`. -![Existing on-premises EDB Postgres Advanced Server home page](../images/mp_schema_migration_existing_epas.png) 2. Select one or more schemas to migrate to EDB Postgres Advanced Server. -![Selecting schemas for migration](../images/mp_schema_mig_exist_epas_schemas_selection_linux.png) 3. To download the assessed schemas, select **Download SQL file**. -![Download the assessed schemas](../images/mp_schema_mig_exist_epas_download.png) 4. Select **Linux**. -![Selecting Linux operating system](../images/mp_schema_mig_exist_linux.png) 5. To import the schemas, invoke the following `edb-psql` client commands: @@ -100,13 +86,11 @@ You can migrate schemas to an existing on-premises EDB Postgres Advanced Server \\i .sql ``` -!!!Note + !!! Note You can alternatively use the `pgAdmin` client for the import. The converted schemas migrate to the target server. -![A successful schema migration](../images/mp_schema_mig_exist_epas_mig_success.png) - ## Migrating to a new on-premises EDB Postgres Advanced Server installation @@ -119,27 +103,21 @@ Migrate schemas to a new on-premises EDB Postgres Advanced Server on Windows. 1. Select **New on-premises EDB Postgres Postgres Advanced Server**. -![New on-premises EDB Postgres Advanced Server home page](../images/mp_schema_migration_home_new.png) 2. Select one or more schemas to migrate on EDB Postgres Advanced Server. -![Selecting schemas for migration](../images/mp_schema_mig_new_epas_schemas_selection.png) 3. For the operating system, select **Windows**. -![Selecting Windows operating system](../images/mp_schema_mig_new_epas_windows.png) 4. Select **Download Windows installer**. -![Downloading Windows installer](../images/mp_schema_mig_new_epas_windows_installer.png) 5. For installation steps, select **EDB Postgres Advanced Server Installation Guide for Windows**. -![View Windows installation guide](../images/mp_schema_mig_new_epas_windows_guide.png) 6. To download the assessed schemas, select **Download SQL file**. -![Downloading the assessed file](../images/mp_schema_mig_new_epas_download.png) 7. You can import schemas by running the following command: @@ -155,8 +133,7 @@ Migrate schemas to a new on-premises EDB Postgres Advanced Server on Windows. edb-psql -f .sql ``` - -!!! Note + !!! Note You can alternatively use the `pgAdmin` client for the import. @@ -166,30 +143,22 @@ Migrate schemas to an on-premises EDB Postgres Advanced Server on Linux. 1. Select **New On-premises EDB Postgres Advanced Server**. -![Migrating schemas home page](../images/mp_schema_migration_home_new.png) 2. Select one or more schemas to migrate on EDB Postgres Advanced Server. -![Selecting schemas for migration](../images/mp_schema_mig_new_epas_schemas_selection.png) - 3. For the operating system, select the Linux. -![Selecting Linux operating system](../images/mp_schema_mig_new_epas_linux.png) 4. You can select one of the following options to install the EDB Postgres Advanced Server: - Repository - More options - ![Selecting Linux repository](../images/mp_schema_mig_new_epas_linux_repo.png) - 5. For information on the installation procedure, select `EDB Postgres Advanced Server Installation Guide` for Linux. -![Selecting Linux installation guide](../images/mp_schema_mig_new_epas_linux_guide.png) 6. To download the assessed schemas, select **Download SQL file**. -![Downloading the assessed schemas](../images/mp_schema_mig_new_epas_download.png) 7. To import the schemas, run the following command: @@ -201,14 +170,11 @@ Migrate schemas to an on-premises EDB Postgres Advanced Server on Linux. \i .sql ``` -![Importing schemas into EDB Postgres Advanced Server](../images/mp_schema_mig_new_epas_linux_import.png) - -!!! Note + !!! Note You can alternatively use the `pgAdmin` client for the import. The converted schemas migrate to the target server. -![A successful schema migration](../images/mp_schema_mig_new_epas_mig_success.png) ## Migrate to the cloud @@ -216,23 +182,17 @@ Migrate schemas on EDB Postgres Advanced Server to the cloud. 2. Select **EDB Postgres Advanced Server on Cloud**. -![EDB Postgres Advanced Server on Cloud](../images/mp_schema_migration_home_cloud.png) 3. Select one or more schemas to migrate to EDB Postgres Advanced Server. -![Selecting schemas for migration](../images/mp_schema_mig_cloud_epas_schemas_selection.png) - 4. Select the cloud platform, for example, **BigAnimal**. -![Selecting cloud option for migration](../images/migrate_cloud_select_platform_updated.png) 5. To launch a new cluster, select **Go to BigAnimal**. + + Or, if you have an existing cluster running, select `Next`. -![Launching a cloud cluster](../images/mp_migrate_cloud_launch_cluster_updated.png) - -Or, if you have an existing cluster running, select `Next`. - -!!! Note + !!! Note See the [Big Animal](https://www.enterprisedb.com/edb-cloud) page for more information. 6. Enter the required connection details on the `Connect` page. @@ -241,13 +201,10 @@ Or, if you have an existing cluster running, select `Next`. 7. To verify the connection details, select **Test Connection**. -!!!Note + !!! Note You can select **Edit Connection** to make changes to the connection details and retest the connection details. -![Verify the connection details](../images/mp_migrate_cloud_connection_complete_updatated.png) - 8. Once the connection is successful, select **Next**. -![A successful migration](../images/mp_migrate_cloud_success_updated.png) The converted schemas migrate to the target server. diff --git a/product_docs/docs/migration_portal/3.5.0/images/mp_enterprisedb_website.png b/product_docs/docs/migration_portal/3.5.0/images/mp_enterprisedb_website.png index 708f57790b7..24dc35d282e 100644 --- a/product_docs/docs/migration_portal/3.5.0/images/mp_enterprisedb_website.png +++ b/product_docs/docs/migration_portal/3.5.0/images/mp_enterprisedb_website.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:75af20d6c708d7a2c929afe562344a13273f2face2112d2c90179c7881a42857 -size 292870 +oid sha256:2dad43dabeb71007e0e4c32c92ce767e82e01db35707902b7cc1de23473f3383 +size 62834 From c498c954bb12382c26fbab7feede312dcb5a0413 Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Thu, 27 Jan 2022 14:29:17 +0530 Subject: [PATCH 12/18] Changes for MIG-3478 --- .../01_mp_schema_extraction.mdx | 113 +++++++++++++----- 1 file changed, 85 insertions(+), 28 deletions(-) diff --git a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx index aa8db9e8e40..ea2631a68d0 100644 --- a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx +++ b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx @@ -14,7 +14,7 @@ You can use the Data Pump (DBMS_DATAPUMP) PL/SQL package to extract metadata and !!! Note If the SQL file size exceeds 1 GB, you can reduce the SQL file size by splitting the schemas across multiple SQL files and extracting fewer schemas in each SQL file. Migration Portal might become unresponsive for large SQL files depending on your system’s and browser’s resource availability. -## Extract one or more schemas to an SQL dump file +## Extracting schemas to an SQL dump file Note that Migration Portal only requires the metadata in the SQL dump file to assess the extracted schemas. @@ -25,7 +25,9 @@ Note that Migration Portal only requires the metadata in the SQL dump file to as * Ensure that you have sufficient tablespace quota to create objects in the tablespace. -Perform the following steps: +Perform either of the following procedures: + +### To extract one or more schemas in a database 1. In SQL*Plus, create a directory object that points to a directory on your server file system. For example: @@ -50,35 +52,88 @@ Perform the following steps: INCLUDE=SYNONYM,SEQUENCE,TYPE,TABLE,CONSTRAINT,PROCEDURE,FUNCTION,PACKAGE,INDEX,MATERIALIZED_VIEW,VIEW,TRIGGER,DB_LINK - EXCLUDE=SCHEMA:"IN(select username as schema_name from sys.dba_users where LOWER(username) LIKE 'pg_%' OR username IN - ('ANONYMOUS','APEX_PUBLIC_USER','APEX_030200','APEX_040000','APEX_040200','APPQOSSYS','AUDSYS','CTXSYS','DMSYS','DBSNMP', - 'DBSFWUSER','DEMO','DIP','DMSYS', 'DVF','DVSYS','EXFSYS','FLOWS_FILES','FLOWS_020100', 'FRANCK','GGSYS','GSMADMIN_INTERNAL', - 'GSMCATUSER','GSMROOTUSER','GSMUSER','LBACSYS','MDDATA','MDSYS','MGMT_VIEW','OJVMSYS','OLAPSYS','ORDPLUGINS','ORDSYS', - 'ORDDATA','OUTLN','ORACLE_OCM','OWBSYS','OWBYSS_AUDIT','PDBADMIN','RMAN','REMOTE_SCHEDULER_AGENT','SI_INFORMTN_SCHEMA', - 'SPATIAL_CSW_ADMIN_USR','SPATIAL_WFS_ADMIN_USR','SQLTXADMIN','SQLTXPLAIN','SYS$UMF','SYS','SYSBACKUP','SYSDG','SYSKM', - 'SYSRAC','SYSTEM','SYSMAN','TSMSYS','WKPROXY','WKSYS','WK_TEST','WMSYS','XDB','XS$NULL'))" ``` The attributes and values in the above command specify the following options: + `CONTENT=metadata_only` extracts only the metadata of the schemas. - + `INCLUDE=` specifies which database object types to include in the extraction. Append a comma-separated list of the [Supported object types](#supported-object-types) to only extract database object types that are supported by Migration Portal. - + `EXCLUDE=SCHEMA:` specifies which schemas to exclude in the extraction. Append a list of the [Unsupported schemas](#unsupported-schemas) to ensure that the Data Pump utility *does not* extract any system schemas (including schemas beginning with **pg_**). + + `INCLUDE=` specifies which database object types to include in the extraction. Append a comma-separated list of the [Supported object types](#supported-object-types) to only extract database object types that are supported by Migration Portal. - !!! Tip - - (Optional) Oracle Data Pump utility allows you to extract all schemas in the database. To extract metadata for *all* schemas, enter `FULL=Y` in the .par file. 4. From the command line, run the export command to generate a **db.dump** file. For example, to extract metadata information for ``, ``, ``, and so on, run the following command: ``` $ expdp @ DIRECTORY=DMPDIR SCHEMAS=,, DUMPFILE=db.dump parfile=parameters.par ``` - Alternatively, If you have specified `FULL=Y` in your `.par` file and want to extract all schemas, you must run the command as follows: + +5. To generate a SQL file from the dump file, run the import command. + + For example, to generate **YourSchemas.SQL** file from the db.dump file, enter the following command: + + ``` + $ impdp @ DIRECTORY= TRANSFORM=OID:n SQLFILE=YourSchemas.sql DUMPFILE=db.dump + ``` + +### To extract all schemas in a database + +!!! Note + Do not perform the following procedure from a user account that belongs to the excluded schemas list, see [Unsupported schemas](#unsupported-schemas). The impdp command will fail if the user account running the command is in the excluded list of schemas. + + +1. In SQL*Plus, create a directory object that points to a directory on your server file system. For example: + + **On Linux**: + + `SQL> create directory DMPDIR as '/sample/file/path';` + + **On Windows**: + + `SQL> create directory DMPDIR as 'c:\sample\file\path\';` + +2. Grant read, write permissions to the user running the Data Pump utility. + + `SQL> grant read,write on directory DMPDIR to ;` + +3. Before running the expdp command, create a file with a `.par` extension (for example: parameters.par) on your server. Add attributes and values to the file using the following command: + + ``` + $ cat parameters1.par + + CONTENT=metadata_only + + FULL=Y + + INCLUDE=SYNONYM,SEQUENCE,TYPE,TABLE,CONSTRAINT,PROCEDURE,FUNCTION,PACKAGE,INDEX,MATERIALIZED_VIEW,VIEW,TRIGGER,DB_LINK + + ``` +The attributes and values in the above command specify the following options: + + `CONTENT=metadata_only` extracts only the metadata of the schemas. + + `INCLUDE=` specifies which database object types to include in the extraction. Append a comma-separated list of the [Supported object types](#supported-object-types) to only extract database object types that are supported by Migration Portal. + + `FULL=Y` extracts all schemas in the database. + + +4. From the command line, run the export command to generate a **db.dump** file, as follows: ``` - $ expdp @ DIRECTORY=DMPDIR DUMPFILE=db.dump parfile=parameters.par + $ expdp @ DIRECTORY=DMPDIR DUMPFILE=db.dump parfile=parameters1.par ``` -5. To generate a SQL file from the dump file, run the import command. +5. Before running the impdp command, create a parameter file with a `.par` extension (for example: parameters2.par) on your server. Add attributes and values to the file using the following command: + + ``` + $ cat parameters2.par + + EXCLUDE=SCHEMA:"IN(select username as schema_name from sys.dba_users where LOWER(username) LIKE 'pg_%' OR username IN + ('ANONYMOUS','APEX_PUBLIC_USER','APEX_030200','APEX_040000','APEX_040200','APPQOSSYS','AUDSYS','CTXSYS','DMSYS','DBSNMP', + 'DBSFWUSER','DEMO','DIP','DMSYS', 'DVF','DVSYS','EXFSYS','FLOWS_FILES','FLOWS_020100', 'FRANCK','GGSYS','GSMADMIN_INTERNAL', + 'GSMCATUSER','GSMROOTUSER','GSMUSER','LBACSYS','MDDATA','MDSYS','MGMT_VIEW','OJVMSYS','OLAPSYS','ORDPLUGINS','ORDSYS', + 'ORDDATA','OUTLN','ORACLE_OCM','OWBSYS','OWBYSS_AUDIT','PDBADMIN','RMAN','REMOTE_SCHEDULER_AGENT','SI_INFORMTN_SCHEMA', + 'SPATIAL_CSW_ADMIN_USR','SPATIAL_WFS_ADMIN_USR','SQLTXADMIN','SQLTXPLAIN','SYS$UMF','SYS','SYSBACKUP','SYSDG','SYSKM', + 'SYSRAC','SYSTEM','SYSMAN','TSMSYS','WKPROXY','WKSYS','WK_TEST','WMSYS','XDB','XS$NULL'))" + ``` + The attributes and values in the above command specify the following options: + + `CONTENT=metadata_only` extracts only the metadata of the schemas. + + `EXCLUDE` specifies which schemas to exclude. Append a list of the [Unsupported schemas](#unsupported-schemas) to ensure that the Data Pump utility *does not* extract any system schemas (including schemas beginning with **pg_**). + +6. To generate a SQL file from the dump file, run the import command. For example, to generate **YourSchemas.SQL** file from the db.dump file, enter the following command: @@ -97,17 +152,19 @@ See the following table for a list of Oracle systems schemas you must exclude wh | | | | | | | :-------------------- | :------------------ | :---------------- | :----------------- | :---------------------- | -| ANONYMOUS | APEX_PUBLIC_USER | APEX_030200 | APEX_040000 | APEX_040200 | -| APPQOSSYS | AUDSYS | BI | CTXSYS | DMSYS | -| DBSNMP | DIP | DVF | DVSYS | EXFSYS | -| FLOWS_FILES | FLOWS_020100 | GSMADMIN_INTERNAL | GSMCATUSER | GSMUSER | -| IX | LBACSYS | MDDATA | MDSYS | MGMT_VIEW | -| OE | OJVMSYS | OLAPSYS | ORDPLUGINS | ORDSYS | -| ORDDATA | OUTLN | ORACLE_OCM | OWBSYS | OWBYSS_AUDIT | -| PM | RMAN | SH | SI_INFORMTN_SCHEMA | SPATIAL_CSW_ADMIN_USR | -| SPATIAL_WFS_ADMIN_USR | SYS | SYSBACKUP | SYSDG | SYSKM | -| SYSTEM | SYSMAN | TSMSYS | WKPROXY | WKSYS | -| WK_TEST | WMSYS | XDB | XS$NULL | | +| ANONYMOUS | APEX_PUBLIC_USER | APEX_030200 | APEX_040000 | APEX_040200 | +| APPQOSSYS | AUDSYS | CTXSYS | DMSYS | DBSNMP | +| DBSFWUSER | DEMO | DIP | DMSYS | DVF | +| DVSYS | EXFSYS | FLOWS_FILES | FLOWS_020100 | FRANCK | +| GGSYS | GSMADMIN_INTERNAL | GSMCATUSER | GSMROOTUSER | GSMUSER | +| LBACSYS | MDDATA | MDSYS | MGMT_VIEW | OJVMSYS | +| OLAPSYS | ORDPLUGINS | ORDSYS | ORDDATA | OUTLN | +| ORACLE_OCM | OWBSYS | OWBYSS_AUDIT | PDBADMIN | RMAN | +| REMOTE_SCHEDULER_AGENT | SI_INFORMTN_SCHEMA | SPATIAL_CSW_ADMIN_USR | SPATIAL_WFS_ADMIN_USR | SQLTXADMIN | +| SQLTXPLAIN | SYS$UMF | SYS | SYSBACKUP | SYSDG | +| SYSKM | SYSRAC | SYSTEM | SYSMAN | TSMSYS | +| WKPROXY | WKSYS | WK_TEST | WMSYS | XDB | +| XS$NULL | | !!! Note EDB Postgres Advanced Server does not support schema names starting with **pg_**, which should also be excluded while extracting from Oracle. From 21f190a603f0f4e5f86989b34f0e9be2012ea942 Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Thu, 27 Jan 2022 17:08:46 +0530 Subject: [PATCH 13/18] Updating screenshots --- .../04_mp_migrating_database/02_mp_schema_assessment.mdx | 6 +----- .../3.5.0/images/mp_schema_assessment_errors.png | 4 ++-- .../3.5.0/images/mp_schema_assessment_incompatible.png | 4 ++-- .../3.5.0/images/mp_schema_assessment_workaround.png | 4 ++-- 4 files changed, 7 insertions(+), 11 deletions(-) diff --git a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx index dcf8544e765..e62874ff2af 100644 --- a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx +++ b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx @@ -19,7 +19,7 @@ You can assess an Oracle database schema for compatibility with EDB Postgres Adv 3. Select `New` to create a project. -![The Migration Portal New project dialog.](../images/mp_schema_assessment_new_project_edited.png) + ![The Migration Portal New project dialog.](../images/mp_schema_assessment_new_project_edited.png) 4. In the dialog box, enter the project name in the **Project name** field. @@ -34,7 +34,6 @@ You can assess an Oracle database schema for compatibility with EDB Postgres Adv !!! Note - Don't modify the `.SQL` file. - For more information, see [Schema extraction](01_mp_schema_extraction/#mp_schema_extraction). 7. To specify an index prefix (`idx`) when creating a project, select the **Add Index Prefix** box. This selection ensures better assessment results, as EDB Postgres Advanced Server doesn't support the same name for tables and indexes. @@ -42,12 +41,9 @@ You can assess an Oracle database schema for compatibility with EDB Postgres Adv The analysis tool reviews every construct and executes repair actions to improve compatibility with EDB Postgres Advanced Server. It flags any remaining errors that require manual intervention. -![The Schema analysis result.](../images/mp_schema_assessment_analysis_result.png) - 9. Verify the DDL objects (e.g., TABLES) that don't show a 100% success ratio. -![Verifying the DDL objects.](../images/mp_schema_assessment_verifying_ddl.png) 10. Select the objects that aren't compatible with EDB Postgres Advanced Server and view the details. At the bottom of the middle panel, you can view repair action details. diff --git a/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_errors.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_errors.png index 04285c2943a..7f04c38701c 100644 --- a/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_errors.png +++ b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_errors.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:45dd9336edd642be23387005fe7a218d06fdc01da6000df3aee689e135c02309 -size 217587 +oid sha256:38bc841cbb2d3db6a304b925ab98e417dec77acbf4ac4ec4fa7307f8000dd49e +size 36108 diff --git a/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_incompatible.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_incompatible.png index 333282e5880..a9e44cc7f01 100644 --- a/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_incompatible.png +++ b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_incompatible.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7ad683e872fc8c093e2218257b12c45d842ac9459572ed7b95ca8760210a5c0c -size 166629 +oid sha256:e91edb917f96f521cf73d30bf8cf79165df75b8e63944a2cfb27155b59467c91 +size 217682 diff --git a/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_workaround.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_workaround.png index b838cc2fe10..cd7dcee6f7e 100644 --- a/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_workaround.png +++ b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_workaround.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d34ba78cb672310d8b72d926053f0c806e86abe0086776667b72549ffa071f58 -size 166426 +oid sha256:96c7ed908f54beee855055480f189958831e3b435a323c9ef15a3cc8c0bf567c +size 204555 From e004a5a01713daf56829e63df5a6d1dee61923a9 Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Thu, 27 Jan 2022 18:12:09 +0530 Subject: [PATCH 14/18] Updated screenshot on projects overview page --- .../3.5.0/03_mp_using_portal/01_mp_overview_home.mdx | 3 --- .../3.5.0/03_mp_using_portal/02_mp_overview_project.mdx | 3 +-- .../04_mp_migrating_database/02_mp_schema_assessment.mdx | 6 +++--- .../docs/migration_portal/3.5.0/images/mp_overview_home.png | 4 ++-- 4 files changed, 6 insertions(+), 10 deletions(-) diff --git a/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/01_mp_overview_home.mdx b/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/01_mp_overview_home.mdx index ea5042542af..3230e76e792 100644 --- a/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/01_mp_overview_home.mdx +++ b/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/01_mp_overview_home.mdx @@ -19,9 +19,6 @@ The Migration Portal home page allows access to the following Migration Portal f - **Create project**: Select **+ New** to create a project. -!!!Note - Uploading large .sql files might freeze or crash the browser (depending on the browser and the system resources in use). In this scenario, try running Migration Portal in a different browser or extracting fewer schemas and uploading that file on Migration Portal. - - **Search projects**: Use the **Search** box to search for projects. - **Overview**: The Overview panel provides details about the selected project and displays the compatibility percentage after schema assessment. diff --git a/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/02_mp_overview_project.mdx b/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/02_mp_overview_project.mdx index 8c45503b342..434fd491d29 100644 --- a/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/02_mp_overview_project.mdx +++ b/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/02_mp_overview_project.mdx @@ -29,8 +29,7 @@ Use the following resources to gather information about your migration projects: - **Common Failures**: Displays the reason for the failed objects for the selected schemas. - ![Common Failures tab](../images/mp_whats_new_common_failures.png) - +!!! Note You can download a `.csv` file for the common failures for the project. - **Schema**: Displays the result of the assessment. diff --git a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx index e62874ff2af..129133ce669 100644 --- a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx +++ b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx @@ -57,13 +57,13 @@ You can assess an Oracle database schema for compatibility with EDB Postgres Adv The object detail panel displays the workaround or the resolution for the failed object. You can manually make the changes on the **Assessment** tab for that object and select **Reassess**. -!!! Note + !!! Note If any failed object passes while reassessing, the dependent objects for that object are also reassessed. -![Workaround or resolution for incompatible objects.](../images/mp_schema_assessment_workaround.png) - Similarly, you can make all incompatible objects compatible. +![Workaround or resolution for incompatible objects.](../images/mp_schema_assessment_workaround.png) + !!! Note If the information or workaround for incompatible objects isn't available in the Knowledge Base, contact the support team for help. diff --git a/product_docs/docs/migration_portal/3.5.0/images/mp_overview_home.png b/product_docs/docs/migration_portal/3.5.0/images/mp_overview_home.png index 86e2a03ddd2..f6615bccbb5 100644 --- a/product_docs/docs/migration_portal/3.5.0/images/mp_overview_home.png +++ b/product_docs/docs/migration_portal/3.5.0/images/mp_overview_home.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e855561005abd011155573190ead85e2d3c0eeb226434ce44a6eec7df1e63c59 -size 190911 +oid sha256:61d26b64dbcae9b94fe4f54f949de6c6211a721c3f96ed5717244eec3c3e9f24 +size 142861 From f8063eba336b79d4410ded7509d0bbb8c1562639 Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Mon, 31 Jan 2022 19:16:05 +0530 Subject: [PATCH 15/18] Incorporated feedback from Prashant --- .../03_mp_using_portal/02_mp_overview_project.mdx | 4 ++-- .../01_mp_schema_extraction.mdx | 12 ++++++------ .../02_mp_schema_assessment.mdx | 2 -- .../03_mp_schema_migration.mdx | 12 ++++++------ .../3.5.0/images/mp_enterprisedb_website.png | 4 ++-- .../3.5.0/images/mp_overview_home.png | 4 ++-- .../3.5.0/images/mp_schema_assessment_errors.png | 4 ++-- .../images/mp_schema_assessment_incompatible.png | 4 ++-- .../3.5.0/images/mp_schema_assessment_workaround.png | 4 ++-- 9 files changed, 24 insertions(+), 26 deletions(-) diff --git a/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/02_mp_overview_project.mdx b/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/02_mp_overview_project.mdx index 434fd491d29..0de8e422a08 100644 --- a/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/02_mp_overview_project.mdx +++ b/product_docs/docs/migration_portal/3.5.0/03_mp_using_portal/02_mp_overview_project.mdx @@ -11,7 +11,7 @@ legacyRedirectsGenerated: The Migration Portal Projects page provides detailed information about your migration. -![The Migration Portal Projects Page overview.](../images/mp_overview_project_numbered.png) +![The Migration Portal Projects Page overview.](../images/mp_overview_home.png) Use the following resources to gather information about your migration projects: @@ -29,7 +29,7 @@ Use the following resources to gather information about your migration projects: - **Common Failures**: Displays the reason for the failed objects for the selected schemas. -!!! Note + !!! Note You can download a `.csv` file for the common failures for the project. - **Schema**: Displays the result of the assessment. diff --git a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx index ea2631a68d0..fb08841d0a2 100644 --- a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx +++ b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx @@ -9,10 +9,11 @@ legacyRedirectsGenerated: -You can use the Data Pump (DBMS_DATAPUMP) PL/SQL package to extract metadata and data from your Oracle database to an SQL dump file. +You can use the Oracle’s Data Pump utility to extract metadata from your Oracle database to an SQL dump file. Migration Portal requires this file to be uploaded to assess the extracted schemas. + !!! Note - If the SQL file size exceeds 1 GB, you can reduce the SQL file size by splitting the schemas across multiple SQL files and extracting fewer schemas in each SQL file. Migration Portal might become unresponsive for large SQL files depending on your system’s and browser’s resource availability. + Migration Portal might become unresponsive for very large SQL files, depending on your system’s and browser’s resource availability. Migration Portal supports SQL files upto 1 GB. If your SQL file size exceeds 1 GB, extract fewer schemas at a time to reduce the SQL file size. ## Extracting schemas to an SQL dump file @@ -43,7 +44,7 @@ Perform either of the following procedures: `SQL> grant read,write on directory DMPDIR to ;` -3. Before running the `expdp` command, create a file with a `.par` extension (for example: parameters.par) on your server. Add attributes and values to the file using the following command: +3. Before running the `expdp` command, create a file with a `.par` extension (for example: parameters.par) on your server. Add attributes and values to the file as shown below: ``` $ cat parameters.par @@ -92,7 +93,7 @@ The attributes and values in the above command specify the following options: `SQL> grant read,write on directory DMPDIR to ;` -3. Before running the expdp command, create a file with a `.par` extension (for example: parameters.par) on your server. Add attributes and values to the file using the following command: +3. Before running the expdp command, create a file with a `.par` extension (for example: parameters1.par) on your server. Add attributes and values to the file as shown below: ``` $ cat parameters1.par @@ -116,7 +117,7 @@ The attributes and values in the above command specify the following options: $ expdp @ DIRECTORY=DMPDIR DUMPFILE=db.dump parfile=parameters1.par ``` -5. Before running the impdp command, create a parameter file with a `.par` extension (for example: parameters2.par) on your server. Add attributes and values to the file using the following command: +5. Before running the impdp command, create a parameter file with a `.par` extension (for example: parameters2.par) on your server. Add attributes and values to the file as shown below: ``` $ cat parameters2.par @@ -130,7 +131,6 @@ The attributes and values in the above command specify the following options: 'SYSRAC','SYSTEM','SYSMAN','TSMSYS','WKPROXY','WKSYS','WK_TEST','WMSYS','XDB','XS$NULL'))" ``` The attributes and values in the above command specify the following options: - + `CONTENT=metadata_only` extracts only the metadata of the schemas. + `EXCLUDE` specifies which schemas to exclude. Append a list of the [Unsupported schemas](#unsupported-schemas) to ensure that the Data Pump utility *does not* extract any system schemas (including schemas beginning with **pg_**). 6. To generate a SQL file from the dump file, run the import command. diff --git a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx index 129133ce669..123c282ddf7 100644 --- a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx +++ b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx @@ -51,8 +51,6 @@ You can assess an Oracle database schema for compatibility with EDB Postgres Adv 11. Refer to the Knowledge Base information in the right panel to locate the possible workarounds for the objects that aren't immediately compatible with EDB Postgres Advanced Server. You can also view the Knowledge Base information on the Portal wiki page. -![Assessment result with errors.](../images/mp_schema_assessment_errors.png) - 12. On the **Knowledge Base** tab, you can enter the error message for the incompatible objects with EDB Postgres Advanced Server and select **Search**. The object detail panel displays the workaround or the resolution for the failed object. You can manually make the changes on the **Assessment** tab for that object and select **Reassess**. diff --git a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/03_mp_schema_migration.mdx b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/03_mp_schema_migration.mdx index e1027022912..e3a48d56224 100644 --- a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/03_mp_schema_migration.mdx +++ b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/03_mp_schema_migration.mdx @@ -180,24 +180,24 @@ The converted schemas migrate to the target server. Migrate schemas on EDB Postgres Advanced Server to the cloud. -2. Select **EDB Postgres Advanced Server on Cloud**. +1. Select **EDB Postgres Advanced Server on Cloud**. -3. Select one or more schemas to migrate to EDB Postgres Advanced Server. +2. Select one or more schemas to migrate to EDB Postgres Advanced Server. -4. Select the cloud platform, for example, **BigAnimal**. +3. Select the cloud platform, for example, **BigAnimal**. -5. To launch a new cluster, select **Go to BigAnimal**. +4. To launch a new cluster, select **Go to BigAnimal**. Or, if you have an existing cluster running, select `Next`. !!! Note See the [Big Animal](https://www.enterprisedb.com/edb-cloud) page for more information. -6. Enter the required connection details on the `Connect` page. +5. Enter the required connection details on the `Connect` page. -![Connecting to the cloud cluster](../images/mp_migrate_cloud_connection_updated.png) + ![Connecting to the cloud cluster](../images/mp_migrate_cloud_connection_updated.png) 7. To verify the connection details, select **Test Connection**. diff --git a/product_docs/docs/migration_portal/3.5.0/images/mp_enterprisedb_website.png b/product_docs/docs/migration_portal/3.5.0/images/mp_enterprisedb_website.png index 24dc35d282e..0210ec21b61 100644 --- a/product_docs/docs/migration_portal/3.5.0/images/mp_enterprisedb_website.png +++ b/product_docs/docs/migration_portal/3.5.0/images/mp_enterprisedb_website.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2dad43dabeb71007e0e4c32c92ce767e82e01db35707902b7cc1de23473f3383 -size 62834 +oid sha256:07c40007b2fd732a626193a92c30cb2db555c1c4fbaca4978e0735d0f2c77a17 +size 63459 diff --git a/product_docs/docs/migration_portal/3.5.0/images/mp_overview_home.png b/product_docs/docs/migration_portal/3.5.0/images/mp_overview_home.png index f6615bccbb5..f4138cea617 100644 --- a/product_docs/docs/migration_portal/3.5.0/images/mp_overview_home.png +++ b/product_docs/docs/migration_portal/3.5.0/images/mp_overview_home.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:61d26b64dbcae9b94fe4f54f949de6c6211a721c3f96ed5717244eec3c3e9f24 -size 142861 +oid sha256:1bcd23061d117ced216d8b2d84fa94bd84b88c4e8e844b064eae642a2a1a4cc6 +size 140945 diff --git a/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_errors.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_errors.png index 7f04c38701c..1a9d4c4230c 100644 --- a/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_errors.png +++ b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_errors.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:38bc841cbb2d3db6a304b925ab98e417dec77acbf4ac4ec4fa7307f8000dd49e -size 36108 +oid sha256:2c4e5f33a6656db25d02665f61b75648e294d1db49683f7487248bc443f9e2a6 +size 216545 diff --git a/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_incompatible.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_incompatible.png index a9e44cc7f01..09c5fe38db1 100644 --- a/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_incompatible.png +++ b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_incompatible.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e91edb917f96f521cf73d30bf8cf79165df75b8e63944a2cfb27155b59467c91 -size 217682 +oid sha256:90fb5884bb6d71da06cebccdff830b3ffbe4318d20837fbd50132eb19b3d0599 +size 215692 diff --git a/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_workaround.png b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_workaround.png index cd7dcee6f7e..c5d186146cb 100644 --- a/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_workaround.png +++ b/product_docs/docs/migration_portal/3.5.0/images/mp_schema_assessment_workaround.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:96c7ed908f54beee855055480f189958831e3b435a323c9ef15a3cc8c0bf567c -size 204555 +oid sha256:26cddaba757a3267c6cea02eaa8a54bb62a2da657e2ad2cdcc9897119c320f0a +size 202585 From 5835d0b25b9886af05efdaa6af8d383457adb176 Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Tue, 1 Feb 2022 14:57:34 +0530 Subject: [PATCH 16/18] Polished content --- .../04_mp_migrating_database/01_mp_schema_extraction.mdx | 6 +++++- .../04_mp_migrating_database/02_mp_schema_assessment.mdx | 4 +++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx index fb08841d0a2..bd3d728f11a 100644 --- a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx +++ b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx @@ -28,6 +28,10 @@ Note that Migration Portal only requires the metadata in the SQL dump file to as Perform either of the following procedures: +* [To extract one or more schemas in a database](#to-extract-one-or-more-schemas-in-a-database) + +* [To extract all schemas in a database](#to-extract-all-schemas-in-a-database) + ### To extract one or more schemas in a database 1. In SQL*Plus, create a directory object that points to a directory on your server file system. For example: @@ -142,7 +146,7 @@ The attributes and values in the above command specify the following options: ``` -## Extracted schemas and objects +## Supported schemas and objects See the following sections for supported and unsupported schemas and objects. diff --git a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx index 123c282ddf7..d2beb6ffae3 100644 --- a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx +++ b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/02_mp_schema_assessment.mdx @@ -51,6 +51,8 @@ You can assess an Oracle database schema for compatibility with EDB Postgres Adv 11. Refer to the Knowledge Base information in the right panel to locate the possible workarounds for the objects that aren't immediately compatible with EDB Postgres Advanced Server. You can also view the Knowledge Base information on the Portal wiki page. +![Incompatible objects are identified.](../images/mp_schema_assessment_errors.png) + 12. On the **Knowledge Base** tab, you can enter the error message for the incompatible objects with EDB Postgres Advanced Server and select **Search**. The object detail panel displays the workaround or the resolution for the failed object. You can manually make the changes on the **Assessment** tab for that object and select **Reassess**. @@ -58,7 +60,7 @@ You can assess an Oracle database schema for compatibility with EDB Postgres Adv !!! Note If any failed object passes while reassessing, the dependent objects for that object are also reassessed. -Similarly, you can make all incompatible objects compatible. + Similarly, you can make all incompatible objects compatible. ![Workaround or resolution for incompatible objects.](../images/mp_schema_assessment_workaround.png) From 9a71cc9cc3a3427e4d97f36298a7cfc1f35fd752 Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Wed, 2 Feb 2022 13:25:37 +0530 Subject: [PATCH 17/18] Addressed Dee Dee's comments --- .../3.5.0/01_mp_release_notes/index.mdx | 2 +- .../01_mp_schema_extraction.mdx | 20 +++++++++---------- .../03_mp_schema_migration.mdx | 14 ++++++------- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/product_docs/docs/migration_portal/3.5.0/01_mp_release_notes/index.mdx b/product_docs/docs/migration_portal/3.5.0/01_mp_release_notes/index.mdx index 33632504d82..d3975ac5283 100644 --- a/product_docs/docs/migration_portal/3.5.0/01_mp_release_notes/index.mdx +++ b/product_docs/docs/migration_portal/3.5.0/01_mp_release_notes/index.mdx @@ -14,5 +14,5 @@ New features, enhancements, bug fixes, and other changes in Migration Portal 3.5 | Enhancement | Migration Portal now uses the metadata information in a SQL dump file to assess the extracted schemas. You no longer have to download the DDL extractor script to extract DDLs for your schemas. | | Feature| Updated repair handler to remove OVERFLOW syntax from CREATE TABLE syntax to make it compatible with EDB Postgres Advanced Server compatible syntax. (ERH-2011: ORGANIZATION_INDEX_COMPRESS).| | Feature| Added a repair handler to remove the NAME clause and associated label name from SET TRANSACTION statements. (ERH-3002: SET_TRANSACTION).| -| Enhancement | Improved the User Interface for a better user experience. | +| Enhancement | Improved the user interface for a better user experience. | diff --git a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx index bd3d728f11a..a4c640380d4 100644 --- a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx +++ b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/01_mp_schema_extraction.mdx @@ -13,7 +13,7 @@ You can use the Oracle’s Data Pump utility to extract metadata from your Oracl !!! Note - Migration Portal might become unresponsive for very large SQL files, depending on your system’s and browser’s resource availability. Migration Portal supports SQL files upto 1 GB. If your SQL file size exceeds 1 GB, extract fewer schemas at a time to reduce the SQL file size. + Migration Portal might become unresponsive for very large SQL files, depending on your system’s and browser’s resource availability. Migration Portal supports SQL files up to 1 GB. If your SQL file size exceeds 1 GB, extract fewer schemas at a time to reduce the SQL file size. ## Extracting schemas to an SQL dump file @@ -22,7 +22,7 @@ Note that Migration Portal only requires the metadata in the SQL dump file to as #### Prerequisites -* If you plan on exporting schemas that are not your own, ensure that you are assigned the *DATAPUMP_IMP_FULL_DATABASE* role. Otherwise, you can only export your own schema. +* If you plan on exporting schemas that are not your own, ensure that you are assigned the `DATAPUMP_IMP_FULL_DATABASE` role. Otherwise, you can only export your own schema. * Ensure that you have sufficient tablespace quota to create objects in the tablespace. @@ -48,7 +48,7 @@ Perform either of the following procedures: `SQL> grant read,write on directory DMPDIR to ;` -3. Before running the `expdp` command, create a file with a `.par` extension (for example: parameters.par) on your server. Add attributes and values to the file as shown below: +3. Before running the `expdp` command, create a file with a `.par` extension (for example, parameters.par) on your server. Add attributes and values to the file, as follows: ``` $ cat parameters.par @@ -63,7 +63,7 @@ The attributes and values in the above command specify the following options: + `INCLUDE=` specifies which database object types to include in the extraction. Append a comma-separated list of the [Supported object types](#supported-object-types) to only extract database object types that are supported by Migration Portal. -4. From the command line, run the export command to generate a **db.dump** file. For example, to extract metadata information for ``, ``, ``, and so on, run the following command: +4. From the command line, run the export command to generate a **db.dump** file. For example, to extract metadata information for ``, ``, ``, and so on, run: ``` $ expdp @ DIRECTORY=DMPDIR SCHEMAS=,, DUMPFILE=db.dump parfile=parameters.par @@ -71,7 +71,7 @@ The attributes and values in the above command specify the following options: 5. To generate a SQL file from the dump file, run the import command. - For example, to generate **YourSchemas.SQL** file from the db.dump file, enter the following command: + For example, to generate **YourSchemas.SQL** file from the db.dump file, enter: ``` $ impdp @ DIRECTORY= TRANSFORM=OID:n SQLFILE=YourSchemas.sql DUMPFILE=db.dump @@ -80,7 +80,7 @@ The attributes and values in the above command specify the following options: ### To extract all schemas in a database !!! Note - Do not perform the following procedure from a user account that belongs to the excluded schemas list, see [Unsupported schemas](#unsupported-schemas). The impdp command will fail if the user account running the command is in the excluded list of schemas. + Do not perform the following procedure from a user account that belongs to the excluded schemas list, see [Unsupported schemas](#unsupported-schemas). The impdp command fails if the user account running the command is in the excluded list of schemas. 1. In SQL*Plus, create a directory object that points to a directory on your server file system. For example: @@ -97,7 +97,7 @@ The attributes and values in the above command specify the following options: `SQL> grant read,write on directory DMPDIR to ;` -3. Before running the expdp command, create a file with a `.par` extension (for example: parameters1.par) on your server. Add attributes and values to the file as shown below: +3. Before running the expdp command, create a file with a `.par` extension (for example, parameters1.par) on your server. Add attributes and values to the file, as follows: ``` $ cat parameters1.par @@ -121,7 +121,7 @@ The attributes and values in the above command specify the following options: $ expdp @ DIRECTORY=DMPDIR DUMPFILE=db.dump parfile=parameters1.par ``` -5. Before running the impdp command, create a parameter file with a `.par` extension (for example: parameters2.par) on your server. Add attributes and values to the file as shown below: +5. Before running the impdp command, create a parameter file with a `.par` extension (for example, parameters2.par) on your server. Add attributes and values to the file, as follows: ``` $ cat parameters2.par @@ -139,14 +139,14 @@ The attributes and values in the above command specify the following options: 6. To generate a SQL file from the dump file, run the import command. - For example, to generate **YourSchemas.SQL** file from the db.dump file, enter the following command: + For example, to generate **YourSchemas.SQL** file from the db.dump file, enter: ``` $ impdp @ DIRECTORY= TRANSFORM=OID:n SQLFILE=YourSchemas.sql DUMPFILE=db.dump ``` -## Supported schemas and objects +## Schemas and objects support See the following sections for supported and unsupported schemas and objects. diff --git a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/03_mp_schema_migration.mdx b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/03_mp_schema_migration.mdx index e3a48d56224..cf42fd9497f 100644 --- a/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/03_mp_schema_migration.mdx +++ b/product_docs/docs/migration_portal/3.5.0/04_mp_migrating_database/03_mp_schema_migration.mdx @@ -40,7 +40,7 @@ You can migrate schemas to an existing on-premises EDB Postgres Advanced Server 4. Select **Windows**. -5. To import the schemas, run the following command: +5. To import the schemas, run: - On CLI: @@ -64,7 +64,7 @@ The converted schemas migrate to the target server. You can migrate schemas to an existing on-premises EDB Postgres Advanced Server on Linux. -1. Select `Existing on-premises EDB Postgres Advanced Server`. +1. Select **Existing on-premises EDB Postgres Advanced Server**. 2. Select one or more schemas to migrate to EDB Postgres Advanced Server. @@ -119,7 +119,7 @@ Migrate schemas to a new on-premises EDB Postgres Advanced Server on Windows. 6. To download the assessed schemas, select **Download SQL file**. -7. You can import schemas by running the following command: +7. You can import schemas by running: - On CLI @@ -146,7 +146,7 @@ Migrate schemas to an on-premises EDB Postgres Advanced Server on Linux. 2. Select one or more schemas to migrate on EDB Postgres Advanced Server. -3. For the operating system, select the Linux. +3. For the operating system, select **Linux**. 4. You can select one of the following options to install the EDB Postgres Advanced Server: @@ -154,13 +154,13 @@ Migrate schemas to an on-premises EDB Postgres Advanced Server on Linux. - Repository - More options -5. For information on the installation procedure, select `EDB Postgres Advanced Server Installation Guide` for Linux. +5. For information on the installation procedure, select **EDB Postgres Advanced Server Installation Guide** for Linux. 6. To download the assessed schemas, select **Download SQL file**. -7. To import the schemas, run the following command: +7. To import the schemas, run: ```text sudo su - enterprisedb @@ -190,7 +190,7 @@ Migrate schemas on EDB Postgres Advanced Server to the cloud. 4. To launch a new cluster, select **Go to BigAnimal**. - Or, if you have an existing cluster running, select `Next`. + Or, if you have an existing cluster running, select **Next**. !!! Note See the [Big Animal](https://www.enterprisedb.com/edb-cloud) page for more information. From 7689aafd53ffb7486152d2cd7619896e4a4d6ad4 Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Wed, 2 Feb 2022 18:09:19 +0530 Subject: [PATCH 18/18] Removed supported OS section --- .../migration_portal/3.5.0/02_supported_platforms.mdx | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/product_docs/docs/migration_portal/3.5.0/02_supported_platforms.mdx b/product_docs/docs/migration_portal/3.5.0/02_supported_platforms.mdx index 9001da32e06..7b076565e8a 100644 --- a/product_docs/docs/migration_portal/3.5.0/02_supported_platforms.mdx +++ b/product_docs/docs/migration_portal/3.5.0/02_supported_platforms.mdx @@ -6,7 +6,7 @@ title: "Supported platforms" -The Migration Portal supports assessment and migration from Oracle 11g, 12c, 18c, and 19c to EDB Postgres Advanced Server 10, 11, 12, 13, or 14. Migration Portal is supported on the following browsers and operating systems. +The Migration Portal supports assessment and migration from Oracle 11g, 12c, 18c, and 19c to EDB Postgres Advanced Server 10, 11, 12, 13, or 14. Migration Portal is supported on the following browsers. ## Supported browsers @@ -18,11 +18,3 @@ For the best user experience, we recommend using the Google Chrome browser. Migr | Google Chrome | 68 and above | | Microsoft Edge | 42 and above | | Mozilla Firefox | 60 and above | - -## Supported operating systems - -| **Operating systems** | **Supported version** | -| --------------------- | --------------------- | -| Macintosh | OS X Sierra | -| Windows | 10 | -| Linux | CentOS 7 |