• Create a snapshot of the database in question at 00:00

    CREATE DATABASE dbnamesnapshot ON (......) AS SNAPSHOT OF dbname

    http://msdn.microsoft.com/en-us/library/ms175876.aspx

    That way the data is static and you can then query the tables as no data changes can happen to a snapshot as it is a read only copy as of the moment the snapshot completes.