Create a SSIS Package - To Copy data from Oracle to SQL Server
You should use Lookup to join the common column( same data type) of SQL server and Oracle and retrieve the values from Oracle which does not have a matching record in SQL server. Design 1.Using SSIS 2005 Drag a OleDB Source and point to your Oracle Database and select the table . Drag a lookup and select the SQL Server connection and point to its table . In columns tab join the common column and select the columns in the right hand side which you need to retrieve . Click on Configure Error output and select redirect row for the join column . Drag a Oledb Command and connect it to the error output from the lookup. 6.Write an insert statement in Oledb Command 2.If you are using SSIS 2008 then no need to configure the Error Output in lookup .Just drag the no match output from Lookup to SQL Server destination. Note: The same question I have asked in the http://stackoverflow.com and I got this response some years back and that helped me to solve my P...