vote up 0 vote down star

HI all Can you tell how to import data from oracle 10g to Oracle 9i. Is it ok i can export the data from Oracle 10g and import it to 9i directly, it should work??? or i need to follow some other procedure???

Kindly help me Thanks in advance Joseph

flag

40% accept rate

3 Answers

vote up 4 vote down check

Exp and Imp are the best way to go for a single data move. I would second the suggestion of database links if you need to have continuous access to the data.

One problem is the files produced by imp and exp are not backwardly compatible. That is if you use the 10g version of exp to create a dump file, you can't use the 9i version of imp to import the data.

In this case you need to use the 9i version of exp, connected to the 10g database, then use the 9i version of imp to import the data.

link|flag
vote up 0 vote down

You can also create a database link between the databases. exp / imp is faster but a database link makes it possible to do continuous export / import.

link|flag
Thanks Buddy, il check your suggetion – Joseph Mar 26 at 9:42
vote up 1 vote down

You should be able to do the export using the usual exp / imp commands to perform the transfer.

http://wiki.oracle.com/page/Oracle+export+and+import

link|flag
Thanks Buddy, il check the details – Joseph Mar 26 at 9:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.