This is for MS SQL.
Seeing that the table is so small you make the best use of the Snapshot functionality provided by MS SQL.
Take a database snapshot:
CREATE DATABASE YourDB_Snapshot_DateStamp ON ( NAME = YourDB_Data, FILENAME = 'C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Data\YourDB_Snapshot_DateStamp.ss' ) AS SNAPSHOT OF YourDB; GO
See this page for reference: http://msdn.microsoft.com/en-us/library/ms175876.aspx
You can take as many pictures as you want. So my advice is to create a script or task that creates a daily snapshot and adds a date to the name of the snapshot. Thus, all your pictures will be visible on your server.
Important to note: snapshots are read-only.
Charl
source share