×
日本語のページを検索
  • すべての言語
  • 日本語のページを検索
すべての結果
2011/03/18 · You need CONNECT on the database in question, USAGE on all schemas and SELECT on all tables, views and sequences.
2023/05/06 · Learn how to take a backup of your PostgreSQL Database hosted on any environment like Supabase, Neon.tech or your own DigitalOcean/AWS ...
2012/02/23 · From the manual: It makes consistent backups even if the database is being used concurrently. So yes, you can trust the backup.
pg_dump utility located in bin directory of PostgreSQL installation can be used to export database definitions and data to a SQL script.
PostgreSQL pg_dump is a utility for backing up a PostgreSQL database. It generates a text file with SQL commands that can recreate the database and its objects.
You can use the pg_dump ( pg_dumpall )/ pg_restore backup utility that is included with PostgreSQL. This will create a backup or snapshot of the source ...
PostgreSQL: Backup and restore export import pg_dump with password on command line #sql - script ... pg_dump --no-owner --dbname=postgresql://username ...
2024/03/14 · There are several ways to dump and restore data in Postgres if you have more specialist needs. I've chosen one almost analogous to how I would do it with MySQL.
2020/10/30 · When working with PostgreSQL databases, pg_dump is a fantastic tool for exporting the current state of a database and restoring it, ...
The most simple case is dumping and restoring on the same server: $ pg_dump -h localhost -Fc test > /home/postgres/dump.sql $ pg_restore -h localhost test < / ...