There is something weird going on with one of my servers. Seems like someone is changing the auto growth setting on my databases. Is there any way to audit this to see who is doing it
You can create a server side trace, capture event class SQL:BatchCompleted, column filter on TextData like 'Alter Database%' to look for any changes to the database or or '%Modify file%, for just file property changes.
Sue