A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://cloud.google.com/database-migration/docs/postgresql-to-alloydb/migration-fidelity below:

Migration fidelity | Database Migration Service

Skip to main content Migration fidelity

Stay organized with collections Save and categorize content based on your preferences.


Overview

When you're migrating your schema, data, and metadata from a source database to a destination database, you want to ensure that all of this information is migrated accurately. Database Migration Service provides a high-fidelity way to migrate database objects (including the schema, data, and metadata) from one database to another.

All of the following data, schema, and metadata components are migrated as part of the database migration:

Data Schema Metadata Continuous migration

Only data manipulation language (DML) changes are updated automatically during continuous migrations. Managing data definition language (DDL) changes so that the source and destination databases remain compatible is the responsibility of the user, and can be achieved in two ways:

  1. Stopping writes to the source and running the DDL commands in both source and destination. Before running DDL commands on the destination, grant alloydbexternalsync to the AlloyDB user applying the DDL changes. To enable querying or changing the data, grant the alloydbexternalsync role to the relevant AlloyDB users.
  2. Using the pglogical.replicate_ddl_command to allow DDL to be run on the source and destination at a consistent point. The user running this command must have the same username on both the source and the destination, and should be the superuser or the owner of the artifact being migrated (for example, the table, sequence, view, or database).

    Here are a few examples of using the pglogical.replicate_ddl_command.

    Replace:

    Add a column to a database table with a primary key
    select pglogical.replicate_ddl_command(
      'ALTER TABLE [SCHEMA].[TABLE_NAME] add column surname varchar(20)',
      '{default}'
    );
    Add a column to a database table without a primary key
    select pglogical.replicate_ddl_command(
      'ALTER TABLE [SCHEMA].[TABLE_NAME] add column surname varchar(20)',
      '{default_insert_only}'
    );
    Change the name of a database table with a primary key
    select pglogical.replicate_ddl_command(
      'ALTER TABLE [SCHEMA].[TABLE_NAME] RENAME TO [NEW_NAME_FOR_TABLE]',
      '{default}'
    );
    Change the name of a database table without a primary key
    select pglogical.replicate_ddl_command(
      'ALTER TABLE [SCHEMA].[TABLE_NAME] RENAME TO [NEW_NAME_FOR_TABLE]',
      '{default_insert_only}'
    );
    Create a database table with a primary key

    Run the following commands:

    1. select pglogical.replicate_ddl_command(
        command := 'CREATE TABLE [SCHEMA].[TABLE_NAME]
          (id INTEGER PRIMARY KEY, name VARCHAR);',
        replication_sets := ARRAY['default']
      );
    2. select pglogical.replication_set_add_table('default', '[SCHEMA].[TABLE_NAME]');
    Create a database table without a primary key

    Run the following commands:

    1. select pglogical.replicate_ddl_command(
        command := 'CREATE TABLE [SCHEMA].[TABLE_NAME]
         (id INTEGER PRIMARY KEY, name VARCHAR);',
        replication_sets := ARRAY['default_insert_only']
      );
    2. select pglogical.replication_set_add_table(
        'default_insert_only', '[SCHEMA].[TABLE_NAME]'
      );
What isn't migrated

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-08-07 UTC.

[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-07 UTC."],[[["Database Migration Service ensures high-fidelity migration of database objects, including schema, data, and metadata, from one database to another."],["During migration, all tables, naming, primary keys, data types, default values, nullability, auto-increment attributes, secondary indexes, stored procedures, functions, triggers, views, and foreign key constraints are migrated."],["During continuous migrations, only data manipulation language (DML) changes are updated automatically, while data definition language (DDL) changes are managed by the user to maintain source and destination compatibility."],["Database Migration Service does not migrate large objects, `UPDATE` and `DELETE` statements for tables without primary keys, data from materialized views, and it migrates customized tablespaces to the default tablespace in the destination."],["The `SEQUENCE` states on the destination database might differ from those on the source database after the migration."]]],[]]


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4