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
SQL Server Transact Basic to Expert - Drop and recreate an index in a table using Create Index
Karthikeyan Anbarasan
Jun 08, 2011
2.7
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
SQL Server Transact Basic to Expert - Drop and recreate an index in a table
This blog show how to drop and recreate an index using Create Index command
Example:
CREATE NONCLUSTERED INDEX empind ON
Dbo.emptable (Empid ASC)
WITH (DROP_EXISTING = ON)
GO
SQL Server Transact Basic to Expert - Drop and recreate an index in a table using Create Index
Next Recommended Reading
SQL Server Transact Basic to Expert - To See index metadata