As I have found to my cost when you have a database with long columns forget
about 90% of Oracle newer functionality.
Sqlplus copy is the best workaround (other than exp/imp)


Here is a example script

set long 4000
set array 5000
copy from user/password@xxxx to user/password@xxxx - 
insert complex_20m_nopk using select * from complex_nopk;
commit;

HTH

John



-----Original Message-----
Sent: 17 January 2003 07:34
To: Multiple recipients of list ORACLE-L


Hi

I need to move some tables from one tablespace to another. I started doing
it using 

alter table tablename move tablespace new_tablespace;

this is working fine!!. My problem is it's not working with the table which
are having long columns.

I know work arround for this  exp.. drop and create .. then imp.

There is any other way round for this..

thanks in advance

Banarasi Babu
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: BanarasiBabu Tippa
  INET: [EMAIL PROTECTED]

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: <[EMAIL PROTECTED]
  INET: [EMAIL PROTECTED]

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

Reply via email to