From 5f890a1fb19c85835b849077b2cf59ad1c8524ba Mon Sep 17 00:00:00 2001 From: Pablo Martin Date: Thu, 15 Feb 2024 16:29:03 +0100 Subject: [PATCH] change param in readme command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 068d88a..65e789d 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ The only missing bit to make your local deployment be like the production DWH is For example, if you are working on models that use data from Core, you can dump and restore from your terminal with something roughly like this: ```bash -pg_dump -h superhog-dwh-prd.postgres.database.azure.com -U airbyte_user -W -F t dwh -n sync_core > core.dump +pg_dump -h superhog-dwh-prd.postgres.database.azure.com -U airbyte_user -W -F plain dwh -n sync_core > core.dump pg_restore -h localhost -U postgres -W -d dwh core.dump ```