
Tutorial – Limpiar o reducir el log ldf Sql Server
PARA SQL SERVER 2008 USE miBaseDeDatos; GO — cambiamos el recovery a nodo simple ALTER DATABASE miBaseDeDatos SET RECOVERY SIMPLE; GO — reducirmos el archivo log a 1 MB. DBCC SHRINKFILE (miBaseDeDatos_Log, 1); GO –… Tutorial – Limpiar o reducir el log ldf Sql Server


