Listing Clustered Index, Identity and Primary Keys in SQL Server
Hello to everyone,
In this article, I will try to give information about listing Clustered Index, Identity and Primary Keys in SQL Server.
You may want to list Clustered Index, Identity and Primary Keys in SQL Server.
You can easily do this using the code below.
SELECT SCHEMA_NAME(schema_id) AS SchemaName,
name AS TableName,
OBJECTPROPERTY(object_id, 'TableHasClustIndex') HasClusteredIndex,
OBJECTPROPERTY(object_id, 'TableHasIdentity') HasIdentity,
OBJECTPROPERTY(object_id, 'TableHasprimarykey') HasPrimaryKey
FROM sys.tables
WHERE OBJECTPROPERTY(object_id, 'TableHasClustIndex') = 0
ORDER BY 1,
2;
When you run the above code, you will see a result similar to the one below.
As you can see, we have listed the Clustered Index, Identity and Primary Keys.
Good luck to everyone in business and life.