表空间的创建及使用
1、创建 filespace
hawq filespace -o hawqfilespace_config
2、创建 tablespace
create tablespace testtablespace filespace testfs
3、创建库指定 tablespace
create database db_t_space tablespace testtablespace;
4、创建表指定 tablespace
create table test200(id int) tablespace testtablespace;
-- 查看表的存储位置
select t1.fselocation||E'/'||t2.dat2tablespace||E'/'||t2.oid||E'/'||t3.relfilenode from pg_filespace_entry t1,pg_database t2,pg_class t3
where t1.fsefsoid = t2.dat2tablespace::int - 1
and t2.datname=current_database()
and t2.oid is not null
and t3.relname = 'tablename';