• Look at the STOPAT clause of the restore command.

    So restore the full backup with NORECOVERY, then restore the log with STOPAT and RECOVERY

    RESTORE DATABASE ...... FROM DISK = '...............' WITH NORECOVERY

    GO

    RESTORE LOG ........... FROM DISK = '...........' WITH STOPAT '2012-02-12 20:00', RECOVERY

    GO