Quantcast
Channel: SQLServerCentral » SQL Server 2014 » Administration - SQL Server 2014 » Latest topics
Viewing all articles
Browse latest Browse all 6525

how to find used space in memory opt filegroup?

$
0
0
How do i find Total allocated space and used space of a memory optimized filegroup?[code="sql"]use memory_optimized_dbGoselect (SUM(size)*8.0)/1024.0 as Space,FILEGROUP_NAME ( data_space_id ) , type_desc from sys.database_filesgroup by data_space_id,type_desc;[/code]above query gives "current used size of the container " of memory optimized file group but doesn't give [b]Total space[/b] detail. Please help!

Viewing all articles
Browse latest Browse all 6525

Trending Articles