This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Africa/Abidjan | |
| Africa/Accra | |
| Africa/Addis_Ababa | |
| Africa/Algiers | |
| Africa/Asmara | |
| Africa/Asmera | |
| Africa/Bamako | |
| Africa/Bangui | |
| Africa/Banjul | |
| Africa/Bissau |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (() => { | |
| 'use strict'; | |
| const | |
| // Establish the root object, `window` (`self`) in the browser, `global` | |
| // on the server, or `this` in some virtual machines. We use `self` | |
| // instead of `window` for `WebWorker` support. | |
| root = (() => { | |
| if (typeof self == 'object' && self.self === self) return self; | |
| else if (typeof global == 'object' && global.global === global) return global; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Find the largest tables in your MySQL database | |
| SELECT | |
| table_name as "Table", | |
| table_rows as "Rows", | |
| data_length as "Length", | |
| index_length as "Index", | |
| round(((data_length + index_length) / 1024 / 1024),2) as "Size (mb)" | |
| FROM information_schema.TABLES | |
| WHERE table_schema = "%%YOURDATABASE%%" | |
| ORDER BY `Size (mb)` DESC |