Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Loading data from SQL server to Oracle database

745530Apr 15 2010 — edited Apr 16 2010
i want to create one table in oracle db from table in sql server. Table is huge it got 97,456,789 records.
I created db link (HS) in oracle database which is pointing to sql server. i can select that table from oracle thru db link.

select * from "dbo"."t1@dblink;

i fired below create table.
create table t2 nologging parallel (degree=3) as select * from "dbo"."t1@dblink;
and its taking long time.... but its running...

is there any alternate method to do this and and populate table in oracle db faster.

Please advise. thanks.
This post has been answered by Billy Verreynne on Apr 16 2010
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 14 2010
Added on Apr 15 2010
4 comments
1,375 views