Best way to get the data from oracle to SQL server for the below scenario using SSIS.
Table A -Oracle
Table B –SQL server
Select * from A
Where a.col1 in (select b.col1 from B)
Oracle table has 5crore+ records and SQL server table has around 50 records
The result excepted is around 35 to 40 records (or max 100).
I have read only access on oracle server.
Thanks in advance