Hi,
What is the best way to accomplish copying a table from Oracle to SQL Server? Currently I do something like this:
Truncate Table SQL_Server_Table
Drop Index blah.ix_blah
Insert into SQL_Server_Table
(blah,blah,blah)
Select * from OpenQuery('MyLinkedOracleServer',Select blah,blah,blah from Schema..OracleTable)
Is there a faster way? I'm not specifying a Where clause at all. The table has 5 million records in it.
Thanks,
Paul
What is the best way to accomplish copying a table from Oracle to SQL Server? Currently I do something like this:
Truncate Table SQL_Server_Table
Drop Index blah.ix_blah
Insert into SQL_Server_Table
(blah,blah,blah)
Select * from OpenQuery('MyLinkedOracleServer',Select blah,blah,blah from Schema..OracleTable)
Is there a faster way? I'm not specifying a Where clause at all. The table has 5 million records in it.
Thanks,
Paul