Developer Recipes Handbook
Keeping track of interesting places I put my feet on in the software development world.
Wednesday, February 13, 2019
Looking for (and killing) locks in mySQL
Taken from
here
.
1) List all your processes with
SHOW FULL PROCESSLIST
2) Look at the "State" column, it will mention a lock if existent
3) Kill the process you want by running
KILL
[process_id_taken_from_process_list]
Sunday, February 10, 2019
Javascript Array Distinct functionality
https://codeburst.io/javascript-array-distinct-5edc93501dc4
Tuesday, February 5, 2019
Translating Set Operations into SQL Joins
Thanks to a colleague from work for sharing this.
The last one is was not familiar to me.
Good to know.
‹
›
Home
View web version