Read-Only Tables 只读表

Put  a table into read-only  mode,which prevents DDL or DML changes during table maintenance

Put the table back into read/write mode 

alter table XX READ ONLY;

alter table XX READ WRITE;

原文地址:https://www.cnblogs.com/jycjy/p/11504589.html