Verifying Sql Indexes Status

  1. Select * from sys.indexes  
  2. where object_id = (select object_id from sys.objects where name = 'TABLENAME' 
This query will list all tables without an index:
  1. Select * from sys.indexes where object_id = (select object_id from sys.objects where name = 'MYTABLE'