Home > front end >  Getting Error Installing SQL Server 2019 in Windows 11
Getting Error Installing SQL Server 2019 in Windows 11

Time:12-10

I am trying to install SQL Server 2019 in Windows 11. I am getting the following error for database engine and SQL Server Replication:

Detailed results:
  Feature:                       Database Engine Services
  Status:                        Failed
  Reason for failure:            An error occurred during the setup process of the feature.
  Next Step:                     Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
  Component name:                SQL Server Database Engine Services Instance Features
  Component error code:          0x851A001A
  Error description:             Wait on the Database Engine recovery handle failed. Check the SQL Server error log for potential causes.
  Error help link:               https://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft SQL Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=15.0.4013.40&EvtType=0xD15B4EB2@0x4BDAF9BA@1306@26&EvtType=0xD15B4EB2@0x4BDAF9BA@1306@26

  Feature:                       SQL Server Replication
  Status:                        Failed
  Reason for failure:            An error occurred for a dependency of the feature causing the setup process for the feature to fail.
  Next Step:                     Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
  Component name:                SQL Server Database Engine Services Instance Features
  Component error code:          0x851A001A
  Error description:             Wait on the Database Engine recovery handle failed. Check the SQL Server error log for potential causes.
  Error help link:               https://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft SQL Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=15.0.4013.40&EvtType=0xD15B4EB2@0x4BDAF9BA@1306@26&EvtType=0xD15B4EB2@0x4BDAF9BA@1306@26

  Feature:                       SQL Browser
  Status:                        Passed

  Feature:                       SQL Writer
  Status:                        Passed

Can someone help?

CodePudding user response:

SQL Server 2019 is not supported on Windows 11 at this time. This is documented, in SQL Server 2019: Hardware and software requirements - Operating system support by the omission of Windows 11. As a result any successful attempts to get it running on such an OS would likely be unsupported.

The "solution" is the use an operating system that is supported (see link above). You can either downgrade your install of Windows back to 10 or install afresh. Otherwise you could use a VM with a supported operating system or use a [Linux] container such as Docker (Windows Sub System for Linux (WSL) is not supported).

Hopefully support will be added, but it may well not be, and you'll have to wait for SQL Server 2022 some time next year.

  • Related