Decrypt Aria Tables
Instructions to decrypt Aria tables by disabling global encryption and rebuilding tables using `ALTER TABLE`.
ALTER TABLE my_table ENCRYPTED=NO;-- Immediate effect for the running instance SET GLOBAL aria_encrypt_tables = OFF;[mysqld] aria_encrypt_tables=OFFALTER TABLE db1.my_aria_table ENGINE=Aria, ALGORITHM=COPY, LOCK=SHARED;SELECT CONCAT('ALTER TABLE `', table_schema, '`.`', table_name, '` ENGINE=Aria, ALGORITHM=COPY;') AS ddl FROM information_schema.tables WHERE ENGINE='Aria' AND table_schema NOT IN ('mysql','information_schema','performance_schema','sys');
Last updated
Was this helpful?

