Hi everyone,
I'm facing a discrepancy in my PostgreSQL database management:
i have check my datbase size from backend with this command
SELECT
datname AS database_name,
pg_size_pretty(pg_database_size(datname)) AS database_size
FROM
pg_database
ORDER BY
pg_database_size(datname) DESC;
Database Size Reports from this command around 1135 MB.
But when I downloaded the backup from myinstance/web/database/manager, it around 15Gb increased suddenly. this is a high alert for me, please help me
Any insights on why the backup size differs significantly from the database size? Your expertise would be greatly appreciated!
Thanks,