Creating your self-managed destination database v1.3.10 (LTS)

You can use existing databases as destinations for migrations. To use an existing instance as a destination for the migration, ensure the tables you migrate and the load generated on the destination don't interfere with existing workloads.

If you don't have a self-managed destination database yet, create one that the EDB DMS agent can connect to for Hybrid Manager (HM) migrations. This example assumes you installed the Postgres database distribution of your choice and initialized the server.

  1. Connect to the destination Postgres server:

    psql -p <PG_PORT> -U <PG_USERNAME>
  2. Create an empty destination database to use as a destination for the migration.

    In this example, the destination database is tr_target:

    CREATE DATABASE tr_target;