Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Move Oracle Tables
Message
From
14/03/2001 02:59:10
 
 
To
13/03/2001 12:32:37
General information
Forum:
Oracle
Category:
Other
Miscellaneous
Thread ID:
00484502
Message ID:
00484749
Views:
12
>I want a way out to move a set of tables in oracle from one user to another user. i have had a tough time getting around it.

Use the export and import command line utilities.
exp and imp

First use exp to get the rows in a dmp file.
Then use
imp fromuser=? touser=?
To get the rows in.

Or you can use the syntax:
CREATE TABLE NEWUSER.TABLE1 as select * from olduser.table1;
DROP TABLE olduser.table1;
...
...
...


HTH
Previous
Reply
Map
View

Click here to load this message in the networking platform