MySQL Forums
Forum List  »  InnoDB

Re: How to get growth rate used space of a table by month ?
Posted by: Peter Brawley
Date: June 30, 2017 10:17AM

Decide how you wish to measure the table's growth rate how, rowcount, or data size, or size of data+index size. Create a table growth(date date, size bigint). Schedule a query that runs the first of every month inserting into the fgrowth table the date and the reelevant statistic from information_schema.tables for that db and table.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: How to get growth rate used space of a table by month ?
2781
June 30, 2017 10:17AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.