I've some tables that shouln't be modified after some final steps in a process.
To validate that it wasn't made any modifications (after the final state) I'm thinking about making an hash of all the columns. So, for each row I:
- Make a varchar will all the columns (other data types are converted);
- Save the hash result
In the future, to validate, I simply do the hash again and compare with the result obtained previously.
Is there a better way to do it?
If not, when converting the other data types to varchar, should I use convert(varchar, ...) or depending on the type of the data should I define a length to the varchar?