Zbliża się to:
pg_dump --schema-only --format c dbName | \
pg_restore --schema-only --clean --dbname=dbNameTest
Z wyjątkiem tego, że nie działa, jeśli dbNameTest
jeszcze nie istnieje. Poniższe wykonuje zadanie (chociaż narzeka, jeśli dbNameTest
już istnieje. mogę z tym żyć)
createdb dbNameTest
pg_dump --schema-only --format c dbName | \
pg_restore --schema-only --clean --dbname=dbNameTest
Jedna linia z krótkimi opcjami to:
createdb dbNameTest ; pg_dump -s -F c dbName | pg_restore -s -c -d dbNameTest
Skrypt sh pg_copy_schema
wyszłoby coś takiego:
#!/bin/sh
if [ -z "$2" ] ; then echo "Usage: `basename $0` original-db new-db" ; exit 1 ; fi
echo "Copying schema of $1 to $2"
createdb "$2" 2> /dev/null
pg_dump --schema-only --format c "$1" | pg_restore --schema-only --clean --dbname="$2"