[postgres@yz219 ~]$ createdb test; [postgres@yz219 ~]$ psql -d test test=# create unlogged table t(a varchar(16), b varchar(200)); test=# insert into t values ('1', '2'); test=# insert into t values ('3', '4'); test=# select * from t; test=# \q