Restore a remote dump to RDS
问题 I know how to restore a pg dump into a RDS database if that dump is in my machine, but how could I do it when the dump is available at a remote location, say Amazon S3? What I want to do is something like this: pg_restore -h somedomain.us-east-1.rds.amazonaws.com -p 5432 -d databasename -U username https://s3.amazonaws.com/database.dump But of course this results in pg_restore: [archiver] could not open input file "https://s3.amazonaws.com/database.dump" Thanks for your help! 回答1: If a