본문 바로가기

MS SQL Server/Tips

SQL Server 원하는 누적업데이트(CU) 찾기


기존에는 누적업데이트를 적용할 때, SQL Server Builds에서 다운로드 하고자 하는 누적 업데이트(Cumulative Update, 이하 CU) 버전을 확인하고, 
해당 업데이트 KB문서에 링크된 Download Center URL을 통해 누적 업데이트를 다운로드 받았습니다.


그런데, 2016년 이후, SQL Server에 대한 Incremental Servicing Model (ISM)이 변경되면서,
CU 업데이트 관련 KB문서에는 Latest Cumulative Update에 대한 Download Center URL만 링크 되도록 변경 되었습니다.



- Announcing updates to the SQL Server Incremental Servicing Model (ISM)

  : https://blogs.msdn.microsoft.com/sqlreleaseservices/announcing-updates-to-the-sql-server-incremental-servicing-model-ism/ 

    .......
    Adding to the example, while an individual issue may have been originally addressed in ‘CU8’,
    CU KB’s will always point to the latest CU (on the download center)
    .......


위 링크된 ISM 변경사항관련 문서를 보면, 모든 CU 업데이트는 WSUS나 Windows Update Catalog에서 찾을수 있음을 알 수 있습니다.

  Additionally, all CUs are placed into the Windows Update Catalog, WSUS, and offered as an optional Microsoft Update to facilitate acquisition and distribution.


저의 경우, Windows Update Catalog를 사용하고 있으며, 다음과 같은 방법으로 원하는 버전의 누적 업데이트를 찾고 있습니다.



1. 다운로드하고자 하는 CU업데이트의 주소를 통해, CU업데이트의 KB번호를 확인

   


2. Microsoft Update Catalog에서, 위에서 찾은 KB번호를 검색

   : https://www.catalog.update.microsoft.com/Home.aspx  

   


3. 목록에서 원하는 업데이트를 찾아 다운로드

   



감사합니다.


넥슨 GameDB팀 / 차태욱