Oninit Logo
The Down System Specialists
+1-913-674-0360
+44-2081-337529
Partnerships Contact
Finderr

-350 Index already exists on the column (or on the set of columns).

This CREATE INDEX statement cannot be executed because an index on the same column or combination of columns already exists. For a given collation order, at most two indexes can exist on any combination of columns, one ascending and one descending.

To display the indexes on a particular table, join sysindices and systables. Supply table-name in the following statement:

SELECT * FROM sysindices, systables WHERE sysindices.tabid = systables.tabid AND systables.tabname = 'table-name'