Reasons for using this article:
Run the following query in the database where the toast tables exist.
SELECT oid::regclass AS Table, reltoastrelid::regclass As TOAST_Table, pg_relation_size(reltoastrelid) AS toast_size FROM pg_class WHERE relkind = 'r' AND reltoastrelid <> 0 ORDER BY 3 DESC;