Based on the specifications you provided, the Intel® Core™ i7-1065G7 processor in your Surface Laptop 3 has a base frequency of 1.3 GHz and a maximum turbo frequency of 3.9 GHz. The official requirements for SQL Server 2019 indicate a minimum of 1.4 GHz for the processor. The key point to note here is that the SQL Server installation checks the base frequency, not the turbo frequency.
Confirming Compatibility
- Base Frequency:
- The base frequency of 1.3 GHz is below the SQL Server 2019 minimum requirement of 1.4 GHz. Technically, this means the processor does not meet the minimum base frequency requirement specified by SQL Server 2019.
- Turbo Frequency:
- The turbo frequency of 3.9 GHz far exceeds the requirement, but SQL Server's installation program does not consider the turbo frequency for initial qualification checks.
Steps to Proceed with Installation
Given that your processor does not meet the minimum base frequency requirement on paper, there are still a few approaches you can take:
- Ignore the Warning (if possible):
- Some installation prompts allow you to proceed despite warnings. Check if the SQL Server installation gives you the option to continue after showing the warning. If it does, you can proceed with the installation.
- Install SQL Server using Command Line:
- Use the command line to bypass the hardware check. Here's how you can do it:
- Open Command Prompt as an administrator.
- Navigate to the SQL Server setup directory.
- Run the setup with the
/ACTION=Install
parameter and other necessary configuration parameters. For example:setup.exe /ACTION=Install /SKIPRULES=RebootRequiredCheck /INDICATEPROGRESS /QS
- The
/SKIPRULES
parameter can help bypass certain checks, but you should replaceRebootRequiredCheck
with the appropriate rule name if it's different for your scenario.
- Use the command line to bypass the hardware check. Here's how you can do it:
- Modify BIOS Settings:
- Check if there is an option in the BIOS to disable any power-saving features that may cause the CPU to run below its base frequency. Ensure the processor runs at its base frequency during installation.
- Contact Microsoft Support:
- If you are unable to proceed, contact Microsoft Support for assistance. They may have updated guidelines or workarounds for installing SQL Server on processors with similar specifications.
Ensuring Installation Recognition
- Update System Firmware and Drivers:
- Ensure that your Surface Laptop 3 is running the latest firmware and drivers. Sometimes, updates can address compatibility issues.
- Run Performance Tests:
- Use tools like CPU-Z to check if your processor is performing as expected and not being throttled by power-saving features.
- System Power Settings:
- Adjust the power settings to
High Performance
in Windows to ensure the CPU is not downclocked during the installation process.
- Adjust the power settings to
While your processor's base frequency technically does not meet the minimum requirement, its high turbo frequency suggests it is more than capable of handling SQL Server 2019. If possible, proceed with the installation by acknowledging the warning, using the command line to bypass checks, or ensuring your system settings do not throttle the CPU. If these steps do not resolve the issue, reaching out to Microsoft Support would be the next best step.