Edition Upgrade
Standard Edition 에서 Deveploer Edition의 경우 Edition Upgrade 기능으로 Upgrade가 되지 않는다. Developer Edition이 Standard Edition보다 아래 단계라고 인식하는 것으로 보인다.
그래서 Downgrade 방법을 찾게 되었습니다.
참고한 블로그는 아래와 같습니다.
https://www.mssqltips.com/sqlservertip/6686/edition-upgrade-and-downgrade-in-sql-server/
Edition Upgrade and Downgrade in SQL Server
In this article we walk through the steps to upgrade or downgrade the edition of SQL Server for existing installation.
www.mssqltips.com
Edition Downgrade
테스트 환경 구성을 위해 MS SQL 2016 Standard Edition을 설치하고 몇가지 항목들을 생성하여 Downgrade 이후에 동일하게 구성되었는지를 확인한다.
Restore masterdb
싱글모드 실행해야 합니다.
sqlservr.exe -m
master db 복원 시에 기존 standard edition 버전과 developer edition의 버전이 같아야 하므로 반드시 맞춰서 작업을 진행해야 합니다.
Restore msdb
RESTORE database msdb FROM DISK = N'E:\MSDB_Backup.Bak'
GO
https://www.mssqltips.com/sqlservertip/2571/restoring-sql-server-system-databases-msdb-and-model/
Restoring SQL Server system databases msdb and model
Due to a recent rebuild of the master database for a SQL Server instance, I now need to restore the msdb and model databases. In this tip we walk through the process that you need to follow to restore the model and msdb databases successfully.
www.mssqltips.com
'MSSQL' 카테고리의 다른 글
MSSQL : Windows Server 클러스터에 SQL Server 설치할 때 오류 메시지 (0) | 2024.05.17 |
---|---|
MSSQL : " install_conn_info_Cpu64_Action " (0) | 2024.03.15 |
MSSQL : 데이터베이스 백업 기록 조회 (1) | 2024.02.15 |
MSSQL : 다른 Edition 에서 제한되는 기능 찾기 (0) | 2024.02.14 |
MSSQL : 압축, 병렬, 온라인 인덱스를 활용하여 인덱스 생성 (0) | 2024.02.14 |