You can use this query:
select TableName = so.name, IndexName = si.name, StatName = s.name, s.no_recompute from sys.indexes si inner join sys.stats s on si.object_id = s.object_id inner join sys.objects so on si.object_id = so.object_id where no_recompute = 0 and so.[type] in ('U', 'V') order by so.name, si.name, s.name
source share