I am using mysql
, I have liferay
in that I have a table called holidays (it contains holiday dates of a particular month) and I want to find the size of each record in the holiday table.
For example:
1aug2015-0.3MB..till 31aug2015.
I am using mysql
, I have liferay
in that I have a table called holidays (it contains holiday dates of a particular month) and I want to find the size of each record in the holiday table.
For example:
1aug2015-0.3MB..till 31aug2015.
I am not sure if there is a direct method to get a record/row size. But I think you can get the table size and divide it by the number of rows to get the average size of a record.
You may check this answer of How to get the sizes of the tables of a MySQL database?.