Hi ,
I have written a Join in T-SQl, how do we do that in SSIS using merge join:
TSQL:
SELECT s.HostName FROM Sourcetable s WITH (NOLOCK) LEFT JOIN Networktable n WITH(NOLOCK) On s.IPAddress_Integer > NetworkIP_Integer AND s.Ipaddress_Integer < BroadcastIP_Integer
I want to represent this in SSIS Package, now how do we use '>' and '<' in Merge join, please help.
Thanks,