create unique index index_name on table_name (column);
在线创建时会组塞dml操作,直到创建唯一索引成功,dml才正常操作
所以在线创建索引时,为了减少性能,不阻塞dml操作
最好加上online 关键字
create unique index index_name on table_name (column) online;
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/7199859/viewspace-897/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/7199859/viewspace-897/