I am trying to run some tests on NuoDB and started by migrating a Database I already had on Postgres on the server. Here are the steps I followed:
- I Installed NuoDB on the server
- Installed the migration-tools
- Ran
./nuodb-migrator dump --source.driver=org.postgresql.Driver --source.url=jdbc:postgresql://localhost/db_name --source.username=db_user --source.password=password --source.schema=public --output.path=/tmp/nuo_db_test.cat
This gave me the error:
Execution failed com.nuodb.migrator.utils.ReflectionException: Failed to invoke public abstract java.sql.ResultSet java.sql.Statement.executeQuery(java.lang.String) throws java.sql.SQLException method on object of org.apache.commons.dbcp.DelegatingStatement class (...) Caused by: org.postgresql.util.PSQLException: ERROR: relation "public.null" does not exist Position: 15
Of this I took the part of "public.null does not exist" but I don't have a table called null as you can imagine.
What can be wrong?
I am trying to run some tests on NuoDB and started by migrating a Database I already had on Postgres on the server. Here are the steps I followed:
./nuodb-migrator dump --source.driver=org.postgresql.Driver --source.url=jdbc:postgresql://localhost/db_name --source.username=db_user --source.password=password --source.schema=public --output.path=/tmp/nuo_db_test.catThis gave me the error:
Execution failed com.nuodb.migrator.utils.ReflectionException: Failed to invoke public abstract java.sql.ResultSet java.sql.Statement.executeQuery(java.lang.String) throws java.sql.SQLException method on object of org.apache.commons.dbcp.DelegatingStatement class(...)Caused by: org.postgresql.util.PSQLException: ERROR: relation "public.null" does not exist Position: 15Of this I took the part of "public.null does not exist" but I don't have a table called null as you can imagine.
What can be wrong?