In SQL Server 2012 or greater, what is the best “free or almost free” way to copy the data from a set of tables to another where you can overwrite all the destination data but relationships are present so the copy needs to occur in a specific order?
SSIS does not seem to have a way to accomplish this where it could figure out the relationships in the data and delete/copy the data in the correct order when FKs and relationships are present?
Basically I’m trying to copy the data for Table A, B, C, D, E, etc. which may be related to each other and say take all the data from the source and try to overwrite and delete the data in the destination.