In-Memory OLTP is a memory-optimized database engine integrated into the SQL Server engine. The SERVERPROPERTY() built in metadata system function with IsXTPSupported Property can be used to identify whether Server supports In-Memory OLTP.
1 2 3 4 5 6 7 8 9 |
USE [master]; GO SELECT CASE SERVERPROPERTY('IsXTPSupported ') WHEN 0 THEN 'Server does not supports In-Memory OLTP' WHEN 1 THEN 'Server supports In-Memory OLTP' ELSE 'Unknown' END as [Is SQL Server supports In-Memory OLTP ?] |
Leave a Comment