Files
postgresql_up_and_running_4…/README.md
2026-01-02 11:46:59 -05:00

427 B

The postgresql_book.sql is a plain text SQL backup that should be restored with psql.

It consists of data used in the book PostgreSQL: Up and Running, 4th Edition

To restore:

CREATE DATABASE postgresql_book;
\connect postgresql_book
\i postgresql_book.sql

The chapter folders consist of code and data used in the relevant chapters.