Question: How to Find Table Without Clustered Index (heap)?
Answer: In SQL Server, when we create a primary key it automatically creates clustered index on the table, unless we explicitly mentioned not to create one. Due to this reason, the most of the table where there is a primary key, there are good chances it is also a clustered index key.
The post Interview Question of the Week #062 – How to Find Table Without Clustered Index (Heap)? appeared first on Journey to SQL Authority with Pinal Dave.