SQL Server 데이터베이스 복구 및 복구 시간은 어떻게 찾습니까?
간단한 질의를 통해 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%'
자료 출처:SQL Server 데이터베이스 복구 및 복구 시간 확인 방법작성자: Ganesh Chandrasekaran | 2020년 9월 | 중국
가니시 첸드라 세카란・ 2020년 9월 8일・ 1분 읽기 중등적
Reference
이 문제에 관하여(SQL Server 데이터베이스 복구 및 복구 시간은 어떻게 찾습니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/gchandra/how-to-find-sql-server-database-restore-and-recovery-time-1ihh텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)