TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Finding Index on a table in SQL Server
Nitin
Apr 02, 2015
3.3
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
In this blog we will see how to find indexes on a table.
I have an employee table in my database. Let us check the content in the table.
select
*
from
employee
The following is the data in the table.
Now run the following script to find index if any in the above table
sp_help
index
employee
When we run the preceeding script we get the following resultset.
Finding Index on a table in SQL Server
Next Recommended Reading
Find Number of Columns in a Table and Delay in Sql server