I’m specifically looking for a way to view the full text index fragments and the xml index, which, according to the documentation, are stored as internal tables. This page describes how to view the internal table metadata. What I’m hoping for is a way to view the data in the internal tables.
Share
You can get the schema name and table names from
sys.internal_tablesThen if you are connected via the DAC you can simply select from them
There may well be better ways of getting whatever the information is that you want though. e.g. the DMVs related to full text indexing in SQL Server 2008 are listed here.