Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

migrate database from SQL Server to Oracle 8i

Status
Not open for further replies.

gmennessier

Technical User
Jul 8, 2002
8
FR
Hello,

I want to import database from Oracle 8i.
It is actually a SQL Server database.
What must I do ?
 
exp from USER/PASS@INSTANCE FILE=filename.dmp FULL=Y
imp to USER/PASS@INSTANCE FILE=filename.dmp FULL=Y
 
exp fromUSER/PASS@INSTANCE FILE=filename.dmp FULL=Y
imp toUSER/PASS@INSTANCE FILE=filename.dmp FULL=Y
 
Apparently folks have missed a detail:
You cannot export from SqlServer with the Oracle EXP utility!

Look at for info about the Oracle Migration Assistant and/or
export your data, using SqlServer tools, as a delimited file and use Oracle's SqlLoader tool to load it
into your Oracle database-- This is much more difficult
since you need to precreate the structures and create the control files first..

Try the Migration assistant first...

[profile]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top