Nimmt das Transaktionslog des SharePoint (SharePoint_Config_xyz_log.LDF) eine unmögliche Größe an, kann es so verkleinert werden:
start -> ausführen -> cmd
> cd C:\Programme\Microsoft SQL Server\90\Tools\Binn
> osql -S .\microsoft##ssee -E
backup log [SharePoint_Config_xyz] to disk=“d:\backup\logBackup.bak“
go
backup log [SharePoint_Config_xyz] with truncate_only
use [SharePoint_Config_xyz]
go
dbcc shrinkfile (N’SharePoint_Config_xyz_log’, 64)
go