diff --git a/product_docs/docs/biganimal/release/index.mdx b/product_docs/docs/biganimal/release/index.mdx index da1cf901549..1326914cb12 100644 --- a/product_docs/docs/biganimal/release/index.mdx +++ b/product_docs/docs/biganimal/release/index.mdx @@ -11,6 +11,7 @@ navigation: - using_cluster - administering_cluster - pricing_and_billing + - migration - reference --- diff --git a/product_docs/docs/biganimal/release/migration/cold_migration.mdx b/product_docs/docs/biganimal/release/migration/cold_migration.mdx new file mode 100644 index 00000000000..72364d9c89a --- /dev/null +++ b/product_docs/docs/biganimal/release/migration/cold_migration.mdx @@ -0,0 +1,177 @@ +--- +title: Importing an existing Postgres database +--- + +The simplest way to import a database into EDB Cloud is using logical backups taken with `pg_dump` and loaded using `pg_restore`. This approach provides a way to export and import a database across different versions of Postgres, including exporting from PostgreSQL and EDB Postgres Advanced Server versions prior to 10. + +The high-level steps are: + +1. [Export existing roles](#exporting-existing-roles) +1. [Import existing roles](#importing-the-roles) +1. For each database, you are migrating: + 1. [logical export using `pg_dump`](#exporting-a-database) + 1. [logical import with `pg_restore`](#importing-a-database) + +In case your source PostgreSQL instance hosts multiple databases, you have the option to segment them in multiple EDB Cloud clusters, for easier management, better performance, increased predictability and finer control of resources. For example, if your host has ten databases, you can select to import one database (and related users) on a different EDB Cloud cluster, one at a time. + +## Downtime considerations + +This approach requires suspension of write operations to the database application for the duration of the export/import process. The write operations can then be resumed on the new system. This is because `pg_dump` takes an online snapshot of the source database. As a result, the changes after the backup starts are not included in the output. + +The required downtime depends on many factors, including: + - Size of the database + - Speed of the network between the two systems + - Your team's familiarity with the migration procedure. + +To minimize the downtime, you can test the process as many times as needed before the actual migration, as the export with `pg_dump` can be performed online and the process is repeatable and measurable. + +## Before you begin + +Ensure you: + - Understand the [terminology conventions](#terminology-conventions) used in this topic + - Have the [required Postgres client binaries and libraries](/#postgres-client-libraries) + - Can [access the source and target databases](#access-to-the-source-and-target-database) + +### Terminology conventions + +| Term | Alias | Description | +| ---- | ----- | ---------- | +| source database | `pg-source` | Postgres instance from which you want to import your data. | +| target database | `pg-target` | Postgres cluster in EDB Cloud where you want to import your data. | +| migration host | `pg-migration` | Temporary Linux machine in your trusted network from which to execute the export of the database and the subsequent import into EDB Cloud. The migration host needs access to both the source and target databases. Or, if your source and target databases are on the same version of Postgres, the source host can serve as your migration host. | + + +### Postgres client libraries + +The following client binaries must be on the migration host: + +- `pg_dumpall` +- `pg_dump` +- `pg_restore` +- `psql` + +They must be the same version as the Postgres version of the target database. For example, if you want to import a PostgreSQL 9.6 database from your private network into a PostgreSQL 13 database in EDB Cloud, use the client libraries and binaries from version 13. + +### Access to the source and target database + +Access requirements: + +- PostgreSQL superuser access to the source database. This could be the `postgres` user or another user with `SUPERUSER` privileges. +- Access to the target database in EDB Cloud as the `edb_admin` user. + + +To verify you have the proper access: +1. Connect to the source database using `psql`. For example: + ``` + psql -d "host=pg-source user=postgres dbname=postgres" + ``` + Replace `pg-source` with the actual hostname or IP address of the source database and the `user` and `dbname` values as appropriate. If the connection does not work, contact your system and database administrators to make sure that you can access the source database (this might require changes to your `pg_hba.conf` and network settings). If `pg_hba.conf` is changed, the configuration should be reloaded with either `SELECT pg_reload_conf();` via a psql connection or `pg_ctl reload` in a shell connection to the database host. + +1. Connect to the target database using the `edb_admin` user. For example: + ``` + psql -d "host=pg-target user=edb_admin dbname=edb_admin" + ``` + Replace `pg-source` with the actual hostname of your EDB Cloud cluster. + +## Exporting existing roles +Export the existing roles from your source Postgres instance by running the following command on the migration host: +``` +pg_dumpall -r -d "host=pg-source user=postgres dbname=postgres" > roles.sql +``` + +The generated SQL file should look like this: + +``` +-- +-- PostgreSQL database cluster dump +-- + +SET default_transaction_read_only = off; + +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; + +-- +-- Roles +-- + +--- … Your roles are here ... + +-- +-- PostgreSQL database cluster dump complete +-- +``` + + + +## Importing the roles +1. Your EDB Cloud cluster already contains the `edb_admin` user, as well as the following system required roles: + - `postgres` (the superuser, needed by the EDB Cloud to manage the cluster) + - `streaming_replica` (required to manage streaming replication) + + As a result, you need to modify the `roles.sql` file to: + 1. Remove the lines involving the `postgres` user. For example, remove lines like these: + ``` + CREATE ROLE postgres; + ALTER ROLE postgres WITH SUPERUSER ….; + ``` + 2. Remove any role with superuser or replication privileges. For example, remove lines like these: + ``` + CREATE ROLE admin; + ALTER ROLE admin WITH SUPERUSER ….; + ``` + 3. For every role that is created, grant the new role to the `edb_admin` user immediately after the creation of the user. For example: + ``` + CREATE ROLE my_role; + GRANT my_role TO edb_admin; + ``` + 4. Remove the `NOSUPERUSER`, `NOCREATEROLE`, `NOCREATEDB`, `NOREPLICATION`, `NOBYPASSRLS` permission attributes on the other users. + + The role section in the modified file should look similar to: + ``` + CREATE ROLE my_role; + GRANT my_role TO edb_admin; + ALTER ROLE my_role WITH INHERIT LOGIN PASSWORD 'SCRAM-SHA-256$4096:my-Scrambled-Password'; + ``` +1. From the migration host, execute: + + ``` + psql -1 -f roles.sql -d "postgres://edb_admin@pg-target:5432/edb_admin?sslmode=verify-full" + ``` + (Replace `pg-target` with the Fully Qualified Domain Name (FQDN) of your EDB Cloud cluster). + + + This command tries to create the roles in a single transaction. In case of errors, the transaction is rolled back, leaving the database cluster in the same state as before the import attempt. This behavior is enforced using the `-1` option of `psql`. + +## Exporting a database +From the migration host, use the `pg_dump` command to export the source database into the target database in EDB Cloud. For example: + +``` +pg_dump -Fc -d "host=pg-source user=postgres dbname=app" -f app.dump +``` + +!!! Note + You can use the `--verbose` option to monitor the progress of the operation. + +The command generates a custom .dump archive (`app.dump` in this example), which contains the compressed dump of the source database. The duration of the command execution varies depending on several variables including size of the database, network speed, disk speed, and CPU of both the source instance and the migration host. You can inspect the table of contents of the dump with `pg_restore -l .dump`. + +As with any other custom format dump produced with `pg_dump`, you can take advantage of the features that `pg_restore` provides you with, including: +- Selecting a subset of the import tasks by editing the table of contents and passing it to the `-L` option. +- Running the command in parallel using the `-j` option in conjunction with the directory format. + +For further information, see the [`pg_restore` documentation](https://www.postgresql.org/docs/current/app-pgrestore.html). + +## Importing a database +Use the `pg_restore` command and the .dump file you creating when exporting the source database to import the database into EDB Cloud. For example: + +``` +pg_restore -C -d "postgres://edb_admin@pg-target:5432/edb_admin?sslmode=require" app.dump +``` +This process might take some time depending on the size of the database and the speed of the network. + +In case of error, repeat the restore operation once you have deleted the database using the following command: + +``` +psql -d "postgres://edb_admin@pg-target:5432/edb_admin?sslmode=require" \ + -c ‘DROP DATABASE app’ +``` diff --git a/product_docs/docs/biganimal/release/migration/index.mdx b/product_docs/docs/biganimal/release/migration/index.mdx new file mode 100644 index 00000000000..e3bf127a882 --- /dev/null +++ b/product_docs/docs/biganimal/release/migration/index.mdx @@ -0,0 +1,24 @@ +--- +title: Migrating databases to EDB Cloud +--- + +EDB provides migration tools to bring data from Oracle, PostgresSQL, and EDB Postgres Advanced Server databases into EDB Cloud. These tools include Migration Portal and Migration Toolkit for Oracle migrations. + + + +## Migrating from Oracle + +The [Migration Portal documentation](../../../migration_portal/latest) provides the details for executing the migration steps using Migration Portal: + + 1. [Schema extraction](../.../../migration_portal/latest/04_mp_migrating_database/01_mp_schema_extraction/) + 1. [Schema assessment](../../../migration_portal/latest/04_mp_migrating_database/02_mp_schema_assessment/) + 1. [Schema migration](../../../migration_portal/latest/04_mp_migrating_database/03_mp_schema_migration/) + 1. [Data migration](../../../migration_portal/latest/04_mp_migrating_database/04_mp_data_migration/) + +The Migration Portal documentation describes how to use Migration Toolkit for the data migration step. This is a good option for smaller databases. + +## Migrating from Postgres +There are several options available for migrating EDB Postgres Advanced Server and PostgreSQL databases to EDB Cloud. One option is to use the Migration Toolkit. Another simple option for many use cases is to import an existing PostgreSQL or EDB Postgres Advanced Server database EDB Cloud, see [Importing an existing Postgres database](cold_migration). + +EDB has other migration tools such as [Replication Server](../../../eprs/latest/) for ongoing migrations and [LiveCompare](../../../livecompare/latest/) to do data comparisons. + diff --git a/product_docs/docs/biganimal/release/overview/images/ha-not-enabled.png b/product_docs/docs/biganimal/release/overview/images/ha-not-enabled.png index 30105bae7fe..e631af0ca42 100644 --- a/product_docs/docs/biganimal/release/overview/images/ha-not-enabled.png +++ b/product_docs/docs/biganimal/release/overview/images/ha-not-enabled.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d3702c56b05f724be26b0b78211e071eb550564c9078d376ac10aa4673bf30d7 -size 152349 +oid sha256:9d170dc1ee7a35f0488c8d5d5f692dc338090a8ce8f5a9be638b856d76d31ed5 +size 120864 diff --git a/product_docs/docs/biganimal/release/overview/images/high-availability.png b/product_docs/docs/biganimal/release/overview/images/high-availability.png index 0a0416b961a..54217e9c0a4 100644 --- a/product_docs/docs/biganimal/release/overview/images/high-availability.png +++ b/product_docs/docs/biganimal/release/overview/images/high-availability.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:49d7749529210a12e2f67ffbd9ecb371db2f82e11712e8ae97a5775bd0106c2e -size 186417 +oid sha256:a1bb12fedcac41d1e8f5985494ea31f5ee4b7a0bd966ab1cd3eca38e877ae828 +size 148648 diff --git a/product_docs/docs/biganimal/release/using_cluster/05_monitoring_and_logging/06_metrics.mdx b/product_docs/docs/biganimal/release/using_cluster/05_monitoring_and_logging/06_metrics.mdx index 5e35840927c..e4f3b0afb46 100644 --- a/product_docs/docs/biganimal/release/using_cluster/05_monitoring_and_logging/06_metrics.mdx +++ b/product_docs/docs/biganimal/release/using_cluster/05_monitoring_and_logging/06_metrics.mdx @@ -6,7 +6,7 @@ A variety of metrics are collected by the BigAnimal instance and made available to the customer's Azure subscription for dashboarding, alerting, querying and other analytics. -See [Monitoring and logging](#monitoring-and-logging) for an introduction to +See [Monitoring and logging](../05_monitoring_and_logging) for an introduction to the available monitoring capabilities. This section explains how to find and interpret the available metrics and logs. diff --git a/product_docs/docs/migration_portal/3.3.0/01_whats_new.mdx b/product_docs/docs/migration_portal/3.3.0/01_whats_new.mdx deleted file mode 100644 index 49d3fa048a8..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/01_whats_new.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: "What's New" - -redirects: - - /migration_portal/3.1.0/01_whats_new/ - - /migration_portal/3.2.0/01_whats_new/ - -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/whats_new.html" ---- - - - -The following is added to the Migration Portal for the release 3.3.0: - -- Improved Assessment progress bar along with DDL file upload progress information - -- Enhanced Knowledge Base and Repair Handlers documentation - -- Optimized user experience in project loading, workspace, and report generation. - -- Detects and reports incompatibility for Oracle’s unsupported catalog tables (ex: v$parameter, v$instance, etc.) inside PL/SQL block. - -- Added informative text in the exported DDL file to better distinguish the start of object DDLs - -- Added additional information, count of schemas, in the extracted DDL file. - -- Migration Portal now handles objects, having the same name, more efficiently. This helps improve the overall compatibility with EDB Postgres Advanced Server. - -- Improved authorization checks for user data access - -- New Knowledge Base article which guides on creating user-defined aggregate functions in EDB Postgres Advanced Server. - -- Enhanced the following Repair Handlers: - - - ERH 2001 and ERH 2002 - Enhanced these Repair Handlers to detect 'BY DEFAULT ON NULL' syntax and convert it to EDB Postgres Advanced Server compatible 'BY DEFAULT' syntax. - - - ERH-2065 NO_INMEMORY_CLAUSE - Enhanced the Repair Handler to handle various combinations of the 'INMEMORY' clause in the TABLE definition - - - ERH-2013 EDITIONABLE - The Repair Handler is enhanced to repair the EDITIONABLE keyword in appropriate contexts only - -For information about earlier changes, refer to the What's new page on the Portal Wiki. \ No newline at end of file diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_overview_home.png b/product_docs/docs/migration_portal/3.3.0/images/mp_overview_home.png deleted file mode 100755 index 2b43403db94..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_overview_home.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:92b4b8a62eefa5479c5147dcfcab6eedd58809df221cd575e80ee00f5369150a -size 390703 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_overview_project_kb.png b/product_docs/docs/migration_portal/3.3.0/images/mp_overview_project_kb.png deleted file mode 100755 index ba852f29513..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_overview_project_kb.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:307fd1d981edcb52060a4ecf27fd46b96cc315495adf71a081ed268a98a55a32 -size 218917 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_overview_project_numbered.png b/product_docs/docs/migration_portal/3.3.0/images/mp_overview_project_numbered.png deleted file mode 100755 index 9cb624aa993..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_overview_project_numbered.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6c9cad2c3da6cf18e2647a1b765f2e222fe2cb04ebb51b8495c0cc51a4cac7e6 -size 152890 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_overview_wiki.png b/product_docs/docs/migration_portal/3.3.0/images/mp_overview_wiki.png deleted file mode 100644 index 71649b14fe1..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_overview_wiki.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:477e6133ebe43c4e2fb59d90b63a51f21770692ce047534d24c63d4aadb4c85d -size 151371 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_analysis_result.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_analysis_result.png deleted file mode 100755 index bbde0fe0b5b..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_analysis_result.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:447ef7497cefda80a887ac707f67f68c13d084a866d63264e6927a4f872580ac -size 429064 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_errors.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_errors.png deleted file mode 100755 index 360c867e842..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_errors.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:602f25fc09afa41ccad65655958d75b9bdb786cda64b4a9766053f1e0e37eab2 -size 151290 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_incompatible.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_incompatible.png deleted file mode 100755 index b6bf80a4c55..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_incompatible.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1a6ff78cad56535a28f5d05b76bf0a12a53d24714a1a9e94d8e501878baf6094 -size 168738 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_schema_report.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_schema_report.png deleted file mode 100755 index 260231c6366..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_schema_report.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:424213b21982bea5adab0967121a343237fa56bca6541b2814ae65c5310fe341 -size 68996 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_schema_report_pdf.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_schema_report_pdf.png deleted file mode 100755 index 2743b5b0481..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_schema_report_pdf.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6a58f03823897d4d01129d906748a27a9eb889bc1fdd9818c682633da266a2be -size 193361 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_select_schema.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_select_schema.png deleted file mode 100755 index 3a26180a679..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_select_schema.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d471716cfa8593d28ffcdb043beaaf7254beaa0c94665742a99ff4f5f1a0969e -size 29120 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_verifying_ddl.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_verifying_ddl.png deleted file mode 100755 index 360c867e842..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_verifying_ddl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:602f25fc09afa41ccad65655958d75b9bdb786cda64b4a9766053f1e0e37eab2 -size 151290 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_workaround.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_workaround.png deleted file mode 100755 index ff01ffe80c1..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_workaround.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3b5207f8087a36934f6cfad187fd98969e064327b694f2e4ca64355714c54118 -size 236798 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_exist_epas_download.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_exist_epas_download.png deleted file mode 100755 index f46f5bad0c9..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_exist_epas_download.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f92a2e27fb3f4f35451239b8497a9ea8f0ed168b8aaffddccb81f522659e53ea -size 174547 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_exist_epas_mig_success.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_exist_epas_mig_success.png deleted file mode 100755 index 13dbf3d8940..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_exist_epas_mig_success.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f47b41e78cdd37c2359cce2d9a8f44b242c9c23c8558dd1e87c60b9d85d32dbb -size 162802 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_exist_epas_schemas_selection.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_exist_epas_schemas_selection.png deleted file mode 100755 index 319ced39b13..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_exist_epas_schemas_selection.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e7298b1f5e4f8fb6f0e79c2db3ab9d7986c4a12f887226a14b141603b0c5d211 -size 145616 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_exist_epas_schemas_selection_linux.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_exist_epas_schemas_selection_linux.png deleted file mode 100755 index 319ced39b13..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_exist_epas_schemas_selection_linux.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e7298b1f5e4f8fb6f0e79c2db3ab9d7986c4a12f887226a14b141603b0c5d211 -size 145616 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_exist_epas_windows.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_exist_epas_windows.png deleted file mode 100755 index d21838de502..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_exist_epas_windows.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4ea6e5ef7e230671bd1a3d6de3623f055cd35481d447194c492e701ab838a5f1 -size 175889 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_exist_linux.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_exist_linux.png deleted file mode 100755 index f3a4a769bd0..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_exist_linux.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a71968319df484f684789d7b76146607459900324dcd9cf6ac1211a89a943ed7 -size 203330 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_download.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_download.png deleted file mode 100755 index 600e452851e..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_download.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0d93baa2b4ba70e4fc074fd646fa65f7197ec4e2fa6c2c816b33eb23bfbf0ff1 -size 184597 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_linux.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_linux.png deleted file mode 100755 index 852f6d53e5a..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_linux.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:677d100f97be9860065db209e07902be872cea386062f80e2021a0a76753c664 -size 164185 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_linux_guide.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_linux_guide.png deleted file mode 100755 index 9e339fc7e73..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_linux_guide.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fe8dcec46f7514879337a43c0338b8bbb660de7383ec2cf6111770f23436a719 -size 170231 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_linux_import.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_linux_import.png deleted file mode 100755 index 32b9a85e038..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_linux_import.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:36a2323d8701aa62c60280e52d1be5840dbeef9dbc91f22975f493fb1028bdd8 -size 230854 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_linux_repo.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_linux_repo.png deleted file mode 100755 index de4a4ca7ad7..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_linux_repo.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3227bb949349b0badd126cb751968809c2a3e05fffef82b76ac1620530e976a9 -size 163053 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_mig_success.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_mig_success.png deleted file mode 100755 index a2657d0a4f5..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_mig_success.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9e1a47db1cc6e3c284cc5e935eb3799fd6d5ab5b4be5a7eb57b6a8a316fc3808 -size 172674 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_schemas_selection.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_schemas_selection.png deleted file mode 100755 index a08c3e0c2cf..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_schemas_selection.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:03d52f347581fc9722185fee58a9c110f588476448b377be6abcc0dbacb2d91d -size 158238 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_windows.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_windows.png deleted file mode 100755 index 18011128840..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_windows.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3ed26255587c0d2190f6e00c49e4e90f55df27f5f57a4fb8d716b81079d16f48 -size 165394 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_windows_guide.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_windows_guide.png deleted file mode 100755 index 0981ec38ecb..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_windows_guide.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bcbbb0207ab63d280f522374c4aec6318de522e6a9acdc2dc9943bce66e13325 -size 174277 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_windows_installer.png b/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_windows_installer.png deleted file mode 100755 index 544da5d939b..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_windows_installer.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:535c26e7c31f4f542b514ef9fd10e69e882dd2dc4d719239b164bb90ab16c1a4 -size 162452 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_whats_new_common_failures.png b/product_docs/docs/migration_portal/3.3.0/images/mp_whats_new_common_failures.png deleted file mode 100755 index 9da3bd462c0..00000000000 --- a/product_docs/docs/migration_portal/3.3.0/images/mp_whats_new_common_failures.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9cce753a745ced3797143c67c5261f4a0d544d116765ad667fabad70797579d7 -size 159835 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.0/01_mp_release_notes/index.mdx new file mode 100644 index 00000000000..91d9bdec99c --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/01_mp_release_notes/index.mdx @@ -0,0 +1,30 @@ +--- +title: "Release Notes" +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. + +New features, enhancements, bug fixes, and other changes in Migration Portal 3.4.0 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.3.0/02_supported_platforms.mdx b/product_docs/docs/migration_portal/3.4.0/02_supported_platforms.mdx similarity index 82% rename from product_docs/docs/migration_portal/3.3.0/02_supported_platforms.mdx rename to product_docs/docs/migration_portal/3.4.0/02_supported_platforms.mdx index 2edabbae9d8..ef9fdf31d35 100644 --- a/product_docs/docs/migration_portal/3.3.0/02_supported_platforms.mdx +++ b/product_docs/docs/migration_portal/3.4.0/02_supported_platforms.mdx @@ -1,10 +1,6 @@ --- title: "Supported Platforms" -redirects: - - /migration_portal/3.0.1/02_supported_platforms/ - - /migration_portal/3.1.0/02_supported_platforms/ - - /migration_portal/3.2.0/02_supported_platforms/ --- @@ -18,7 +14,7 @@ For the best user experience, we recommend using the Google Chrome browser. Migr | **Browser** | **Supported Version** | | ---------------------------- | --------------------- | -| Apple Safari on Macintosh OS | 11 and above | +| Apple Safari on Macintosh OS | 14 and above | | Google Chrome | 68 and above | | Microsoft Edge | 42 and above | | Mozilla Firefox | 60 and above | diff --git a/product_docs/docs/migration_portal/3.3.0/03_mp_using_portal/01_mp_overview_home.mdx b/product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/01_mp_overview_home.mdx similarity index 91% rename from product_docs/docs/migration_portal/3.3.0/03_mp_using_portal/01_mp_overview_home.mdx rename to product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/01_mp_overview_home.mdx index 7c02719410c..e3ad2fdb833 100644 --- a/product_docs/docs/migration_portal/3.3.0/03_mp_using_portal/01_mp_overview_home.mdx +++ b/product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/01_mp_overview_home.mdx @@ -1,10 +1,6 @@ --- title: "Overview of the Migration Portal Home Page" -redirects: - - /migration_portal/3.0.1/03_mp_using_portal/01_mp_overview_home/ - - /migration_portal/3.1.0/03_mp_using_portal/01_mp_overview_home/ - - /migration_portal/3.2.0/03_mp_using_portal/01_mp_overview_home/ legacyRedirectsGenerated: # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. diff --git a/product_docs/docs/migration_portal/3.3.0/03_mp_using_portal/02_mp_overview_project.mdx b/product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/02_mp_overview_project.mdx similarity index 90% rename from product_docs/docs/migration_portal/3.3.0/03_mp_using_portal/02_mp_overview_project.mdx rename to product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/02_mp_overview_project.mdx index f2ad96a34b0..fcb28f07423 100644 --- a/product_docs/docs/migration_portal/3.3.0/03_mp_using_portal/02_mp_overview_project.mdx +++ b/product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/02_mp_overview_project.mdx @@ -1,10 +1,6 @@ --- title: "Overview of the Migration Portal Projects Page" -redirects: - - /migration_portal/3.0.1/03_mp_using_portal/02_mp_overview_project/ - - /migration_portal/3.1.0/03_mp_using_portal/02_mp_overview_project/ - - /migration_portal/3.2.0/03_mp_using_portal/02_mp_overview_project/ legacyRedirectsGenerated: # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. diff --git a/product_docs/docs/migration_portal/3.3.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 similarity index 76% rename from product_docs/docs/migration_portal/3.3.0/03_mp_using_portal/03_mp_overview_wiki.mdx rename to product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/03_mp_overview_wiki.mdx index 9bb9547896c..cc0480a5aa5 100644 --- a/product_docs/docs/migration_portal/3.3.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 @@ -1,10 +1,6 @@ --- title: "Overview of the Migration Portal Wiki Page" -redirects: - - /migration_portal/3.0.1/03_mp_using_portal/03_mp_overview_wiki/ - - /migration_portal/3.1.0/03_mp_using_portal/03_mp_overview_wiki/ - - /migration_portal/3.2.0/03_mp_using_portal/03_mp_overview_wiki/ legacyRedirectsGenerated: # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. diff --git a/product_docs/docs/migration_portal/3.3.0/03_mp_using_portal/index.mdx b/product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/index.mdx similarity index 71% rename from product_docs/docs/migration_portal/3.3.0/03_mp_using_portal/index.mdx rename to product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/index.mdx index 61a9aa8c170..4cba1d684b6 100644 --- a/product_docs/docs/migration_portal/3.3.0/03_mp_using_portal/index.mdx +++ b/product_docs/docs/migration_portal/3.4.0/03_mp_using_portal/index.mdx @@ -1,10 +1,6 @@ --- title: "Using Migration Portal" -redirects: - - /migration_portal/3.0.1/03_mp_using_portal/ - - /migration_portal/3.1.0/03_mp_using_portal/ - - /migration_portal/3.2.0/03_mp_using_portal/ legacyRedirectsGenerated: # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. @@ -24,15 +20,16 @@ Migration Portal allows you to easily migrate your database schema from Oracle t To access the Migration Portal: -1. Open a browser and navigate to . +1. Open a browser and navigate to . -2. On the EnterpriseDB home page, click `Products` > `Migration Portal`. +2. On the EnterpriseDB home page, click `PostgreSQL Software` > `Migration` > . -![Accessing the Migration Portal.](../images/mp_using_portal_accessing.png) +![Migration Portal on the EnterpriseDB home page](../images/mp_enterprisedb_website.png) -*Figure 2-2: The assessment and migration process* +*Figure 2-2: Migration Portal on the EnterpriseDB home page* + +3. On the Migration Portal page click `Find out more` > `Open Migration Portal`. -3. Click `Open Migration Portal`. 4. Log in using your credentials. diff --git a/product_docs/docs/migration_portal/3.3.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 similarity index 96% rename from product_docs/docs/migration_portal/3.3.0/04_mp_migrating_database/01_mp_schema_extraction.mdx rename to product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/01_mp_schema_extraction.mdx index b56579c07e1..54f92498a9f 100644 --- a/product_docs/docs/migration_portal/3.3.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 @@ -1,10 +1,6 @@ --- title: "Performing a Schema Extraction" -redirects: - - /migration_portal/3.0.1/04_mp_migrating_database/01_mp_schema_extraction/ - - /migration_portal/3.1.0/04_mp_migrating_database/01_mp_schema_extraction/ - - /migration_portal/3.2.0/04_mp_migrating_database/01_mp_schema_extraction/ legacyRedirectsGenerated: # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. diff --git a/product_docs/docs/migration_portal/3.3.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 similarity index 94% rename from product_docs/docs/migration_portal/3.3.0/04_mp_migrating_database/02_mp_schema_assessment.mdx rename to product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx index 5b7fa8bf18e..b65143190e7 100644 --- a/product_docs/docs/migration_portal/3.3.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 @@ -1,10 +1,6 @@ --- title: "Performing a Schema Assessment" -redirects: - - /migration_portal/3.0.1/04_mp_migrating_database/02_mp_schema_assessment/ - - /migration_portal/3.1.0/04_mp_migrating_database/02_mp_schema_assessment/ - - /migration_portal/3.2.0/04_mp_migrating_database/02_mp_schema_assessment/ legacyRedirectsGenerated: # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. @@ -21,7 +17,7 @@ To assess an Oracle database schema for compatibility with EDB Postgres Advanced 3. Click `New` to create a new project. -![The Migration Portal New project dialog.](../images/mp_schema_assessment_new_project_4_edited.png) +![The Migration Portal New project dialog.](../images/mp_schema_assessment_new_project_edited.png) *Figure 3-5: The Migration Portal New project dialog box* diff --git a/product_docs/docs/migration_portal/3.3.0/04_mp_migrating_database/03_mp_schema_migration.mdx b/product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/03_mp_schema_migration.mdx similarity index 90% rename from product_docs/docs/migration_portal/3.3.0/04_mp_migrating_database/03_mp_schema_migration.mdx rename to product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/03_mp_schema_migration.mdx index 444ad75a675..559414246ea 100644 --- a/product_docs/docs/migration_portal/3.3.0/04_mp_migrating_database/03_mp_schema_migration.mdx +++ b/product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/03_mp_schema_migration.mdx @@ -1,10 +1,6 @@ --- title: "Schema Migration" -redirects: - - /migration_portal/3.0.1/04_mp_migrating_database/03_mp_schema_migration/ - - /migration_portal/3.1.0/04_mp_migrating_database/03_mp_schema_migration/ - - /migration_portal/3.2.0/04_mp_migrating_database/03_mp_schema_migration/ legacyRedirectsGenerated: # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. @@ -198,7 +194,7 @@ To migrate schemas to a new on-premises EDB Postgres Advanced Server on Windows, edb-psql -f .sql ``` -![Importing schemas into EDB Postgres Advanced Server](../images/mp_schema_mig_new_epas_windows_import.png) +![Importing schemas into EDB Postgres Advanced Server](../images/mp_schema_mig_new_epas_windows.png) *Figure 3-32: Importing schemas into EDB Postgres Advanced Server* @@ -207,7 +203,7 @@ To migrate schemas to a new on-premises EDB Postgres Advanced Server on Windows, The schemas are migrated to the target server. -
+![Importing schemas into EDB Postgres Advanced Server](../images/mp_schema_mig_new_epas_import.png) *Figure 3-33: Importing schemas into EDB Postgres Advanced Server* @@ -294,38 +290,41 @@ To migrate schemas on EDB Postgres Advanced Server to Cloud, complete the follow *Selecting schemas for migration* -4. Select the cloud platform. For example, `IBM Cloud`: +4. Select the cloud platform. For example, `BigAnimal`: -![Selecting cloud option for migration](../images/mp_schema_mig_cloud_option.png) +![Selecting cloud option for migration](../images/migrate_cloud_select_platform_updated.png) *Figure 3-43: Selecting cloud option for migration* -5. To launch a new cluster, click `Go to Cloud`: +5. To launch a new cluster, click `Go to BigAnimal`: -![Launching a cloud cluster](../images/mp_schema_mig_cloud_cluster.png) +![Launching a cloud cluster](../images/mp_migrate_cloud_launch_cluster_updated.png) *Figure 3-44: Launching a cloud cluster* Or, if you have an existing cluster running, click `Next`. +!!! Note + Click [here](https://www.enterprisedb.com/edb-cloud) for information on BigAnimal. + 6. Enter the required connection details on the `Connect` page: -![Connecting to the cloud cluster](../images/mp_schema_mig_cloud_cluster_connection_page.png) +![Connecting to the cloud cluster](../images/mp_migrate_cloud_connection_updated.png) *Figure 3-45: Connecting to the cloud cluster* +7. Click `Test Connection` to verify the connection details. + !!!Note You can click `Edit Connection` to make changes to the connection details and retest the connection details. -7. Click `Test Connection` to verify the connection details: - -![Verify the connection details](../images/mp_schema_mig_cloud_cluster_connection_test.png) +![Verify the connection details](../images/mp_migrate_cloud_connection_complete_updatated.png) *Figure 3-46: Verify the connection details* 8. Once the connection is successful, click `Next`: -![A successful migration](../images/mp_schema_mig_cloud_epas_mig_success.png) +![A successful migration](../images/mp_migrate_cloud_success_updated.png) *Figure 3-47: A successful migration* diff --git a/product_docs/docs/migration_portal/3.3.0/04_mp_migrating_database/04_mp_data_migration.mdx b/product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/04_mp_data_migration.mdx similarity index 84% rename from product_docs/docs/migration_portal/3.3.0/04_mp_migrating_database/04_mp_data_migration.mdx rename to product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/04_mp_data_migration.mdx index 6178efe1ed7..f2426ee35d6 100644 --- a/product_docs/docs/migration_portal/3.3.0/04_mp_migrating_database/04_mp_data_migration.mdx +++ b/product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/04_mp_data_migration.mdx @@ -1,10 +1,6 @@ --- title: "Data Migration" -redirects: - - /migration_portal/3.0.1/04_mp_migrating_database/04_mp_data_migration/ - - /migration_portal/3.1.0/04_mp_migrating_database/04_mp_data_migration/ - - /migration_portal/3.2.0/04_mp_migrating_database/04_mp_data_migration/ legacyRedirectsGenerated: # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. @@ -28,7 +24,8 @@ TARGET_DB_USER = enterprisedb TARGET_DB-PASSWORD = password ``` -For more information, see [Building the toolkit.properties File](/migration_toolkit/53.0.1/06_building_toolkit.properties_file/). +For more information, see [Building the toolkit.properties File](../../../migration_toolkit/latest/06_building_toolkit.properties_file). + 3. Invoke Migration Toolkit in `–dataOnly` mode. Include the `–truncLoad` keyword to resolve foreign key dependencies across tables. diff --git a/product_docs/docs/migration_portal/3.3.0/04_mp_migrating_database/index.mdx b/product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/index.mdx similarity index 84% rename from product_docs/docs/migration_portal/3.3.0/04_mp_migrating_database/index.mdx rename to product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/index.mdx index 4c936d9136c..1f3e536322b 100644 --- a/product_docs/docs/migration_portal/3.3.0/04_mp_migrating_database/index.mdx +++ b/product_docs/docs/migration_portal/3.4.0/04_mp_migrating_database/index.mdx @@ -1,10 +1,6 @@ --- title: "Migrating a Database" -redirects: - - /migration_portal/3.0.1/04_mp_migrating_database/ - - /migration_portal/3.1.0/04_mp_migrating_database/ - - /migration_portal/3.2.0/04_mp_migrating_database/ legacyRedirectsGenerated: # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. diff --git a/product_docs/docs/migration_portal/3.3.0/05_mp_advanced_data_migration.mdx b/product_docs/docs/migration_portal/3.4.0/05_mp_advanced_data_migration.mdx similarity index 79% rename from product_docs/docs/migration_portal/3.3.0/05_mp_advanced_data_migration.mdx rename to product_docs/docs/migration_portal/3.4.0/05_mp_advanced_data_migration.mdx index ce0dbb0ee63..8a66e974681 100644 --- a/product_docs/docs/migration_portal/3.3.0/05_mp_advanced_data_migration.mdx +++ b/product_docs/docs/migration_portal/3.4.0/05_mp_advanced_data_migration.mdx @@ -1,10 +1,6 @@ --- title: "Advanced Data Migration" -redirects: - - /migration_portal/3.0.1/05_mp_advanced_data_migration/ - - /migration_portal/3.1.0/05_mp_advanced_data_migration/ - - /migration_portal/3.2.0/05_mp_advanced_data_migration/ legacyRedirectsGenerated: # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. diff --git a/product_docs/docs/migration_portal/3.3.0/images/1.png b/product_docs/docs/migration_portal/3.4.0/images/1.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/1.png rename to product_docs/docs/migration_portal/3.4.0/images/1.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/162980660731198462.textClipping b/product_docs/docs/migration_portal/3.4.0/images/162980660731198462.textClipping similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/162980660731198462.textClipping rename to product_docs/docs/migration_portal/3.4.0/images/162980660731198462.textClipping diff --git a/product_docs/docs/migration_portal/3.3.0/images/3.png b/product_docs/docs/migration_portal/3.4.0/images/3.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/3.png rename to product_docs/docs/migration_portal/3.4.0/images/3.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/EDB_logo.png b/product_docs/docs/migration_portal/3.4.0/images/EDB_logo.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/EDB_logo.png rename to product_docs/docs/migration_portal/3.4.0/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.0/images/Migrate_Cloud_Finish.png new file mode 100644 index 00000000000..25aa6e6ec47 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/Migrate_Cloud_Finish.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38f6e03d8e4d2e488daa377a6a1471a2a2d3d7f3092df26f7a7a94776d51a81d +size 154658 diff --git a/product_docs/docs/migration_portal/3.4.0/images/biganimal.png b/product_docs/docs/migration_portal/3.4.0/images/biganimal.png new file mode 100644 index 00000000000..5cf2aa66bfb --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/biganimal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad0dbd192a338d73d6b7fd00367738482834f853628de602995004393866a6b5 +size 161464 diff --git a/product_docs/docs/migration_portal/3.3.0/images/edb_logo.svg b/product_docs/docs/migration_portal/3.4.0/images/edb_logo.svg similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/edb_logo.svg rename to product_docs/docs/migration_portal/3.4.0/images/edb_logo.svg diff --git a/product_docs/docs/migration_portal/3.3.0/images/edb_logo_full_color.svg b/product_docs/docs/migration_portal/3.4.0/images/edb_logo_full_color.svg similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/edb_logo_full_color.svg rename to product_docs/docs/migration_portal/3.4.0/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.0/images/migrate_cloud_select_platform_updated.png new file mode 100644 index 00000000000..3e0c90891a8 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/migrate_cloud_select_platform_updated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a66ef8f504be2db05e43bc998509d83466f55838620938c62de3063bc1c308e6 +size 161563 diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_enterprisedb_website.png b/product_docs/docs/migration_portal/3.4.0/images/mp_enterprisedb_website.png new file mode 100644 index 00000000000..708f57790b7 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_enterprisedb_website.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75af20d6c708d7a2c929afe562344a13273f2face2112d2c90179c7881a42857 +size 292870 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.0/images/mp_migrate_cloud_connection.png new file mode 100644 index 00000000000..91ca085f7a1 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_connection.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13350ed0cad267118b0355037d7aa46151095ed9ad606f669a0307647ac5abb3 +size 189033 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.0/images/mp_migrate_cloud_connection_complete.png new file mode 100644 index 00000000000..2b3f9526edc --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_connection_complete.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c9dd7eb6da7b7b4d1cb4e7a63f40c744cd21c54cb67fe25040fdb61b1c74609 +size 200841 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.0/images/mp_migrate_cloud_connection_complete_updatated.png new file mode 100644 index 00000000000..c8fe9fa7490 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_connection_complete_updatated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c79286cb31f9ae028f1a2f65b0f3db4b44f7cddb36e4cea8780a3487d1a44ad +size 217626 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.0/images/mp_migrate_cloud_connection_updated.png new file mode 100644 index 00000000000..34f31846ea1 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_connection_updated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7708627913511b926351e4ca43f28479683612adf74d1a88604bfaaa6eaa14d +size 206102 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.0/images/mp_migrate_cloud_finish_1.png new file mode 100644 index 00000000000..25aa6e6ec47 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_finish_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38f6e03d8e4d2e488daa377a6a1471a2a2d3d7f3092df26f7a7a94776d51a81d +size 154658 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.0/images/mp_migrate_cloud_launch_cluster_updated.png new file mode 100644 index 00000000000..ae92977c866 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_launch_cluster_updated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54f5b91e9f59f457cf233753b562fdf1fab3d46c54761dde5141fd66e0644262 +size 174698 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.0/images/mp_migrate_cloud_select_platform.png new file mode 100644 index 00000000000..1f2c206c054 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_select_platform.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6310d249dfbade3da3916fcf4355eb8aa2960f524f109ad6004beacc6b1e7b2e +size 149571 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.0/images/mp_migrate_cloud_success_updated.png new file mode 100644 index 00000000000..2a8e47cd248 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_migrate_cloud_success_updated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b9422f06148e30afe3399693b65e475517eb38b078381a189a24fd5efa9d756 +size 166348 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_new_filters.png b/product_docs/docs/migration_portal/3.4.0/images/mp_new_filters.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_new_filters.png rename to product_docs/docs/migration_portal/3.4.0/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.0/images/mp_overview_home.png new file mode 100644 index 00000000000..86e2a03ddd2 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_overview_home.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e855561005abd011155573190ead85e2d3c0eeb226434ce44a6eec7df1e63c59 +size 190911 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.0/images/mp_overview_home_updated.png new file mode 100644 index 00000000000..2a447a99bdd --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_overview_home_updated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8df96e0861372500a0dd8aecdf7e6e6584bda83c1445f5218a620f31e716ae0c +size 214008 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.0/images/mp_overview_project_kb.png new file mode 100644 index 00000000000..d514f9e982e --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_overview_project_kb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:636d24d815bc0efd9acbdfbb6313f526953bb1a584e807513835599f24dca73a +size 113691 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.0/images/mp_overview_project_numbered.png new file mode 100644 index 00000000000..8592991244b --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_overview_project_numbered.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:417dc73b0d05bfabec519e7521a3d73cce9fb50ceb49f0dd66e75ee67bec2b47 +size 127852 diff --git a/product_docs/docs/migration_portal/3.4.0/images/mp_overview_wiki.png b/product_docs/docs/migration_portal/3.4.0/images/mp_overview_wiki.png new file mode 100644 index 00000000000..3822a668540 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_overview_wiki.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d85f19c698beba6323dfa6feddde7df74ad9e4194cf2ad2bab42b45fdbd2c61 +size 111456 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_overview_wiki_1.png b/product_docs/docs/migration_portal/3.4.0/images/mp_overview_wiki_1.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_overview_wiki_1.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_overview_wiki_1.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_overview_wiki_2.png b/product_docs/docs/migration_portal/3.4.0/images/mp_overview_wiki_2.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_overview_wiki_2.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_overview_wiki_2.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_overview_wiki_5.png b/product_docs/docs/migration_portal/3.4.0/images/mp_overview_wiki_5.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_overview_wiki_5.png rename to product_docs/docs/migration_portal/3.4.0/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.0/images/mp_schema_assessment_analysis_result.png new file mode 100644 index 00000000000..56fc92f82c5 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_analysis_result.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09100c79e00a01d035b85104360ea0301f22b9bbb1585bce00d8d9a0887f6c41 +size 128442 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.0/images/mp_schema_assessment_errors.png new file mode 100644 index 00000000000..04285c2943a --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_errors.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45dd9336edd642be23387005fe7a218d06fdc01da6000df3aee689e135c02309 +size 217587 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.0/images/mp_schema_assessment_incompatible.png new file mode 100644 index 00000000000..333282e5880 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_incompatible.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ad683e872fc8c093e2218257b12c45d842ac9459572ed7b95ca8760210a5c0c +size 166629 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_new_project.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_new_project.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_new_project_1.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_1.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_new_project_1.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_1.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_new_project_2.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_2.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_new_project_2.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_2.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_new_project_4.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_4.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_new_project_4.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_4.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_new_project_4_edited.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_4_edited.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_new_project_4_edited.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_4_edited.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_new_project_5.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_5.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_assessment_new_project_5.png rename to product_docs/docs/migration_portal/3.4.0/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.0/images/mp_schema_assessment_new_project_edited.png new file mode 100644 index 00000000000..38acc52b023 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_new_project_edited.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1defa7a67b78a43aa2f4b5b47b62e21aa0ecb1e87355133b4346e0c4027cfd0f +size 87860 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.0/images/mp_schema_assessment_schema_report.png new file mode 100644 index 00000000000..c2126eb012f --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_schema_report.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d50a6fc8b02d56ae836594e9061d7038084751fc2c0bfe82200dc96ba215c1e4 +size 94859 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.0/images/mp_schema_assessment_schema_report_pdf.png new file mode 100644 index 00000000000..da52ca1f1eb --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_schema_report_pdf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bf00bd54e1572a76c32b7f575fd6dce87a5414f06ba184ec685b2ab2695fb55 +size 155224 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.0/images/mp_schema_assessment_select_schema.png new file mode 100644 index 00000000000..887a8f4563b --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_select_schema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa3757474aab02c7e1df27e95cd32bcab4182cf1250ec98937e6ee03ca1dc8ac +size 42250 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.0/images/mp_schema_assessment_verifying_ddl.png new file mode 100644 index 00000000000..04285c2943a --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_verifying_ddl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45dd9336edd642be23387005fe7a218d06fdc01da6000df3aee689e135c02309 +size 217587 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.0/images/mp_schema_assessment_workaround.png new file mode 100644 index 00000000000..b838cc2fe10 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_assessment_workaround.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d34ba78cb672310d8b72d926053f0c806e86abe0086776667b72549ffa071f58 +size 166426 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_dependent_objects.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_dependent_objects.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_dependent_objects.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_dependent_objects.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_extraction_list.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_extraction_list.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_extraction_list.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_extraction_list.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_extraction_paths.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_extraction_paths.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_extraction_paths.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_extraction_paths.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_extraction_target.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_extraction_target.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_extraction_target.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_extraction_target.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_cloud_cluster.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_cluster.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_cloud_cluster.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_cluster.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_cloud_cluster_connection_page.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_cluster_connection_page.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_cloud_cluster_connection_page.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_cluster_connection_page.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_cloud_cluster_connection_test.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_cluster_connection_test.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_cloud_cluster_connection_test.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_cluster_connection_test.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_cloud_epas_mig_success.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_epas_mig_success.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_cloud_epas_mig_success.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_epas_mig_success.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_cloud_epas_schemas_selection.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_epas_schemas_selection.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_cloud_epas_schemas_selection.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_epas_schemas_selection.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_cloud_option.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_option.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_cloud_option.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_cloud_option.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_exist_epas_contact_us.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_exist_epas_contact_us.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_exist_epas_contact_us.png rename to product_docs/docs/migration_portal/3.4.0/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.0/images/mp_schema_mig_exist_epas_download.png new file mode 100644 index 00000000000..33fb51413ea --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_exist_epas_download.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b83106533e71fbfa53b7598fcc5094e0258d1e67a40d313b693a8ea90791e8f1 +size 192379 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.0/images/mp_schema_mig_exist_epas_mig_success.png new file mode 100644 index 00000000000..338f9a4515c --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_exist_epas_mig_success.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b003be09df765b60b2f962cbb094baaa0f8cde3a53591a56ca71e973c445d91 +size 169852 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.0/images/mp_schema_mig_exist_epas_schemas_selection.png new file mode 100644 index 00000000000..8f8f3f6c2b0 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_exist_epas_schemas_selection.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40a9b17fef8d0ea136925e97edf99ed9f90fde504afde418c4ab847350639c3c +size 186000 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.0/images/mp_schema_mig_exist_epas_schemas_selection_linux.png new file mode 100644 index 00000000000..8f8f3f6c2b0 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_exist_epas_schemas_selection_linux.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40a9b17fef8d0ea136925e97edf99ed9f90fde504afde418c4ab847350639c3c +size 186000 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.0/images/mp_schema_mig_exist_epas_windows.png new file mode 100644 index 00000000000..0aa977644fa --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_exist_epas_windows.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:421037aaf7c6acc1fd6998768dac54b920ad1ea43fd1664dc65707648d56a8ff +size 178956 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.0/images/mp_schema_mig_exist_linux.png new file mode 100644 index 00000000000..5adca876fb6 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_exist_linux.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6d0c70a7ed53ff1b3eddfd68ec483e41c3c8b5e15ea12177b72737a5826ecff +size 210686 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.0/images/mp_schema_mig_new_epas_download.png new file mode 100644 index 00000000000..06614fca8fb --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_download.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3c1119a13d9567584ef76b8884141a02770566d0ffc4cbba01b81d52f3b13a7 +size 205676 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.0/images/mp_schema_mig_new_epas_import.png new file mode 100644 index 00000000000..16a3c800cdd --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_import.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37aea458cc6652e2a23041cafa47a64302ff1de0caac293c5015274782de36cc +size 205158 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.0/images/mp_schema_mig_new_epas_linux.png new file mode 100644 index 00000000000..f7e06ab6900 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_linux.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9cce6e61080592e2834c004f6029e91997282e2b7d3d8670b8f96fa7426b98e +size 185125 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.0/images/mp_schema_mig_new_epas_linux_guide.png new file mode 100644 index 00000000000..7bc3476c94e --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_linux_guide.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc76b9683b65a2cd70919a436ffc5ee2849587670e3c622315280af52e9ae6d9 +size 186196 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.0/images/mp_schema_mig_new_epas_linux_import.png new file mode 100644 index 00000000000..6a8a9f2f94d --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_linux_import.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a62f9f25a93d935d9d81fa4c5316d25dc4bbd56263a4946c87d9dbf115a94d3b +size 234193 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.0/images/mp_schema_mig_new_epas_linux_repo.png new file mode 100644 index 00000000000..23f06f2e6a8 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_linux_repo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea5d5c70c5b6e04897bfab6ff4891778020f2ca065d1dd7b022f75ae3a936340 +size 181803 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.0/images/mp_schema_mig_new_epas_mig_success..png new file mode 100644 index 00000000000..b1af4131261 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_mig_success..png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa6be17bb95cc51d751d95a56de59805e780d6ec4e4705b015657e715c82e699 +size 182075 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.0/images/mp_schema_mig_new_epas_mig_success.png new file mode 100644 index 00000000000..b1af4131261 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_mig_success.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa6be17bb95cc51d751d95a56de59805e780d6ec4e4705b015657e715c82e699 +size 182075 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_schemas_selection copy.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_schemas_selection copy.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_schemas_selection copy.png rename to product_docs/docs/migration_portal/3.4.0/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.0/images/mp_schema_mig_new_epas_schemas_selection.png new file mode 100644 index 00000000000..85774982250 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_schemas_selection.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8de749ce4553c6c56a48716dbd4b60cc6d13b7e133a28276b16b44de155194e4 +size 175424 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.0/images/mp_schema_mig_new_epas_windows.png new file mode 100644 index 00000000000..de4c8418b31 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_windows.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dab6f9fbc7fd4cae466a8b4327ed594f5046aedb1d4bdff664809c02055d2f5 +size 184267 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.0/images/mp_schema_mig_new_epas_windows_guide.png new file mode 100644 index 00000000000..20d246f64af --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_windows_guide.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:591554c1572fbafb55b7c6a59b03268aa2abb5bb49f1f854041804f6fc242904 +size 190554 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_windows_import.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_windows_import.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_mig_new_epas_windows_import.png rename to product_docs/docs/migration_portal/3.4.0/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.0/images/mp_schema_mig_new_epas_windows_installer.png new file mode 100644 index 00000000000..5a89105cd45 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_mig_new_epas_windows_installer.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:219ac2e679493b727c56aea2266ccfde3fd7d097ed49297659180bd23ff48f9c +size 182548 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_cds.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_cds.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_cds.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_cds.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_connection_details.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_connection_details.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_connection_details.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_connection_details.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_connection_successful.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_connection_successful.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_connection_successful.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_connection_successful.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_deployed.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_deployed.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_deployed.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_deployed.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_download_file_button.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_download_file_button.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_download_file_button.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_download_file_button.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_download_file_option.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_download_file_option.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_download_file_option.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_download_file_option.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_existing_epas.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_existing_epas.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_existing_epas.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_existing_epas.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_home.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_home.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_home.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_home.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_home_cloud.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_home_cloud.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_home_cloud.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_home_cloud.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_home_new.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_home_new.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_home_new.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_home_new.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_select_schemas (copy).png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_select_schemas (copy).png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_select_schemas (copy).png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_select_schemas (copy).png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_select_schemas.png b/product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_select_schemas.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_schema_migration_select_schemas.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_schema_migration_select_schemas.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_using_portal.png b/product_docs/docs/migration_portal/3.4.0/images/mp_using_portal.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_using_portal.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_using_portal.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_using_portal_accessing.png b/product_docs/docs/migration_portal/3.4.0/images/mp_using_portal_accessing.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_using_portal_accessing.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_using_portal_accessing.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_whats_new_assessment_report_rh_counts.png b/product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_assessment_report_rh_counts.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_whats_new_assessment_report_rh_counts.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_assessment_report_rh_counts.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_whats_new_branding_updates.png b/product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_branding_updates.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_whats_new_branding_updates.png rename to product_docs/docs/migration_portal/3.4.0/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.0/images/mp_whats_new_common_failures.png new file mode 100644 index 00000000000..6a0fd0a0085 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_common_failures.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cd1b57486f5b9885dbca970d95dc28480a61ee2789b2876ae3cbf405fbc579b +size 144245 diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_whats_new_compatibility_guage_color.png b/product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_compatibility_guage_color.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_whats_new_compatibility_guage_color.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_compatibility_guage_color.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_whats_new_csv.png b/product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_csv.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_whats_new_csv.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_csv.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_whats_new_objects_repaired_by_me.png b/product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_objects_repaired_by_me.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_whats_new_objects_repaired_by_me.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_objects_repaired_by_me.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_whats_new_prepopulated_email.png b/product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_prepopulated_email.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_whats_new_prepopulated_email.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_prepopulated_email.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/mp_whats_new_warning_sign.png b/product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_warning_sign.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/mp_whats_new_warning_sign.png rename to product_docs/docs/migration_portal/3.4.0/images/mp_whats_new_warning_sign.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/project page overview.png b/product_docs/docs/migration_portal/3.4.0/images/project page overview.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/project page overview.png rename to product_docs/docs/migration_portal/3.4.0/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.0/images/select-operating-system-linux.png new file mode 100644 index 00000000000..f7e06ab6900 --- /dev/null +++ b/product_docs/docs/migration_portal/3.4.0/images/select-operating-system-linux.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9cce6e61080592e2834c004f6029e91997282e2b7d3d8670b8f96fa7426b98e +size 185125 diff --git a/product_docs/docs/migration_portal/3.3.0/images/test.png b/product_docs/docs/migration_portal/3.4.0/images/test.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/test.png rename to product_docs/docs/migration_portal/3.4.0/images/test.png diff --git a/product_docs/docs/migration_portal/3.3.0/images/whats_new_new_look.png b/product_docs/docs/migration_portal/3.4.0/images/whats_new_new_look.png similarity index 100% rename from product_docs/docs/migration_portal/3.3.0/images/whats_new_new_look.png rename to product_docs/docs/migration_portal/3.4.0/images/whats_new_new_look.png diff --git a/product_docs/docs/migration_portal/3.3.0/index.mdx b/product_docs/docs/migration_portal/3.4.0/index.mdx similarity index 70% rename from product_docs/docs/migration_portal/3.3.0/index.mdx rename to product_docs/docs/migration_portal/3.4.0/index.mdx index 270ab62388b..a5e093b1439 100644 --- a/product_docs/docs/migration_portal/3.3.0/index.mdx +++ b/product_docs/docs/migration_portal/3.4.0/index.mdx @@ -2,13 +2,11 @@ title: "EDB Postgres Migration Portal" directoryDefaults: description: "EDB Postgres Migration Portal Version 3.2.0 Documentation and release notes. EDB Postgre Migration Portal converts Oracle Schema to PostgreSQL online. " +navigation: + - 01_mp_release_notes -# The 3.2.0 folder includes the 3.0.1 and 3.1.0 changes. We removed the earlier release folders because we only want to display a Version label for Migration Portal documentation reflecting the latest release on Docs 2.0. When preparing for a future release, create your working branch, rename the 3.2.0 folder to the latest version number, and add a redirect for the previous version to those below. To get back to the 3.0.1 or 3.1.0 sources use a tag dated between June 23rd and June 27th, 2021. +# The 3.4.0 folder includes the 3.0.1, 3.1.0, 3.2.0, 3.3.0 and 3.4.0 changes. We removed the earlier release folders because we only want to display a Version label for Migration Portal documentation reflecting the latest release on Docs 2.0. When preparing for a future release, create your working branch, rename the 3.4.0 folder to the latest version number, and add a redirect for the previous version the Migration Portal section in the file /static/_redirects. To get back to the previous sources use a tag dated between June 23rd and June 27th, 2021. -redirects: - - /migration_portal/3.0.1/ - - /migration_portal/3.1.0/ - - /migration_portal/3.2.0/ legacyRedirectsGenerated: # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. @@ -18,6 +16,7 @@ legacyRedirectsGenerated: - "/edb-docs/d/edb-postgres-migration-portal/user-guides/user-guide/3.0.1/whats_new.html" - "/edb-docs/d/edb-postgres-migration-portal/user-guides/user-guide/3.0.1/genindex.html" --- + Migration Portal is a web-based service for migrating Oracle database schemas to the EDB Postgres platform. The Migration Portal assesses and analyzes Oracle database schemas and converts types, tables, sequences, constraints, triggers, views, stored procedures, packages, database links (dblinks), materialized views, and indexes, producing DDLs compatible with EDB Postgres Advanced Server. @@ -26,10 +25,10 @@ The user-friendly portal interface simplifies the assessment and migration proce The Migration Portal guide provides a high-level description of the steps involved in the migration process. The guide also includes solutions to common migration problems and details of unsupported features and their potential workarounds. -EnterpriseDB has helped companies migrate their existing database systems to Postgres for years. For more information, visit the EnterpriseDB website at: +EnterpriseDB has helped companies migrate their existing database systems to Postgres for years. For more information, visit the EnterpriseDB website at:
-whats_new supported_platforms mp_using_portal mp_migrating_database mp_advanced_data_migration + supported_platforms mp_using_portal mp_migrating_database mp_advanced_data_migration
diff --git a/product_docs/docs/migration_toolkit/55/06_building_toolkit.properties_file.mdx b/product_docs/docs/migration_toolkit/55/06_building_toolkit.properties_file.mdx index 6616605102d..5292742f160 100644 --- a/product_docs/docs/migration_toolkit/55/06_building_toolkit.properties_file.mdx +++ b/product_docs/docs/migration_toolkit/55/06_building_toolkit.properties_file.mdx @@ -13,7 +13,7 @@ On Windows, the file is located in: `C:\Program Files\edb\mtk\etc` A sample `toolkit.properties` file is shown below: -![*A typical toolkit.properties file.*](images/building_toolkit.properties.png) +![A typical toolkit.properties file.](./images/building_toolkit.properties.png) Before executing Migration Toolkit commands, modify the toolkit.properties file with the editor of your choice. Update the file to include the following information: @@ -24,6 +24,8 @@ Before executing Migration Toolkit commands, modify the toolkit.properties file - `TARGET_DB_USER` specifies the name of a privileged target database user. - `TARGET_DB_PASSWORD` specifies the password of the target database user. +For specifying a target database on EDB Cloud, see [Defining Target Information for EDB Cloud](#defining-target-information-for-edb-cloud). + ## Defining an Advanced Server URL @@ -31,17 +33,17 @@ Before executing Migration Toolkit commands, modify the toolkit.properties file Migration Toolkit facilitates migration from the following platforms to Advanced Server: - Oracle +- PostgreSQL - MySQL - Sybase - SQL Server -- PostgreSQL For a definitive list of the objects migrated from each database type, please refer to the [Functionality Overview](04_functionality_overview/#functionality_overview). Migration Toolkit reads connection specifications for the source and the target database from the `toolkit.properties` file. Connection information for each must include: -- The URL of the database -- The name of a privileged user +- The URL of the database. +- The name of a privileged user. - The password associated with the specified user. The URL conforms to JDBC standards and takes the form: @@ -73,9 +75,10 @@ An Advanced Server URL contains the following information: Migration Toolkit facilitates migration from the following platforms to PostgreSQL: - Oracle +- Advanced Server - MySQL - SQL Server -- Advanced Server + !!! Note PostgreSQL default row size is limited to 8KB, which means each table row should fit into a single 8KB block, else it errors out. For example, you can create a table with 1600 columns of `INT` and insert data for all the columns, but we cannot do the same with `BIGINT` columns because `INT` is stored as 4 bytes, but each `BIGINT` requires 8 bytes. @@ -84,8 +87,8 @@ For a definitive list of the objects migrated from each database type, please re Migration Toolkit reads connection specifications for the source and the target database from the `toolkit.properties` file. Connection information for each must include: -- The URL of the database -- The name of a privileged user +- The URL of the database. +- The name of a privileged user. - The password associated with the specified user. A PostgreSQL URL conforms to JDBC standards and takes the form: @@ -112,12 +115,57 @@ The URL contains the following information: +## Defining an EDB Cloud URL + +Migration Toolkit facilitates migration from the following platforms to EDB Cloud: + +- Oracle +- Advanced Server +- PostgreSQL +- MySQL +- SQL Server + +Migration Toolkit reads connection specifications for the source and the target database from the `toolkit.properties` file. Connection information for each must include: + +- The URL of the database. +- The name of a privileged user. +- The password associated with the specified user. + + + +When migrating to EDB Cloud, `TARGET_DB_URL` takes the form of a JDBC URL. For example: + +```text +jdbc:://[:]/?sslmode= +``` +!!! Note +Many of the values you need for the target database URL are available from the EDB Cloud portal. In EDB Cloud, select your cluster and go to the **Connect** tab to find the values. +!!! + +The URL contains the following information: + +- `jdbc` The protocol is always `jdbc`. + +- `postgres_type` The sub-protocol is the Postgres type. Specify `edb` if you are using Advanced Server or `postgresql` if you are using PostgreSQL. + +- `` The host name of your cluster. You can copy it from the **Host** field on the **Connect** tab in the EDB Cloud portal. + +- `` The port number that the database listener is monitoring. You can copy it from the **Port** field on the **Connect** tab in the EDB Cloud portal. + +- `` The name of the target database. Set this to the name of the database in your cluster that you want to use as your migration target database. The name of the default database for your cluster is shown in the **Dbname** field on the **Connect** tab in the EDB Cloud portal. Often a separate database is created for use as the migration target. + +- `TARGET_DB_USER` should specify the name of a privileged database user. You can copy it from the **User** field on the **Connect** tab in the EDB Cloud portal. + +- `TARGET_DB_PASSWORD` must contain the password of the specified user. + +- `sslmode` is either "require" or "verify-full". See [Recommended settings for SSL mode](../../../edbcloud/latest/using_cluster/02_connect_to_cluster/#recommended-settings-for-ssl-mode). Listed at the end of the *Service URI** value on the **Connect** tab in the EDB Cloud portal. + ## Defining an Oracle URL Migration Toolkit facilitates migration from an Oracle database to a PostgreSQL or Advanced Server database. When migrating from Oracle, you must specify connection specifications for the Oracle source database in the `toolkit.properties` file. The connection information must include: -- The URL of the Oracle database -- The name of a privileged user +- The URL of the Oracle database. +- The name of a privileged user. - The password associated with the specified user. When migrating from an Oracle database, SRC_DB_URL should contain a JDBC URL, specified in one of two forms. The first form is: @@ -158,8 +206,8 @@ An Oracle URL contains the following information: Migration Toolkit facilitates migration from a MySQL database to an Advanced Server or PostgreSQL database. When migrating from MySQL, you must specify connection specifications for the MySQL source database in the `toolkit.properties` file. The connection information must include: -- The URL of the source database -- The name of a privileged user +- The URL of the source database. +- The name of a privileged user. - The password associated with the specified user. When migrating from MySQL, `SRC_DB_URL` takes the form of a JDBC URL. For example: @@ -217,7 +265,7 @@ Migration Toolkit facilitates migration from a Sybase database to an Advanced Se - The name of a privileged user - The password associated with the specified user. -When migrating from Sybase, SRC_DB_URL takes the form of a JTDS URL. For example: +When migrating from Sybase, `SRC_DB_URL` takes the form of a JTDS URL. For example: ```text jdbc:jtds:sybase://[:]/ @@ -253,8 +301,8 @@ Migration Toolkit facilitates migration from a SQL Server database to a PostgreS Migration Toolkit reads connection specifications for the source database from the `toolkit.properties` file. The connection information must include: -- The URL of the source database -- The name of a privileged user +- The URL of the source database. +- The name of a privileged user. - The password associated with the specified user. If you are connecting to a SQL Server database, `SRC_DB_URL` takes the form of a JTDS URL. For example: @@ -280,3 +328,4 @@ A SQL Server URL contains the following information: - `SRC_DB_USER` should specify the name of a privileged SQL Server user. - `SRC_DB_PASSWORD` must contain the password of the specified user. + diff --git a/static/_redirects b/static/_redirects index 44d17e3ba28..d2bd753f97e 100644 --- a/static/_redirects +++ b/static/_redirects @@ -83,6 +83,12 @@ /docs/migration_toolkit/54.0.0/* /docs/migration_toolkit/54/:splat 301 /docs/migration_toolkit/55.0.0/* /docs/migration_toolkit/55/:splat 301 +# Migration Portal +/docs/migration_portal/3.0.1/* /docs/migration_portal/latest/:splat 301 +/docs/migration_portal/3.1.0/* /docs/migration_portal/latest/:splat 301 +/docs/migration_portal/3.2.0/* /docs/migration_portal/latest/:splat 301 +/docs/migration_portal/3.3.0/* /docs/migration_portal/latest/:splat 301 + # FDWs /docs/hadoop_data_adapter/2.0/* /docs/hadoop_data_adapter/latest/ 301 /docs/hadoop_data_adapter/2.0.5/* /docs/hadoop_data_adapter/latest/ 301