Core component of SQL Server for storing, processing, and securing data
There's no released version of SQL Server compatible with sector sizes greater than 4 KB. For more information, see the Hard disk drive sector-size support boundaries in SQL Server article.
SQL Server officially supports only 512-byte and 4,096-byte sector sizes. When Windows 11 reports the true physical sector size of certain modern NVMe drives (for example, 8 KB or 16 KB), SQL Server setup can fail with errors you're seeing.
This behavior occurs because newer Windows 11 NVMe drivers report the actual hardware sector size instead of emulating 4 KB as earlier Windows versions did. As a result, SQL Server detects an unsupported sector size and the Database Engine service fails to start during installation.
The supported workaround is to configure Windows to emulate a 4 KB physical sector size by adding the ForcedPhysicalSectorSizeInBytes registry key. This allows SQL Server to install and run successfully on drives that physically use sector sizes larger than 4 KB. You do not need to enable trace flag 1800 for this scenario.
To apply the workaround, add the following registry value and then reboot:
Path:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\stornvme\Parameters\Device
Create a new Multi-String value named:
ForcedPhysicalSectorSizeInBytes
Set its value to:
* 4095
After rebooting, Windows will emulate 4 KB sectors for the NVMe device, allowing SQL Server installation to complete successfully.
If multiple drives exist in the system, another option is to install SQL Server database files on a different drive that reports a supported sector size (512 or 4096 bytes when checked using fsutil fsinfo sectorinfo). If a storage pool was already created using disks with sector sizes larger than 4 KB, the pool must be removed, the registry change applied, and then the pool rebuilt before installing SQL Server.
If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.
hth
Marcin