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'
'Database > SQL Server' 카테고리의 다른 글
SQL 에이전트 작업 삭제 오류 ( 유지관리계획 삭제 오류 ) DELETE 문이 REFERENCE 제약 조건 “FK_subplan_job_id”과(와) 충돌했습니다. Microsoft SQL Server, 오류: 547 (0) | 2021.01.27 |
---|---|
SQL Server 쿼리가 느려졌을 때 (0) | 2021.01.20 |
DB Backup Script (0) | 2021.01.20 |
free SSMS add-in for effective database performance tracing (0) | 2021.01.20 |
Tempdb 최적화 – tempdb 데이터파일 제거하기 (0) | 2020.10.27 |