I have 2 places with the data: SQL Server and Oracle.
I can connect to both of them, Select the SQL Server data and insert record by record into Oracle. But this is slow, too many records.
Is there a way to do:
Insert Into MyOracleTable (Field1, Field2, Field3, ...)
Values (Select FieldA, FieldB, FieldC, ... from SQLServerTable)
I can connect to both of them, Select the SQL Server data and insert record by record into Oracle. But this is slow, too many records.
Is there a way to do:
Insert Into MyOracleTable (Field1, Field2, Field3, ...)
Values (Select FieldA, FieldB, FieldC, ... from SQLServerTable)