I have source table with 399 columns in SQL Server 2008 R2.
I want to add one more column with hashbyte on above table and store on the database which is SQL Server 2016 using SSIS package.
PS - I can't ask source owner to upgrade his/her SQL Server to 2016 hence could not use SHA2_256. also few points are : 1. There are couple of tables having more than 200 columns, and one is having exact 399 columns. 2. I had use MD5 algorithm, but I read MD5 might give you deprecated value in SQL 2016. Hence it is advisable to use only SHA2_256 or SHA2_512. 3. About the code, its simple truncate and load into destination tables with some transformations. 4. I am using HASH to identify entire row for update or insert as CHECKSUM is not reliable.