Igal Sapir
Igal Sapir
I am not using it yet to create the PK, but I added it to the Information Schema query following your suggestion at 33b0290 Thank you.
I actually had to comment that addition out because the Group By didn't work properly and the query returned duplicate rows
It's a Java (JDBC) Connection String, so follow the standards. There's plenty of documentation about it.
The project is not dependent on the Postgres version. The error "Could not find or load main class net.twentyonesolutions.m2pg.PgMigrator" means that the classpath (or `-cp`) argument is not set properly....
> Now the error i'm receiving is the following: Exception in thread "main" java.sql.SQLException: No suitable driver found for jdbc:sqlserver:172.16.4.17 That's because it can not find the JAR file with...
In the meantime added queries `dml.execute.before_all` and `dml.execute.after_all` in 86c30b3 which allows to disable triggers before copying and re-enable them afterwards
The only way to maintain the CaSe in Postgres is by using quotes, e.g. CREATE TABLE "Users"; But that means that every time you reference that object you need to...
You can keep the schema casing unchanged. Simply do not specify any transformation. It will work as the SQL standard is case-insensitive. The only thing you wouldn't get is the...
Strange. That's not supposed to happen even for very large tables. Did you see any "Insert Failed" error messages before it crashed?
OK, so the way that it works is that the log file for each table is built in memory because it is running in multiple threads. When the table completes...