Skip to content

Instantly share code, notes, and snippets.

@oofnikj
oofnikj / pg_manage.sh
Last active February 22, 2023 23:32
PostgreSQL dump / restore to Google Cloud Storage
#!/bin/bash
PGUSER=${PGUSER:-"postgres"}
CATALOG_BUCKET="normalized-catalog"
_get_dbs() {
psql -U $PGUSER -c "COPY (
SELECT datname FROM pg_database
WHERE datname NOT IN (
'postgres',