Answer the question
In order to leave comments, you need to log in
What's taking up space on AWS RDS?
There is Mysql base on RDS.
100GB.
SELECT table_schema "DB Name",
Round(Sum(data_length + index_length) / 1024 / 1024, 1) "DB Size in MB"
FROM information_schema.tables
GROUP BY table_schema;
Answer the question
In order to leave comments, you need to log in
Show the output of the command
Do you happen to have query logging enabled?
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question