To check if MariaDB/MySQL databases are empty in your DB Server, run the following query: 1MariaDB [(none)]> SELECT table_schema, # "DB Name", 2-> Round(Sum(data_length + index_length) / 1024 / 1024, 1) # "DB Size in MB" 3-> FROM information_schema.tables 4-> GROUP BY table_schema; …
Read More