Hi All
I have two tables that both contain the same multiple field primary key which are related with a one to one relationship. Table1 receives a monthly update which may or may not have additional rows but needs to be synchronised with table2. In access if duplicate value/primary key violations occured during an append query the guilty rows were ignored so by turning off warnings the synchronisation of the two tables happened without any fuss. If I read into this correctly, if SQL server encounters any violations it suspends the query and does not append any rows. My question is what is the best way to synchronise two tables with table1 appending any rows that are not in table2 and ignoring one that are already there.
Thanks
I have two tables that both contain the same multiple field primary key which are related with a one to one relationship. Table1 receives a monthly update which may or may not have additional rows but needs to be synchronised with table2. In access if duplicate value/primary key violations occured during an append query the guilty rows were ignored so by turning off warnings the synchronisation of the two tables happened without any fuss. If I read into this correctly, if SQL server encounters any violations it suspends the query and does not append any rows. My question is what is the best way to synchronise two tables with table1 appending any rows that are not in table2 and ignoring one that are already there.
Thanks