Loading data from SQL server to Oracle database
745530Apr 15 2010 — edited Apr 16 2010i 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.