RENAME INDEX <Name> ON <TableName>|<ViewName>
TO <Name>
UsageUse this statement to rename an index or text index on a table or non-updateable view.
As of ElevateDB 2.21, you can now index non-updateable views. Non-updateable views are views that generate a static, insensitive result set.
Examples
-- The following statement renames the Name
index to CustName.
RENAME INDEX "Name" FROM "Customer"
TO "CustName"
Required PrivilegesThe current user must be granted the ALTER privilege on the specified table in order to execute this statement. Please see the User Security topic for more information.
SQL 2003 Standard DeviationsThis statement deviates from the SQL 2003 standard in the following ways: