假设我在postgres中有两个数据库
DB1
schema_abc
schema_xyz
...........
DB2
schema_lol
schema_qwx
现在,我想备份schema_abc的特定表并将其恢复到schema_lol。
我正在使用 pg_dump -U postgres DB1 --schema = schema_abc -t tbl1 -t tbl4> file_name.sql
但是search_path将是sql文件中的schema_abc,如何将这个sql文件恢复到不同数据库的不同名称的模式,即DB2的schema_lol