Share via

MSSQL services Getting stopped in the AWS server. we have checked a logs getting - SQLException64 Error

Kinjal Gurav 0 Reputation points
2026-03-05T08:41:38.9266667+00:00

MSSQL services stopped 2 times in a month, We checked the logs and got -SQLException64 error.

This is windows server in AWS.

Error message :

Date 3/3/2026 6:04:39 PM

Log Windows NT (Application)

Source Windows Error ReportingSS.png

Category (0)

Event 1001

Message

Fault bucket , type 0

Event Name: SQLException64

Response: Not available

Cab Id: 0

Problem signature:

P1: sqlservr.exe

P2: 0.0.0.0

P3: 0000000000000000

P4: sqllang.dll

P5: 2015.131.7060.1

P6: 0000000068759089

P7: 17068

P8: 0000000000032C16

P9: 000000019031A5C1

P10:

Attached files:

\?\C:\Program Files\Microsoft SQL Server\MSSQL13.MSSQLSERVER\MSSQL\LOG\SQLDump0093.mdmp

\?\C:\Program Files\Microsoft SQL Server\MSSQL13.MSSQLSERVER\MSSQL\LOG\SQLDump0093.txt

\?\C:\Program Files\Microsoft SQL Server\MSSQL13.MSSQLSERVER\MSSQL\LOG\SQLDump0093.log

These files may be available here:

Analysis symbol:

Rechecking for solution: 0

Report Id: 0ffec3c8-1723-11f1-ab8f-027ff2bb6a26

Report Status: 262144

Hashed bucket:

SQL Server | Other
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Erland Sommarskog 133.2K Reputation points MVP Volunteer Moderator
    2026-03-05T21:29:01.1166667+00:00

    Can you share the output of "SELECT @@version"?

    Crashes like this often indicates bugs in SQL Server. But since you are on SQL 2016 which is out of mainstream support for more than four years, you chances to get a bugfix are nil.

    Crashes can also be due to external software that runs in the SQL Server address space. This includes:

    • External stored procedures.
    • OLE objects invoked through sp_OAxxxx.
    • Unsafe assemblies.
    • Third-party linked servers running in-process.

    So if you are running any of these, consider them to be prime suspects.

    Possibly, such crashes can also be caused by faulty hardware. This is something you would need to sort out with Amazon.


  2. Q&A Assist
    2026-03-05T08:41:56.92+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    The SQLException64 event and the presence of SQLDump00xx files indicate that the SQL Server process (sqlservr.exe) is crashing and generating a stack dump, which in turn causes the MSSQL service to stop.

    To move toward root cause on this AWS Windows Server, use the crash dumps and error logs that are already being produced:

    1. Locate and review the SQL Server error logs
      • On Windows, the default error log path is:
        • C:\Program Files\Microsoft SQL Server\MSSQL.<n>\MSSQL\LOG\ERRORLOG.
      • In this case, the dump files are already in:
        • C:\Program Files\Microsoft SQL Server\MSSQL13.MSSQLSERVER\MSSQL\LOG\SQLDump0093.*
      • Open the corresponding ERRORLOG and ERRORLOG.<n> files around the time 3/3/2026 6:04:39 PM to see the exact error and stack dump header that preceded the crash. This will show whether the crash is due to access violation, memory assertion, CLR, OLE DB, etc.
      • If the instance won’t start or is unstable, the logs can still be viewed directly from disk or via SSMS Log File Viewer as described in the documentation.
    2. Use the dump files for deeper diagnosis
      • The .mdmp and .txt files (for example SQLDump0093.mdmp, SQLDump0093.txt, SQLDump0093.log) contain the call stack at the time of the crash.
      • These dumps are primarily intended for Microsoft Support or experienced engineers. If the error log shows a repeating pattern (for example, access violation in a specific module, or a known call stack like those documented for certain bugs), correlate that with any custom components (CLR, extended stored procedures, linked servers, third‑party drivers) or recent changes.
    3. Correlate with Windows logs
      • Use Windows Event Viewer (Application and System logs) and compare timestamps with the SQL Server error log entries. This helps identify whether there were OS‑level issues (disk, memory, network, or other services) at the same time as the SQLException64 crash.
      • The SQL Server Management Studio Log File Viewer can integrate SQL Server, SQL Server Agent, and Windows logs into a single view to simplify this correlation.
    4. Check for known issues and updates
      • The problem signature shows sqllang.dll with a specific build (2015.131.7060.1). Compare this build with the latest cumulative update for SQL Server 2016 and apply the latest CU if not already done, as many crash conditions are fixed in later builds.
      • If the crash pattern matches known issues (for example, access violations or memory assertions similar to those described in Microsoft KB articles that produce stack dumps), applying the relevant hotfix or CU is typically required.
    5. Monitor for recurrence and refine logging
      • Since the crash has occurred twice in a month, continue monitoring the SQL Server error log and Windows logs for new occurrences.
      • Ensure error log retention and size are configured so that older logs are not overwritten before analysis (configure maximum number of error logs and size in SSMS under Management → SQL Server Logs → Configure).

    If the error log or dump stack shows a specific assertion, access violation, or module name, that information will be the key to the exact root cause and should be used to decide whether to remove/patch a component, change configuration, or open a support case with Microsoft including the .mdmp and ERRORLOG files.


    References:

    0 comments No comments

Your answer

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