全部博文(1144)
分类: Mysql/postgreSQL
2011-11-08 06:34:40
You can create and rebuild indexes online. This enables you to update base tables at the same time you are building or rebuilding indexes on that table. You can perform. DML operations while the index build is taking place, but DDL operations are not allowed. Parallel execution is not supported when creating or rebuilding an index online.
我们知道,在创建索引的时候,要为索引分配空间和索引数据,我们不加online的时候就会有DML,DDL锁,但是加了online,则DML锁没有了,只有DDL锁。这样就不会阻塞其它的用户的操作,顺利达到你创建索引的目的。