Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Moving a table to another tablespace
Create a new table with a new name with same column names in the required tablespace .Now use copy from command to copy.
SQL> create table le2
(c1 number, c2 long); SQL> copy from scott/tiger_at_otcsol1_v734 to scott/tiger_at_otcsol1_v734 -
> append le2 -
> using select * from le;
![]() |
![]() |