Difference between revisions of "DROP INDEX"

From Lianjapedia
Jump to: navigation, search
m (Text replace - "Recital" to "Lianja")
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
 
Removes an index from a table
 
Removes an index from a table
 
  
 
==Syntax==
 
==Syntax==
 
DROP INDEX <index> ON &#060;table&#062;
 
DROP INDEX <index> ON &#060;table&#062;
 
  
 
==See Also==
 
==See Also==
 
[[ADD TABLE]], [[ALTER INDEX]], [[ALTER TABLE]], [[CREATE INDEX]], [[CREATE TABLE]], [[OPEN DATABASE]]
 
[[ADD TABLE]], [[ALTER INDEX]], [[ALTER TABLE]], [[CREATE INDEX]], [[CREATE TABLE]], [[OPEN DATABASE]]
 
  
 
==Description==
 
==Description==
Line 15: Line 12:
  
 
The table must be able to be locked for EXCLUSIVE use during the operation.
 
The table must be able to be locked for EXCLUSIVE use during the operation.
 
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 26: Line 21:
 
|-
 
|-
 
|}
 
|}
 
  
 
==Example==
 
==Example==
Line 32: Line 26:
 
DROP INDEX staff_no ON staff
 
DROP INDEX staff_no ON staff
 
</code>
 
</code>
 
  
 
==Products==
 
==Products==

Revision as of 10:05, 11 December 2012

Purpose

Removes an index from a table

Syntax

DROP INDEX <index> ON <table>

See Also

ADD TABLE, ALTER INDEX, ALTER TABLE, CREATE INDEX, CREATE TABLE, OPEN DATABASE

Description

The DROP INDEX command removes an index from a table. When the index is dropped it frees the disk space which it occupied.

The table must be able to be locked for EXCLUSIVE use during the operation.

Keywords Description
index The name of the index to be dropped.
table The name of the table from which to drop the index.

Example

DROP INDEX staff_no ON staff

Products

Lianja Server, Lianja