Data is being migrated from Table A to Table B.
Table A has 2 columns - an identity column and a column Content
defined as varbinary(max)
.
How can I validate that Table B has been loaded with correct data for Content
column? Is T_SQL's EXCEPT
operator good enough? Are there alternate methods?
Thanks