InterviewSolution
ANSWER : Run following query in Query Editor.USE <database_name>;GOSELECT SCHEMA_NAME(schema_id) AS schema_name,NAME AS table_nameFROM sys.tablesWHERE OBJECTPROPERTY(OBJECT_ID,'IsIndexed') = 0ORDER BY schema_name, table_name;GO
Your experience on this site will be improved by allowing cookies. Read Cookie Policy