a.建指定用户的表空间
create tablespace test_tbs owner "test_usr" location '/data/pgsqldata/test_tbs';
b.建指定表空间的表
create table tt( in bigint not null,
name varchar(256)
)
tablespace test_tbs;
create tablespace test_tbs owner "test_usr" location '/data/pgsqldata/test_tbs';
create table tt( in bigint not null,
name varchar(256)
)
tablespace test_tbs;