-- Alterar tablespace de tabela
ALTER TABLE <OWNER>.<NOME_DA_TABELA> MOVE TABLESPACE <TABLESPACE>;
-- Alterar o tablespace de indice
ALTER INDEX <OWNER>.<NOME_DO_INDICE> REBUILD TABLESPACE <TABLESPACE>;
Detalhe caso a tabela contenha campos do tipo BLOB, você terá que mover também os indices LOB, mas o comando é um pouco diferente, abaixo o comando para mover os indices LOB:
-- Alterar o tablespace de indice
ALTER TABLE <OWNER>.<NOME_DA_TABELA> MOVE LOB(<NOME_DA_COLUNA_BLOB>) STORE AS (TABLESPACE <TABLESPACE>);
tranquilo de entender meu caro. Valeu
ResponderExcluir