Forums

Increase size of SQL Database

I have seen in the forum that the size of the databse is not directly linked to my total available disk space but it should be scaled up if needed. With

'SELECT table_schema "Database Name" , SUM(data_length + index_length) / (1024 * 1024) "Database Size in MB" FROM information_schema.TABLES GROUP BY table_schema;'

I check the size for my database. The result is 25MB. But I should have disk space of 5GB in total. How to adjust it? I need about 2,5GB

It's your current size of your tables, not the space.