Oui, vous devriez consulter l'excellent livre blanc sur ce sujet bien qu'il se réfère à la reconstruction d'index en ligne, il contient toujours beaucoup de bonnes informations
http://technet.microsoft.com/en-us/library/cc966402.aspx
Si les fichiers journaux augmentent automatiquement, vous pouvez trouver ces informations à l'aide de la trace par défaut une fois l'action terminée.
DECLARE @filename VARCHAR(255)
SELECT @FileName = SUBSTRING(path, 0, LEN(path)-CHARINDEX('\', REVERSE(path))+1) + '\Log.trc'
FROM sys.traces
WHERE is_default = 1;
--Check if the data and log files auto-growed. Look for tempdb, log files etc.
SELECT
gt.ServerName
, gt.DatabaseName
, gt.TextData
, gt.StartTime
, gt.Success
, gt.HostName
, gt.NTUserName
, gt.NTDomainName
, gt.ApplicationName
, gt.LoginName
FROM [fn_trace_gettable](@filename, DEFAULT) gt
JOIN sys.trace_events te ON gt.EventClass = te.trace_event_id
WHERE EventClass in ( 92, 93 ) --'Data File Auto Grow', 'Log File Auto Grow'
ORDER BY StartTime;
--