SQL Server 데이터베이스 복구 및 복구 시간은 어떻게 찾습니까?

1293 단어 sqldatabase
복구 및 복구 시간을 쉽게 결정할 수 있습니다.
간단한 질의를 통해 SQL Server 데이터베이스 복구 시간 및 완료율을 확인합니다.

SELECT 
 percent_complete as percentageComplete
 ,estimated_completion_time/60000 as timeToComplete
 ,status 
FROM
 sys.dm_exec_requests 
WHERE
 command like '%restore%'

SQL Server 데이터베이스 복구 시간 및 완료율에 대한 간단한 조회

SELECT
 percent_complete as percentageComplete
 ,estimated_completion_time/60000 as timeToComplete
 ,status
FROM
 sys.dm_exec_requests 
WHERE
 command like '%recovery%'

자료 출처:

좋은 웹페이지 즐겨찾기