How to check vos3000 MySQL Database size
Before transfer database to new server you want to know the vos3000db database size.For that you must login to the mysql and write below query or copy paste.
SELECT table_schema AS “Database name”, SUM(data_length + index_length) / 1024 / 1024 AS “Size (MB)” FROM information_schema.TABLES GROUP BY table_schema;