Just been reading up on this and there are a lot of limitation which one needs to consider when designing an in-memory table. I'm going to post them below in the hope that others will add to them so I can get a definitive list;No foreign key constraintsNo clustered indexesNo schema changes once the table is set in memoryNo index changes once the table is set in memoryAlter Table function is not supportedAdditional filegroup needs to be created in order to process in-memory tablesVarchar MAX is not supportedXML/User Defined data types are not supportedMax page length is 8060 (page overflow not supported)Can't create indexes on NULLABLE columnsWow, seems like a lot. Any more for any more?
↧