Please create copies of your BiblioteQ PostgreSQL database(s).

The following instructions must be executed on the server that is
hosting the database(s). You may be required to execute the commands
as the postgres account.

pg_dump -U postgres --clean --file=xbook_db.sql xbook_db
pg_dumpall -U postgres --clean --globals-only --file=globals.sql

Importing a database copy is simple. Before executing the following
commands, please create and prepare the xbook_db database.

psql -U postgres -d xbook_db < globals.sql
psql -U postgres -d xbook_db < xbook_db.sql
