Hi @Michael Antes ,Thank you for reaching out to the Microsoft Q & A Forum.
The error "Stack Overflow Dump not possible - Exception c00000fd EXCEPTION_STACK_OVERFLOW at 0x5E60DCAD" indicates that SQL Server encountered a stack overflow during the startup process, specifically while trying to start the master database.
Please try below steps to fix the issue.
- Check for corruption in master Database, Try to start SQL Server in single-user mode with below configuration.
sqlservr.exe -f -m -T3608
Note: This bypasses startup procedures and may allow you to access the instance.
If it starts and then run below command.
DBCC CHECKDB('master') WITH NO_INFOMSGS, ALL_ERRORMSGS;
- Restore master from Backup, If corruption is occur, Restore master.mdf and mastlog.ldf from a backup. Replace the files in below path.
C:\Program Files (x86)\Microsoft SQL Server\MSSQL12.SQLEXPRESSWTS\MSSQL\DATA\
- Look for any third-party SQL Server extensions or DLLs that might be loaded during startup. Disable or remove them temporarily to see if SQL Server starts.
- If the issue is due to corrupted binaries, Repair the SQL Server installation via Control Panel --> Programs --> SQL Server --> Change -->Repair Or uninstall and reinstall SQL Server 2014.
- If SQL Server 2014 is not supported on Windows 11. upgrade to SQL Server 2019 or later, which is compatible with Windows 11.
- Check that .NET Framework 4.0.30319 is properly installed and not corrupted.
I hope this information helps. Please do let us know if you have any further queries.
Regards,
Dinesh