Move a table from one tablespace to another

Move a table from one tablespace to another

瀏覽:1383
日期:2025-04-26
There are many ways to move a table from one tablespace to another. For example, you can create a duplicate table with dup_tab as select * from original_tab; drop the original table and rename the duplicate table as the original one. The second option is ...看更多