Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 1.54 KB

mssqlserver-41359-database-engine-error.md

File metadata and controls

35 lines (29 loc) · 1.54 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic helpviewer_keywords
MSSQLSERVER_41359
MSSQLSERVER_41359
MashaMSFT
mathoma
04/04/2017
sql
supportability
reference
41359 (Database Engine error)

MSSQLSERVER_41359

[!INCLUDE SQL Server]

Details

Attribute Value
Product Name [!INCLUDEssNoVersion]
Event ID 41359
Event Source MSSQLSERVER
Component SQLEngine
Symbolic Name SQL_READ_COMMITTED_SNAPSHOT_NOT_SUPPORTED
Message Text A query that accesses memory optimized tables using the READ COMMITTED isolation level, cannot access disk based tables when the database option READ_COMMITTED_SNAPSHOT is set to ON. Provide a supported isolation level for the memory optimized table using a table hint, such as WITH (SNAPSHOT).

Explanation

The database with READ_COMMITTED_SNAPSHOT=ON does not support the transactions that access both memory-optimized tables and disk based tables.

User Action

Set READ_COMMITTED_SNAPSHOT to OFF or supply a supported isolation level for the memory-optimized table using a table-level hint, such as WITH (SNAPSHOT). For more information, see In-Memory OLTP (In-Memory Optimization).

See Also

In-Memory OLTP (In-Memory Optimization)