Skip to content

Instantly share code, notes, and snippets.

View motammem's full-sized avatar

Amin Alizade motammem

  • Software Architect and PHP Developer
  • Alborz, Iran
View GitHub Profile
@motammem
motammem / database table sizes
Created May 9, 2017 09:17
Get database table sizes in mb and desc order
SELECT
table_name AS `Table`,
round(((data_length + index_length) / 1024 / 1024), 2) `Size in MB`
FROM information_schema.TABLES
WHERE table_schema = "__database__"
ORDER BY (data_length + index_length) DESC
@motammem
motammem / mysql-utf8.sh
Created May 6, 2017 06:18
Make all table and columns charset UTF-8
#!/usr/bin/env bash
############################################
# Make all table and columns charset UTF-8 #
############################################
# Replace parameters below before use
database=[database]
user=[user]
password=[password]