Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Move Oracle Tables
Message
De
14/03/2001 02:59:10
 
 
À
13/03/2001 12:32:37
Information générale
Forum:
Oracle
Catégorie:
Autre
Divers
Thread ID:
00484502
Message ID:
00484749
Vues:
11
>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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform