1.Postgresql中表空间实际是一个存储的目录,ORACLE表空间是一个逻辑概念,下面再有数据文件。
create tablespace tablespacename location '/data/t1';
2.创建数据库时可以指定默认表空间也可以修改默认表空间
create database db1 tablespace tablespacename;
alter database db1 set tablespace tablespacename;
修改时需要没有其它用户连接才可以。
3. 表空间下不单有表还有索引约束等,在创建这类对象时同样可以指定表空间
create table tb1(id int) tablespace tablespacename;
create index idx on tb1(id) tablespace tablespacename;
表的表空间也可以修改,但是操作时其它操作会被阻塞,包括SELECT操作。
create tablespace tablespacename location '/data/t1';
2.创建数据库时可以指定默认表空间也可以修改默认表空间
create database db1 tablespace tablespacename;
alter database db1 set tablespace tablespacename;
修改时需要没有其它用户连接才可以。
3. 表空间下不单有表还有索引约束等,在创建这类对象时同样可以指定表空间
create table tb1(id int) tablespace tablespacename;
create index idx on tb1(id) tablespace tablespacename;
表的表空间也可以修改,但是操作时其它操作会被阻塞,包括SELECT操作。
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/582521/viewspace-1969218/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/582521/viewspace-1969218/