I need to drop an index on a table, but the index name is NULL.
When I run this stmt, it appears:
select * from sysindexes where id = 750625717 and name is null
The syntax I have found to drop an index is:
drop index tablename.indexname
Any suggestions?
TIA