pgimage psql
psql を使うと、次のような database が出来ているのが分る
> psql -l
List of databases
Database | Owner | Encoding
-----------+----------+-----------
pgimage | yourname | SQL_ASCII
psql pgimage と入力して、psql を起動して
ttyp6:makoto@u 11:22:44/020530(...local-src/pgimage-2.3)> psql pgimage
Welcome to psql, the PostgreSQL interactive terminal.
Type: \copyright for distribution terms
\h for help with SQL commands
\? for help on internal slash commands
\g or terminate with semicolon to execute query
\q to quit
\dt と入力すると、次のように表示される
pgimage=# \dt
List of relations
Name | Type | Owner
-----------------+-------+--------
active_sessions | table | yourname
albums | table | yourname
auth_user | table | yourname
auth_user_md5 | table | yourname
objs | table | yourname
(5 rows)
pgimage=#
|