You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently creating index by alter table add index ... will scan table one pass for each index, this waste cpu time if there are multi indexes are created in one statement.
It is possible to scan table one pass for all indexes in the alter table statement, especially if the table row is big, the performance improvements should be great.
The text was updated successfully, but these errors were encountered:
Currently creating index by
alter table add index ...
will scan table one pass for each index, this waste cpu time if there are multi indexes are created in one statement.It is possible to scan table one pass for all indexes in the alter table statement, especially if the table row is big, the performance improvements should be great.
The text was updated successfully, but these errors were encountered: