Collections:
SP_HELP - Viewing Existing Indexes on an Given Table in SQL Server
How To View Existing Indexes on an Given Table using SP_HELP in SQL Server?
✍: FYIcenter.com
If you want to know how many indexes have been defined for a given table, you can use the SP_HELP built-in stored procedure in the following syntax:
EXEC SP_HELP table_name -- Returns all database objects related the given table
The tutorial exercise shows you how many indexes were defined from the previous tutorial on table "fyi_links":
EXEC SP_HELP fyi_links; GO ... index_name index_description index_keys ------------ ------------------------------- ---------- fyi_links_id nonclustered located on PRIMARY id fyi_links_url nonclustered located on PRIMARY url ...
⇒ sys.indexes - Viewing Existing Indexes on an Given Table in SQL Server
⇐ CREATE INDEX - Adding an Index on an Existing Table in SQL Server
2016-11-15, 2744🔥, 0💬
Popular Posts:
Why I Can Not Enter 0.001 Second in DATETIME values in SQL Server Transact-SQL? If you enter millise...
What Privilege Is Needed for a User to Delete Rows from Tables in Another Schema in Oracle? For a us...
How To Break Query Output into Pages in MySQL? If you have a query that returns hundreds of rows, an...
How To End a Stored Procedure Properly in SQL Server Transact-SQL? Where the end of the "CREATE PROC...
How To Verify a User name with SQLCMD Tool in SQL Server? The quickest way to verify a user name in ...