Migrate2Postgres icon indicating copy to clipboard operation
Migrate2Postgres copied to clipboard

Easily migrate from other DBMSs to PostgreSQL

Results 19 Migrate2Postgres issues
Sort by recently updated
recently updated
newest added

Hi, I made a query to generate Pks of tables. The code is below: ``` SELECT DISTINCT KCU.TABLE_SCHEMA ,KCU.TABLE_CATALOG ,KCU.TABLE_NAME ,'ALTER TABLE '+KCU.TABLE_SCHEMA + '.' + KCU.TABLE_NAME +' CONSTRAINT '+...

When I run migrate.sh ı got following error. Do you guys have any idea? ./migrate.sh: line 5: -Dconnections.mssql.user=readonly: command not found ./migrate.sh: line 6: -Dconnections.mssql.password=secret: command not found Error: Could...

I want to have ability to keep casing such as in target db. It is very important thing when you need support several types of db (mssql/postgres/ets) with ORM. I...

…ransform" This commit add option "dont_change" for parametres "table_transform" and "column_transform". With that option case of table names and column names does not changed via migration.

If I already had postgres schema with columns of uuid type, dml migration throws error: Error: Insert Failed. org.postgresql.util.PSQLException: Error: column * has uuid type but expression character.

Is it possible to add DDL indexes to each table? I understand that Postgres has very wide possibilities for creating indexes, and in fact all the created indexes probably will...

Hi Thank you for this wonderful tool. I have a huge db with camelcase tables - would love to see support for this as well since changing it now is...

e.g. to disable the TRIGGERS before DML operations run: SET session_replication_role = replica; and then re-enable them at the end with: SET session_replication_role = DEFAULT;

enhancement

hey, I'm trying to use your tool for migrating my project from MSSQL to Postgres, I've been able to migrate all of the tables and the data I had but...