June 2015
Intermediate to advanced
1800 pages
70h 6m
English
To keep an eye on your memory usage by memory-optimized tables and their indexes, SSMS provides a new report, Memory Usage by Memory-Optimized Objects. To bring up this report, right click on the database, select Reports, select Standard, and click on Memory Usage By Memory-Optimized Objects. This will bring up a report like that shown in Figure 33.15.
FIGURE 33.15 Memory Usage By Memory-Optimized Objects Report.
Alternatively, you can also get information on the memory usage of your memory-optimized tables by running a query against the sys.dm_db_xtp_table_memory_stats DMV:
SELECT CAST(OBJECT_NAME(object_id) ...
Read now
Unlock full access