Management of In-Memory objects
Managing memory-optimized tables is similar to disk-based tables. SQL Server Management Studio provides a full syntax and GUI support for memory-optimized tables. There is a long list of DMOs that provide detailed insights into each aspect of the feature, but also the legacy management objects such as sys.tables or sys.indexes have also received some updates to include pertinent memory-optimized information.
Dynamic management objects
The DMOs concerned with the In-Memory OLTP engine all have eXtreme Transaction Processing (XTP)Â in their name:
sys.dm_db_xtp_checkpoint_statssys.dm_db_xtp_checkpoint_filessys.dm_db_xtp_gc_cycles_statssys.dm_xtp_gc_statssys.dm_xtp_system_memory_consumerssys.dm_xtp_threadssys.dm_xtp_transaction_statssys.dm_db_xtp_index_statssys.dm_db_xtp_memory_consumerssys.dm_db_xtp_object_statssys.dm_db_xtp_transactionssys.dm_db_xtp_table_memory_stats
Full details to the columns and meanings for each DMO can be found in Microsoft Books Online (https...