"alter table move" command
This command is generally used to move the segments of table from one tablespace to other tablespace, so
how to use this command:
ALTER TABLE TABLE_NAME MOVE TABLESPCE tablespace_name;
after this command indexes are become invalid, in that way we need to rebuild the indexes and at same we can change the segment of indexes
how to:
(MOVE INDEX TO TABLESPACE (NOT DOMAIN INDEX / FULL TEXT INDEXES,.,,, IOT- TOP AND LOB ARE THESE ARE THE CUISINES OF DOMAIN INDEX))
ALTER INDEX INDEX_NAME REBUID TABLESPACE TRY;
then need to MOVE LOB SEGMENT TO NEW TABLESPACE
the table_name , and column_name information can get from the user_lobs data dictionary table:
alter table table_name move lob(column_name) store as segment_name_unique ( tablespace try);
This command is generally used to move the segments of table from one tablespace to other tablespace, so
how to use this command:
ALTER TABLE TABLE_NAME MOVE TABLESPCE tablespace_name;
after this command indexes are become invalid, in that way we need to rebuild the indexes and at same we can change the segment of indexes
how to:
(MOVE INDEX TO TABLESPACE (NOT DOMAIN INDEX / FULL TEXT INDEXES,.,,, IOT- TOP AND LOB ARE THESE ARE THE CUISINES OF DOMAIN INDEX))
ALTER INDEX INDEX_NAME REBUID TABLESPACE TRY;
then need to MOVE LOB SEGMENT TO NEW TABLESPACE
the table_name , and column_name information can get from the user_lobs data dictionary table:
alter table table_name move lob(column_name) store as segment_name_unique ( tablespace try);
Domain index lob segment can moved by rebuild with replace parameters
ALTER INDEX DOMAIN_INDEX_NAME REBUILD PARAMETERS('REPLACE LEXER HYPHEN_LEXER STORAGE MYSTORE');
you may also like
for last command follow this post::
No comments:
Post a Comment