PostgreSQL のサンプルデータベースを立てる

 
なんやかんや使う Postgres.
接続テストで使うのでメモ。

PostgreSQL Tutorial の サンプルDBを使う。
その名も “dvdrental”

PostgreSQL Sample Database

まずは上記サイトから dvdrental.zip をダウンロードして解答する。

wget https://www.postgresqltutorial.com/wp-content/uploads/2019/05/dvdrental.zip
unzip dvdrental.zip

続いて PSQL に dvdrental schema をロードするための database を作る。

create database dvdrental;
exit;

最後に、dvdrental.tar を pg_restore でロードすればOK

pg_restore -U postgres -d dvdrental dvdrental.tar