Answers for "mariadb error 1273 unknown collation 'utf8mb4_0900_ai_ci'"

C
2

mariadb unknown collation: 'utf8mb4_0900_ai_ci'

I just opened the dump.sql file in Notepad++ and 
hit CTRL+H to find and replace the string 
"utf8mb4_0900_ai_ci" and replace with "utf8mb4_general_ci"
Posted by: Guest on October-28-2020
2

#1273 - Unknown collation: 'utf8mb4_0900_ai_ci'

find:
ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
replace with:
ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
in your .sql file
Posted by: Guest on August-24-2021

Code answers related to "mariadb error 1273 unknown collation 'utf8mb4_0900_ai_ci'"

Code answers related to "C"

Browse Popular Code Answers by Language