mssql express 사용시 Ms sql ldf log 용량이 커 쿼리가 안먹는 경우가 발생 할 수 있습니다.
이때 다음 명령어로 해결
디비 용량 확인
1 2 3 |
EXEC sp_helpfile |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
USE [DSR] GO -- Truncate the log by changing the database recovery model to SIMPLE. ALTER DATABASE [DSR] SET RECOVERY SIMPLE; GO -- Shrink the truncated log file to 1 MB. DBCC SHRINKFILE ([DSR_Log], 1); GO -- Reset the database recovery model. ALTER DATABASE [DSR] SET RECOVERY FULL; GO |