Re: Data comparison

From: Muhammad Usman Khan <usman(dot)k(at)bitnine(dot)net>
To: Harish Harish <hpt3009(at)gmail(dot)com>
Cc: pgsql-admin(at)lists(dot)postgresql(dot)org
Subject: Re: Data comparison
Date: 2024-08-12 10:48:11
Message-ID: CAPnRvGv+2+pjDM7YdVudBmLnsEtCUwXsKk-dPfNP2-xU8bwD6Q@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Dear Harish,
If you are referring to data validation then the following query might give
you the desired results

/pg_dump -U postgres -s target -p 5334 > /tmp/db2_schema.sql ./pg_dump -U
postgres -s source > /tmp/db1_schema.sql diff /tmp/db1_schema.sql
/tmp/db2_schema.sql

Adjust your ports and databases name accordingly

Regards
Muhammad Usman Khan

On Mon, 12 Aug 2024 at 15:41, Harish Harish <hpt3009(at)gmail(dot)com> wrote:

> Dear Admins
>
> Is there any way to do data comparison for the database scheme in
> PostgreSQL between old version(10) and new version (15.0).
>
> Just migrated database from version 10 to 15.
>
> Much appreciate your help.
>
> Regards,
> Hari
>

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Kashif Zeeshan 2024-08-12 11:17:01 Re: Data comparison
Previous Message Harish Harish 2024-08-12 10:41:42 Data comparison