From the Coalface - 3 - Work as hard as you can to be as lazy as you can!
- by TATWORTH
The saga of the Change Log
A recent conversation reminded me of the need for change logs within a database, to record when various change scripts were run. Creating such the required table is simple. A typical table for this consists of:
Id - identity Integer primary key
ChangeFileName - NVARCHAR(128) to hold the name of the file run.
…