I have a SQL 2008 R2 database with some tables on it having some of those tables a Full-Text Index defined. I'd like to know how to determine the size of the index of a specific table, in order to control and predict it's growth.
Is there a way of doing this?
I use something similar to this (which will also calculate the size of XML-indexes, ... if present)
This will generally give numbers higher than
sys.fulltext_index_fragments
, but when combined with thesys.partitions
of the table, it will add up to the numbers returned fromEXEC sys.sp_spaceused @objname = N'schema.TableName';
.Tested with SQL Server 2016, but documentation says it should be present since 2008.