InterviewSolution
Saved Bookmarks
| 1. |
How Do You Move Tables From One Tablespace To Another Tablespace? |
|
Answer» There are several METHODS to do this;
CREATE TABLE temp_name TABLESPACE new_tablespace AS SELECT * FROM source_table; Then drop the original table and rename the temporary table as the original: DROP TABLE real_table;RENAME temp_name TO real_table. There are several methods to do this; CREATE TABLE temp_name TABLESPACE new_tablespace AS SELECT * FROM source_table; Then drop the original table and rename the temporary table as the original: |
|