Please let me know the steps to resolve it.
I have tried with WP optimizer Plugin and other plugins which are related to database optimizer. But still it says the same issue.
Thanks
Actually our hosting providers provide the database size is 1 GB only. But our current database size is 2.5 GB. So we could not able to add any posts and could not add any pages on the database. It says the error like database size is exceeded. Seems some unwanted contents and data are there on the Post meta tables. So postmeta tables size is reached around 2 GB. We need to remove the exact content from the tables.
I… highly doubt that your database being 2.5 GB will magically shrink to 1 GB just by running optimizations. That would imply the database is so fragmented that it is occupying its own space twice (and a half) due to shattering.
That said;
What you see above in the screenshot is not an error to be resolved. These are the normal messages when you run optimize against InnoDB tables. The NOTE tells you that it’s doing a different method (recreate + analyze) than you asked for because the table type does not allow OPTIMIZE (in the background, it’s running ALTER TABLE…FORCE instead, which is how an InnoDB table is defragmented), and then tells you it did that alternate method OK. It has done the defrag on those tables.