Related Articles
Speed up PhpStorm Right away
Are you using PHPStorm IDE, then see below simple tricks to speed up the performance of PhpStorm IDE. Speed up PhpStorm 1. Turn on Power Save mode File -> Power Save Mode or using “Hector the Inspector” icon in the IDE status bar. This mode turns off on-the-fly code inspections This way you can finish […]
4 Best Top Opensource Bug Tracking System
Bug Tracking System helps in finding bugs in a software application, apart from this it helps in setting milestones, getting new feature requests and progress tracking. Opensource Bug Tracking System Below are the Best Open Source Bug Tracking System : #1. Bugzilla: Bugzilla is top rated open source Bug Tracking System developed in Perl and […]
How to Get Size of a Database in Mysql
To Get Data Base Size in MB and Free Space in MBSELECT table_schema “dbName”, sum( data_length + index_length ) / 1024 / 1024 “Data Base Size in MB”, sum( data_free )/ 1024 / 1024 “Free Space in MB”FROM information_schema.TABLESGROUP BY table_schema ; To Get Size in GB: SELECT sum(round(((data_length + index_length) / 1024 […]