Posted on Leave a comment

The arts teach more than your standardized tests

Tennessee. Haslam. McIntyre. Knox County School Board. This video is for you.

Yo! Knox County Schools…how about stepping up and doing stuff like this with our students? Lessons? How about hand/eye coordination, team work, rhythm, did I mention team work?, leadership, technical production, composition, self-confidence, and most of all, accomplishment. Did you know that there is a mathematical side to music? And poetry (literature) in the lyrics? I’m sure I missed some.

Do you get any of that out of a standardized test?

Posted on Leave a comment

Calling SQL gurus – Is there a way to programmaticly prove data accuracy?

Say I have an existing MS SQL database with many tables. Now I’m going to import many more records. From a quality assurance standpoint, I’d like to be able to confirm that the existing data prior to the import was not inadvertently altered during the import of the new data (since the import includes some manipulation of the new data).

Is there a magical way to do this. I’m stuck on comparing record counts but that does really tell me if the existing data was altered during the import process.

Conceptually, I’d like to be able to essentially do something like a hash of the complete dataset before the import. Then after the import, query for all the old records, rehash and compare the two hashes.

Thoughts?