First login as root on the command line to MySQL: mysql -u root -p mysql Enter your mysql root password. Set the log slow queries variables: SET GLOBAL slow_query_log = ‘ON’; Verify your variables are set properly: SHOW VARIABLES; You [...]
Latest Post
Fixing a MySQL “incorrect string value” error when save unicode string
I have recently been working with a CSV list of player names, which I needed to import into MySQL. Using the CSV library in Python, I managed to read and slice my csv accordingly, here is an example: 12345678910import csv [...]


