Skip to content

Instantly share code, notes, and snippets.

@hiroto-yamashita
hiroto-yamashita / Migrate.java
Last active August 29, 2015 14:16
PostgreSQL data migration
public class Migrate {
private static String oldUrl;
private static Properties oldProps = new Properties();
private static String newUrl;
private static Properties newProps = new Properties();
public static void main(String[] args) {
oldUrl = "jdbc:postgresql://hostname/dbname";
oldProps.setProperty("user", "xxxx");