|
Home >> FAQs/Tutorials >> SQL Server FAQ
SQL Server FAQ - sys.indexes - Viewing Existing Indexes on an Given Table
By: FYIcenter.com
(Continued from previous topic...)
How To View Existing Indexes on an Given Table using sys.indexes?
Another way to view existing indexes defined for a given table
is to use the system view called "sys.indexes".
The tutorial exercise shows you how many indexes were defined from the
previous tutorial on table "fyi_links":
USE FyiCenterData;
GO
SELECT * FROM sys.indexes WHERE object_id = (
SELECT object_id FROM sys.tables WHERE name = 'fyi_links'
);
GO
object_id name index_id type_desc is_unique
--------- ------------- -------- ---------- ---------
421576540 NULL 0 HEAP 0
421576540 fyi_links_id 2 NONCLUSTERED 0
421576540 fyi_links_url 3 NONCLUSTERED 0
The extra line in the query result is not a real index at this moment.
It will be explained in another tutorial.
(Continued on next topic...)
- What Are Indexes?
- How To Create an Index on an Existing Table?
- How To View Existing Indexes on an Given Table using SP_HELP?
- How To View Existing Indexes on an Given Table using sys.indexes?
- How To Drop Existing Indexes?
- Is the PRIMARY KEY Column of a Table an Index?
- Does the UNIQUE Constraint Create an Index?
- What Is the Difference Between Clustered and Non-Clustered Indexes?
- How To Create a Clustered Index?
- How To Create an Index for Multiple Columns?
- How To Create a Large Table with Random Data for Index Testing?
- How To Measure Performance of INSERT Statements?
- Does Index Slows Down INSERT Statements?
- Does Index Speed Up SELECT Statements?
- What Happens If You Add a New Index to Large Table?
- What Is the Impact on Other User Sessions When Creating Indexes?
- What Is Index Fragmentation?
- What Causes Index Fragmentation?
- How To Defragment Table Indexes?
- How To Defragment Indexes with ALTER INDEX ... REORGANIZE?
- How To Rebuild Indexes with ALTER INDEX ... REBUILD?
- How To Rebuild All Indexes on a Single Table?
- How To Recreate an Existing Index?
|