SQL Server 백업/복원 예상 완료시간 확인하기 본문
반응형
대용량 데이터베이스를 백업 및 복원할 때, 아래 쿼리를 실행하면 예상 완료시간을 확인할 수 있습니다.
SELECT
session_id,
start_time,
status,
command,
percent_complete,
estimated_completion_time,
estimated_completion_time /60/1000 as estimate_completion_minutes,
--(select convert(varchar(5),getdate(),8)),
DATEADD(n,(estimated_completion_time /60/1000),GETDATE()) as estimated_completion_time
FROM sys.dm_exec_requests where command = 'BACKUP DATABASE' OR command = 'RESTORE DATABASE'
반응형
'SQL Server > SQL Server 운영' 카테고리의 다른 글
SQL Server에서 다른 DB 서버에 연결하는 방법 (0) | 2024.02.09 |
---|---|
SQL Server 인스턴스 콜레이션 변경할 때 (0) | 2021.01.15 |
SQL Server 대용량 테이블 인덱스 생성 진행경과 확인하기 (0) | 2021.01.14 |
SQL Server 쿼리가 느려졌을 때 (0) | 2021.01.14 |
SQL Server 데이터 Data Compression (0) | 2019.10.28 |
Comments