oracle相关,  性能测试相关,  测试

快速删除重复的记录

delete from table where rowid not in(select max(rowid) from table group by transid having count(transid)>1 );
commit;

drop index user.tablename;

create unique index   user.tablename on  user.tablename (
   TRANSID ASC
)
tablespace tablespacename ;

留言

您的邮箱地址不会被公开。 必填项已用 * 标注