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:

  1. Make a varchar will all the columns (other data types are converted);
  2. 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?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Personally if I were taking that approach I'd use a timestamp field instead of a hash. That will automatically update any time anything happens to the row and is a whole easier than what your describing.

The verification approach would be similar to what you describe in your question. To make auditing easy you could use a trigger to store the timestamp value off to another table.

Or... speaking of triggers. If your true intent is to block updates entirely you could use a trigger to cancel the update entirely (unless it meets specific requirements that you set).

This is all assuming you have a reason for not just locking down the rights on the table by revoking update / delete rights to all users. (which would be the easiest of all).

link|improve this answer
humm, how does the validation work? do I need to put the timestamp field in another table and afterwards compare both? Or is there another way? – aF. Dec 16 '11 at 0:07
I guess I figured you'd use the same approach you planned on using for your hash value, but sure if you wanted you could write a trigger to save the timestamp value off to a "audit" table and then check against that. – RThomas Dec 16 '11 at 1:10
For that matter, if you were really serious about keeping rows from being changed you could write a trigger that would cancel anything that tried to change the row. – RThomas Dec 16 '11 at 1:12
update your answer, put the audit table in the timestamp part and talk about the trigger option. I'll accept it afterwards (say something here) – aF. Dec 16 '11 at 9:14
it's done, thanks m8 :) – aF. Dec 16 '11 at 17:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.