February 2017
Intermediate to advanced
536 pages
28h 47m
English
We can collect some of the information we want from PostgreSQL if we have an install already. Follow these steps if there's an existing database install that we can use:
SELECT pg_size_pretty(sum(pg_database_size(oid))::BIGINT)
FROM pg_database;
If we don't have an existing database, we should use a size estimate of the database install after three years. Refer to the Sizing storage recipe to obtain this estimate. Then, perform the following steps:
Read now
Unlock full access