How To Drop Existing Indexes in MS SQL Server?
Submitted by: AdministratorFor some reason, if you want remove an existing index, you can use the DROP INDEX statement with following syntax:
CREATE INDEX table_name.index_name
The tutorial exercise below shows you how to remove the index "ggl_links_id":
USE GlobalGuideLineDatabase;
GO
SELECT * FROM sys.indexes WHERE object_id = (
SELECT object_id FROM sys.tables WHERE name = 'ggl_links'
);
GO
<pre>object_id name index_id type_desc is_unique
--------- ------------- -------- ---------- ---------
421576540 NULL 0 HEAP 0
421576540 ggl_links_id 2 NONCLUSTERED 0
421576540 ggl_links_url 3 NONCLUSTERED 0</pre>
DROP INDEX ggl_links.ggl_links_id;
GO
SELECT * FROM sys.indexes WHERE object_id = (
SELECT object_id FROM sys.tables WHERE name = 'ggl_links'
);
GO
<pre>object_id name index_id type_desc is_unique
--------- ------------- -------- ---------- ---------
421576540 NULL 0 HEAP 0
421576540 ggl_links_url 3 NONCLUSTERED 0</pre>
Submitted by: Administrator
CREATE INDEX table_name.index_name
The tutorial exercise below shows you how to remove the index "ggl_links_id":
USE GlobalGuideLineDatabase;
GO
SELECT * FROM sys.indexes WHERE object_id = (
SELECT object_id FROM sys.tables WHERE name = 'ggl_links'
);
GO
<pre>object_id name index_id type_desc is_unique
--------- ------------- -------- ---------- ---------
421576540 NULL 0 HEAP 0
421576540 ggl_links_id 2 NONCLUSTERED 0
421576540 ggl_links_url 3 NONCLUSTERED 0</pre>
DROP INDEX ggl_links.ggl_links_id;
GO
SELECT * FROM sys.indexes WHERE object_id = (
SELECT object_id FROM sys.tables WHERE name = 'ggl_links'
);
GO
<pre>object_id name index_id type_desc is_unique
--------- ------------- -------- ---------- ---------
421576540 NULL 0 HEAP 0
421576540 ggl_links_url 3 NONCLUSTERED 0</pre>
Submitted by: Administrator
Read Online MS SQL Server Job Interview Questions And Answers
Top MS SQL Server Questions
☺ | What Happens If NULL Values Are Involved in Arithmetic Operations? |
☺ | How To Get the Definition of a View Out of the SQL Server? |
☺ | What Happens If Strings Are Casted into Wrong Code Pages in MS SQL Server? |
☺ | How To Convert a Numeric Expression from One Data Type to Another? |
☺ | How To Configure and Test ODBC DSN Settings? |
Top Databases Programming Categories
☺ | RDBMS Interview Questions. |
☺ | SQL Interview Questions. |
☺ | SSRS Interview Questions. |
☺ | Sybase Interview Questions. |
☺ | Database Administrator (DBA) Interview Questions. |