deleteindex

Description

Deletes an index on a table.

Attributes

Attribute Description Required
indexNameName of the index to be deleted. A placeholder @{tablename} can be used, to embed the corresponding table name. Yes
ignoreNotExistIf true and that index does not exists ignore it, otherwise abort. No. Defaults to false

Examples

  <sde:sdeconnection id="sde.conn" 
      host="127.0.0.1" password="pass" username="myuser"/>
      
  <sde:deleteindex connection="sde.conn"
      tablename="SE_TABLE1"
      indexname="@{tablename}_FIPS">
  </sde:deleteindex>