We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 759efc0 commit d2e6063Copy full SHA for d2e6063
README.md
@@ -2213,12 +2213,12 @@ pg_dump -U postgres -h 127.0.0.1 --exclude-table=_* --dbname={database_src} --sc
2213
Двумя командами, только одну таблицу, через промежуточный сжатый файл.
2214
```bash
2215
#на сервере A:
2216
-pg_dump -U postgres -h 127.0.0.1 -t my_table --clean --if-exists my_database_src | pv | pzstd -19 > my_table.sql.zst
+pg_dump -U postgres -h 127.0.0.1 --table=my_table --clean --if-exists my_database_src | pv | pzstd -19 > my_table.sql.zst
2217
2218
#копируем my_table.sql.zst с сервера A на сервер B
2219
2220
#на сервере B:
2221
-pv my_table.sql.zst | zstd -dcq | psql --username=postgres --host127.0.0.1 --dbname=my_database_dst --set=ON_ERROR_STOP=1 --echo-errors
+pv my_table.sql.zst | zstd -dcq | psql --username=postgres --host=127.0.0.1 --dbname=my_database_dst --set=ON_ERROR_STOP=1 --echo-errors
2222
```
2223
2224
### Как проверить синтаксис SQL кода без его выполнения?
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments