• ScottPletcher (1/28/2013)


    SQL will tell you if/why it won't shrink the log:

    SELECT log_reuse_wait_desc, * --col name may be a little off, from memory, but it's at least close

    FROM sys.databases

    WHERE name = 'yourDbName'

    Thanks, didn't know about that column, however it brings back the value 'NOTHING' when queried.

    Could this be anything to do with local resources such as disk space or disk fragmentation? If I restore this database to

    my local instance and back it up, the resultant .bkp file is a quarter of the size of the backup on the server.