Additional SQL Server features and topics not covered by specific categories
Yes, I have definitely used them on my laptop, running Windows 11 and the developer edition of SQL Server. And it doesn't have an AG in place. This seems to have been a known issue with the RTM version of SQL Server 2022: https://learn.microsoft.com/en-us/answers/questions/1131043/sql-2022-bug-filestream It affected filestream as well. That article says it was fixed with CU1. Do you have the latest CU for SQL Server 2022 installed? That might well fix it. Also, have you tested in-memory OLTP before? We've been testing it since 2014, and with every version, it gets more usable but it's no panacea for performance, except in very, very narrow use cases. What are you hoping to achieve with it? Almost all the real performance benefit comes from moving your code into in-memory native code, but the coding surface for that is very narrow, and it's very hard to make use of it. If all you do is move the tables, it's usually of little benefit. In fact, it can make the performance worse, as the way it works with interop and the way it spools data from in-memory back to legacy tables can lead to signficant performance penalties. Most people have used this feature more in theory than in practice. Be wary.