remove duplicates
- create another identical table (lazy way: right-click table, script table as, create to, new query editor window)
- rename constraints
- create unique index removeduplicates on newtab (uniqfield) with
IGNORE_DUP_KEY - insert * from oldtab into newtab
You’ll get a warning “ignoring duplicate field” which is good.