Title says it all really.

I've got a database running on a clients SQL Server 2000 box where the transaction log file is only 1MB in size. This seems very perculiar.

I can't find any Database Maintenance Plan or individual SQL agent job that is explicitly shrinking it so I'm not sure how to find out when it has happened.

Is there a system table or view that I could use to find out when the last shrink operation on transaction log was done?

link|improve this question

79% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You should be able to determine this from the "last modified" time on the "ldf" file (unless it has autogrown in the interim - which seems unlikely as it is still only 1MB)

Does the database have logged activity happening? Is the autoshrink database option turned on? (You wouldn't see a SQL agent job if that was the case a background task performs these shrink operations). This setting is extremely unrecommended

link|improve this answer
I guess I'm trying to determine what is doing the shrinking so the last modified date is not that helpful I really want to know what is doing it. I'll check out the auto-shrink option hadn't thought of that. – Peter Mar 21 '11 at 8:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.