• You might be able to get the information from the default trace:

    DECLARE @tracefile nvarchar(1000)

    SELECT @tracefile = CAST(value AS NVARCHAR(1000)) FROM ::fn_trace_getinfo(0) where traceid = 1 and property = 2;

    PRINT @tracefile

    SELECTgt.HostName,

    gt.ApplicationName,

    gt.LoginName,

    gt.Duration/1000 AS [Duration (ms)],

    gt.StartTime,

    gt.DatabaseName,

    gt.[FileName],

    gt.IsSystem,

    te.name,

    CAST(gt.IntegerData*8 AS FLOAT)/1024 AS [MB Growth]

    FROM fn_trace_gettable(@tracefile, default) gt

    INNER JOIN sys.trace_events te ON te.trace_event_id = gt.eventclass

    WHERE te.category_id = 2

    ORDER BY gt.StartTime DESC

    GO