Answers

Question and Answer:

  Home  MS SQL Server

⟩ How To Recreate an Existing Index in MS SQL Server?

If you want to change the definition of an existing index, you can use the "DROP INDEX" statement to drop the index first. Then use the "CREATE INDEX" statement to create it again with the new definition.

But you can also combine those two statements into one:

CREATE INDEX ... WITH (DROP_EXISTING = ON)

The tutorial exercise below recreates ggl_links_url with a change to index columns:

USE GlobalGuideLineDatabase;

GO

CREATE INDEX ggl_links_url ON ggl_links_indexed (url, counts)

WITH (DROP_EXISTING = ON);

GO

SP_HELP ggl_links_indexed;

GO

index_name  index_description   index_keys 

---------------- -------------------------------- ------------

ggl_links_counts nonclustered located on PRIMARY counts

ggl_links_url nonclustered located on PRIMARY url, counts

 122 views

More Questions for you: