How to DELETE Records from Target Database in SSIS -
same database exist on 2 servers. call them source , destination simplicity here. need compare records , delete exist in target not in source. can't use execute sql both databases exist on different servers , there no link between them. can propose solution?
you populate table on target ids source table. use execute sql task on destination database delete rows target table not exist in table populated. eg, like:
delete targettable id not in (select id tableidsfromdestination)