본문 바로가기
Developer/Troubleshooting

MSSQL Database cannot be opened. It is in the middle of a restore.

by 아우럼 2024. 9. 7.
반응형

MSSQL database 백업 및 복원 작업 시 복원 중 상태일 때 해결 방법입니다.

 

It is in the middle of a restore 원인

  • 백업할 때 전체 백업, 증분 백업, 로그 백업한 후 복원할 때 반대의 순서대로 복원 못 하는 경우 발생합니다.
  • 백업할 때 WITH NORECOVERY 옵션을 사용해서 같은 백업 파일로 계속 실행 시 발생합니다.

database error message

Msg 927, Level 14, State 2, Line 16
Database 'aurumGuideDB' cannot be opened. It is in the middle of a restore.
Msg 3013, Level 16, State 1, Line 16
BACKUP LOG is terminating abnormaly.

It is in the middle of a restore.
It is in the middle of a restore.

It is in the middle of a restore 해결 방법

  • 해결 방법은 무척 간단합니다.
  • RECOVERY 다시 복원하면 해결됩니다.
  • RESTORE DATABASE <database name> WITH RECOVERY
RESTORE DATABASE [aurumGuideDB] WITH RECOVERY
반응형