Checking SQL Server 2019 CTP 2.5 (15.0.1500.28) I found this new configuration option and was wandering what is behind it. Couldn't find any information so far and was wondering if you know where to find more about it?

有帮助吗?

解决方案

As far as I can tell the feature has not been officially announced yet.

There are a couple of resources available on this feature from members of the community:

Youtube video from Erik Darling

Blog post from Ned Otter

This would appear to be the configuration option that will allow you to put some TempDB metadata tables into memory, preventing many types of resource wait and hopefully speeding use of that database up on busy systems. The value of the configuration option can be found with this query:

SELECT * FROM sys.configurations
WHERE configuration_id = 1589

其他提示

Uses memory-optimized tables to hold tempdb metadata to eliminate the PAGELATCH_UP and PAGELATCH_EX waits

许可以下: CC-BY-SA归因
不隶属于 dba.stackexchange
scroll top