我使用以下代码使用 java 还原 PostgreSQL 数据库
Runtime r = Runtime.getRuntime();
Process p;
String cmd ="D:/Program Files/PostgreSQL/9.1/bin/pg_restore.exe --host localhost --port 5432 --username postgres --dbname mytestqq --role postgres --no-password --verbose D:\sathish\rawDatabase.backup";
p = r.exec(cmd);
我在 rawDatabase.backup 文件中有 42 个表,但只有一个表正在恢复为什么其余表没有发生我的代码有什么问题?提前致谢!!!!