일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 터키여행
- Windows Server 2016
- LiveKD
- Session space
- 프로세스 CPU 사용량
- nonpaged pool
- Windows Server 2016 Hyper-v Cluster
- 작업관리자
- iSCSI target
- Local TempDB
- Nested VM
- windows update
- paged pool
- cluster node as Domain controller
- dsquery
- FTP7.5
- SQL Server 2008
- Xperf
- ftp7.5 장애조치 클러스터
- windows debugging tool
- 클러스터
- Hyper-V
- MSCS on VMWare
- 인문고전
- windows media service
- Windows Server 2008
- 안철수
- windbg
- SQL Server 2012R2 FCI
- failover cluster
Archives
- Today
- Total
류짱:Beyond MySelf
MS SQL Server 로그 백업 및 축소 본문
DBCC SHRINKFILE
http://msdn.microsoft.com/ko-kr/library/ms189493.aspx
트랜잭션 로그를 백업 후 shrink를 실행 했는데도 로그 파일의 크기가 줄어 들지 않는다면.....
sp_helpdb '데이터베이스 이름'
dbcc sqlperf(logspace)
SELECT name ,size/128.0 - CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0 AS AvailableSpaceInMB
FROM sys.database_files;
select * from sys.databases 실행 후 Log_reuse_wait_desc 값을 확인 후 만약 Log_bakcup 상태일 경우
다시 한번 로그 백업을 실행 한 후 shrink를 하면 사이즈가 줄어 듬.
dbcc opentran 명령어를 실행해서 열려 있는 활성 transaction이 있는지도 확인 해 야 함.
[참고 자료]
sys.databases
http://msdn.microsoft.com/en-us/library/ms178534.aspx
Factors That Can Delay Log Truncation
http://msdn.microsoft.com/en-us/library/ms345414.aspx
감사합니다.