Answers for "sql 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
0

Unknown collation: 'utf8mb4_0900_ai_ci'

I believe this error is caused because the local server and live server are running different versions of MySQL. To solve this:

Open the sql file in your text editor
Find and replace all utf8mb4_unicode_520_ci with utf8mb4_unicode_ci
Save and upload to a fresh mySql db
Posted by: Guest on October-05-2021
-1

Unknown collation: 'utf8mb4_0900_ai_ci'

search utf8mb4 change with utf8 
search utf8mb4_unicode_ci change with utf8_unicode_ci
Posted by: Guest on June-01-2021

Code answers related to "sql unknown collation: 'utf8mb4_0900_ai_ci'"

Code answers related to "C"

Browse Popular Code Answers by Language