PostgreSQL のサンプルデータ
実験、検証に使用するサンプルデータとしてPostgreSQL Tutorialに用意されていデータを使用する。
1. ダウンロード
ここから dvdrental.zip
を解凍して dvdrental.tar
を適当なディレクトリに置く。
2. サンプルデータ投入
データベース作成
postgres=# CREATE DATABASE dvdrental;
リストア
$ pg_restore -U postgres -d dvdrental /path/to/dvdrental.tar
確認
1postgres=# \c dvdrental
2データベース "dvdrental" にユーザ"postgres"として接続しました。
3dvdrental=# \dt
4 リレーションの一覧
5 スキーマ | 名前 | 型 | 所有者
6----------+---------------+----------+----------
7 public | actor | テーブル | postgres
8 public | address | テーブル | postgres
9 public | category | テーブル | postgres
10 public | city | テーブル | postgres
11 public | country | テーブル | postgres
12 public | customer | テーブル | postgres
13 public | film | テーブル | postgres
14 public | film_actor | テーブル | postgres
15 public | film_category | テーブル | postgres
16 public | inventory | テーブル | postgres
17 public | language | テーブル | postgres
18 public | payment | テーブル | postgres
19 public | rental | テーブル | postgres
20 public | staff | テーブル | postgres
21 public | store | テーブル | postgres