Skip to content

Instantly share code, notes, and snippets.

@edzme
edzme / list.md
Created November 25, 2024 12:28 — forked from ih2502mk/list.md
Quantopian Lectures Saved
@edzme
edzme / full_db_size.sql
Created November 9, 2024 20:57
Returns the size (in megabytes) of all tables in a database that may include normal tables and timescaledb hypertables.
WITH hypertable_info AS (
SELECT hypertable_schema, hypertable_name
FROM timescaledb_information.hypertables
)
SELECT
schemaname as schema_name,
relname as table_name,
pg_size_pretty(
CASE
WHEN EXISTS (