I am doing migration to move data from Ms SQL Server 2000 to Oracle 11g on HP Server machine. I don't know why it is very slow when I load data from file xxx.dat into table in oracle 11g.
Do anyone help me to solve my problem?
Thank, Ung Sopolin
I am doing migration to move data from Ms SQL Server 2000 to Oracle 11g on HP Server machine. I don't know why it is very slow when I load data from file xxx.dat into table in oracle 11g.
Do anyone help me to solve my problem?
Thank, Ung Sopolin
You might want to consider using the NOLOGGING clause when inserting bulk data from files.
This would turn off logging of DML and DDL actions on the specified table or tablespace. What this basically means is your inserts won't write to the redo logs, which should speed up the whole process. Don't forget to later turn redo logging back on using
Yes it is slow. You might want to use an SQL Migration tool one way or the other.
If the two Oracle machines are similar in hardware specification I'd suggest looking at the built in Enterprise Manager website site (DBCONSOLE) that should be part of each 11g instance.
There should be a "Performance" tab that will give you a good idea of what is causing the performance difference between the two databases.