Skip to content

Latest commit

 

History

History
49 lines (39 loc) · 1.92 KB

mssqlserver-33081-database-engine-error.md

File metadata and controls

49 lines (39 loc) · 1.92 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic helpviewer_keywords
MSSQLSERVER_33081
MSSQLSERVER_33081
MashaMSFT
mathoma
04/04/2017
sql
supportability
reference
33081 (Database Engine error)

MSSQLSERVER_33081

[!INCLUDE SQL Server]

Details

Attribute Value
Product Name SQL Server
Event ID 33081
Event Source MSSQLSERVER
Component SQLEngine
Symbolic Name SEC_DLL_TRUST_VERIFICATION_FAILED
Message Text Failed to load cryptographic provider '%.*ls' due to an invalid Authenticode signature or invalid file path. Check previous messages for other failures.

Explanation

[!INCLUDEssNoVersion] was unable to load the cryptographic provider listed in the error message. There are several Win API failures which might cause this error. The ring buffer contains the name of the failed API and the Windows error code returned by the API. To get more information, query the sys.dm_os_ring_buffers view using the following query.

SELECT * FROM sys.dm_os_ring_buffers   
WHERE ring_buffer_type = 'RING_BUFFER_SECURITY_ERROR';  

User Action

To investigate the problem, search for the Windows error code in MSDN (https://msdn.microsoft.com/). Resolve the error, or contact [!INCLUDEmsCoName] CSS for more information. If you need to contact CSS, collect the following information for our support staff.

  • The error log showing the failed to load cryptographic provider error.

  • The output from the following statement:

    SELECT * FROM sys.dm_os_ring_buffers   
    WHERE ring_buffer_type = 'RING_BUFFER_SECURITY_ERROR';  
    

Note

Try to collect the ring buffer information promptly as ring buffer information can be lost during a restart.