|
Jay,
I too had problems with non-truncating log files, but in SQL7.
I ploughed through reams of stuff in BOL and MSDN, but the crux was
issue DBCC shrinkfile,
then do a backup log truncate only
e.g.:
DBCC shrinkfile ( <log file name>, <size to shrink to in mb> )
go
backup log <DB Name> with truncate_only
go
so for my instance:
DBCC shrinkfile ( Tracker_Log, 1000 )
go
backup log Tracker with truncate_only
go
It may not show staright away as this only marks it for truncation,
and it can not truncate whilst any part of the file is active,
but as soon as it can shrink it should do.
Cheers sduggan...
|