Check sum..

  • I have a functionality, which splits my existing table into two and creates a new table.

    Once this operation is over, i transfer the data across to the new table from the old table.

    How can i make sure..that the data transfered between the two tables are correct..Please do send me if you have any generic way to check the same.

  • This was removed by the editor as SPAM

  • I suppose that you could run a series of aggregate functions and the rows that you will be moving in the original table, then carry out the same functions on the rows once they have been moved, and then compare the results. They should be same. Not sure if this helps that much.

  • quote:


    I suppose that you could run a series of aggregate functions and the rows that you will be moving in the original table, then carry out the same functions on the rows once they have been moved, and then compare the results. They should be same. Not sure if this helps that much.


    Thanks for the suggestion, that aggreation function you have specified, that part i'am using Check sum function to get the result. of old and new table. It is working fine.

  • quote:


    I suppose that you could run a series of aggregate functions and the rows that you will be moving in the original table, then carry out the same functions on the rows once they have been moved, and then compare the results. They should be same. Not sure if this helps that much.


    Thanks for the suggestion, that aggreation function you have specified, that part i'am using Check sum function to get the result. of old and new table. It is working fine.

  • Actually depending on how you move your data the process will generally throw errors if the data is corrupted or cannot be moved. You may just need to look for an error.

Viewing 6 posts - 1 through 5 (of 5 total)

You must be logged in to reply to this topic. Login to reply