Move table/index to different tablespace
Move table/index to different tablespace
postgresql configurationintermediate
by PostgreSQL
12 views
Move table/index to different tablespace
12345678
-- move table to different tablespace
prod_crm=#
alter table TEST8 set tablespace pg_crm;
ALTER TABLE
-- Move index to different tablespace
prod_crm=#
alter index TEST_ind set tablespace pg_crm;
ALTER TABLEPlease to add comments
No comments yet. Be the first to comment!