I was wandering if we could append to a file, with low latency (less than 5 seconds) DML statement to be able to redo logs after restoring a database from a previous backup.
I'm working indeed on a small database and need to catch all DML statements: a maximum of 10 000 statements in one hour (30 tables).
We've just find a way to write to a file all DML statements (from SQLServer2008R2 Express), as the profiler does (SQLServer Standard trace feature). Then parsing this file to prepare a SQL script could enable us to "redo logs" since last backUp.
Hope this could work. Anyone has experienced with this kind of stuff?
JNB