online ddl 을 진행중일 때 아래 쿼리를 사용하여 쿼리의 진행율을 확인할 수 있다.

 

SELECT EVENT_NAME,
       WORK_COMPLETED,
       WORK_ESTIMATED,
       CONCAT((WORK_COMPLETED/WORK_ESTIMATED)*100,'%') AS "WORK_PROGRESSING(%)"
FROM performance_schema.events_stages_current
WHERE event_name LIKE '%alter table%';

 

Print Friendly and PDF Posted by JJ*
: