Cloud
pg_total_relation_size
The pg_total_relation_size() is a database object size function that retrieves the size of a table and is useful for monitoring the storage requirements.
Syntax
pg_total_relation_size('relation_name');
It returns the size of the specified table in bytes.
Examples
Create a users table:
CREATE TABLE users (
username TEXT,
email TEXT
);
INSERT INTO users (username, email) VALUES
('john_doe', 'john.doe@example.com'),
('jane_smith', 'jane.smith@example.com'),
('alice_smith', 'alice.smith@example.com'),
('bob_jones', 'bob.jones@example.com'),
('susan_wilson', 'susan.wilson@example.com'),
('michael_jackson', 'michael.jackson@example.com'),
('lisa_johnson', 'lisa.johnson@example.com'),
('david_smith', 'david.smith@example.com');
Use the pg_total_relation_size() function to determine the size of the users table (in bytes):
SELECT pg_total_relation_size('users');
The query returns:
pg_total_relation_size
------------------------
556
Was this helpful?