Reputation: 1657
I need to change my mysql server variables one by one (without using the my.cnf file). I need it to look like this
How can I change these variable names without editing the my.cnf?
UPDATE
This is what it looks like now.
Upvotes: 0
Views: 60
Reputation: 16691
Can you run update statements on the table?
UPDATE myTable SET value = 'utf8mb4_unicode_ci' WHERE variable_name = 'collation_connection';
And so on for the other necessary updates.
Upvotes: 1