Aspdotnet-Suresh

aspdotnet-suresh offers C#.net articles and tutorials,csharp dot net,asp.net articles and tutorials,VB.NET Articles,Gridview articles,code examples of asp.net 2.0 /3.5,AJAX,SQL Server Articles,examples of .net technologies

SQL Server Remove (Drop) index from table

Jun 30, 2014
Introduction:

Here I will explain how to remove index from table in
sql server 2008 or drop index from table in sql serverTo remove index from table we use drop index statement in sql server.
Description:
In previous articles I explained create index on column in sql server, SQL Server change identity column value,  replace multiple spaces with single space in sql, reseed identity column value in sql server and many articles relating to SQL server. Now I will explain how to remove index from table in sql server 2008.

To create index on column in sql server that syntax will be like as shown below

Syntax to Create Index


CREATE INDEX indexname ON Tablename(columnname)
Example:


CREATE INDEX IC_Userid ON UserDetails(UserId)
If you want to remove index on table we need to write the query like as shown below

Syntax to Drop Index on Column


DROP INDEX tablename.indexname
Example:


DROP INDEX UserDetails.IC_Userid

If you enjoyed this post, please support the blog below. It's FREE!

Get the latest Asp.net, C#.net, VB.NET, jQuery, Plugins & Code Snippets for FREE by subscribing to our Facebook, Twitter, RSS feed, or by email.

subscribe by rss Subscribe by RSS subscribe by email Subscribe by Email

0 comments :

Give your Valuable Comments

Note: Only a member of this blog may post a comment.

© 2015 Aspdotnet-Suresh.com. All Rights Reserved.
The content is copyrighted to Suresh Dasari and may not be reproduced on other websites without permission from the owner.