Di SQL Server, ini akan mencantumkan semua indeks untuk tabel tertentu:
select * from sys.indexes
where object_id = (select object_id from sys.objects where name = 'MYTABLE')
Kueri ini akan mencantumkan semua tabel tanpa indeks:
SELECT name
FROM sys.tables
WHERE OBJECTPROPERTY(object_id,'IsIndexed') = 0
Dan ini adalah FAQ MSDN yang menarik tentang topik terkait:
Permintaan kueri FAQ Katalog Sistem SQL Server