SQL Server 2019 Installation Error : 0x851a0019

Jashobanta Chakraborty 1 Reputation point
2021-06-23T14:51:12.447+00:00

I am trying to Install SQL Server 2019 Developer Edition in my personal laptop for some training purposes. But during installation, I keep getting the 0x851a0019 Could Not Find Database Engine Startup Handle error.

I have tried changing the SQL Server Database Services' account name to NT Authority/System as mentioned in the below Microsoft Blog, followed all the steps, but I still keep getting the same error. What additional steps do I need to do to make sure it installs fine?

108559-summary-jashobanta-hewlett-20210623-194757.txt

SQL Server Other
{count} votes

3 answers

Sort by: Most helpful
  1. Erland Sommarskog 121.4K Reputation points MVP Volunteer Moderator
    2021-06-24T21:08:32.017+00:00

    The problem is that the paths for the resource database and model are incorrect. They look like the paths from some build server in Redmond.

    I note that you have select a non-default location for your installation. I can't say whether this is the reason, but you could try a new install with a default location.

    1 person found this answer helpful.

  2. Seeya Xi-MSFT 16,586 Reputation points
    2021-06-24T03:39:33.31+00:00

    Hi @Jashobanta Chakraborty ,

    You can also try to uninstall SQL Server and reinstall it.
    And before reinstall, please follow the below steps to remove all components of previous installed SQL Server completely:

    1. Remove all SQL Server components from 'Programs and Features'
    2. Backup the registry
    3. Delete the following keys in regedit:
      --HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server
      --HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer
    4. Go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall and delete all the sub-keys referencing SQL Server
    5. Go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services and delete all the keys referencing SQL Server
    6. Reboot the machine
      Then right click on Setup.exe and select run as administrator.
      When you reach Server Configuration page where you select Service account please select Local System account(NT AUTHORITY\SYSTEM). After the installation is successful, you can choose another account to log in.

    Best regards,
    Seeya


    If the response is helpful, please click "Accept Answer" and upvote it, as this could help other community members looking for similar queries.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


  3. Serkan Özden 0 Reputation points
    2024-08-02T12:40:53.4433333+00:00

    Hi uninstall after,

    try this https://learn.microsoft.com/en-us/troubleshoot/sql/database-engine/database-file-operations/troubleshoot-os-4kb-disk-sector-size

    Add Key on PowerShell,

    New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\stornvme\Parameters\Device" -Name   "ForcedPhysicalSectorSizeInBytes" -PropertyType MultiString        -Force -Value "* 4095"
    
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.