Follow

big SQL query 

I just wrote an SQL query to find which accounts use the most storage space:

select * from (
select accounts.username, accounts.domain, sum(media_attachments.file_file_size) as media_size
from media_attachments
inner join accounts on (media_attachments.account_id=accounts.id)
group by accounts.id order by media_size desc
) as t
where t.media_size is not null
limit 10;

to run it: "su postgres", then "psql mastodon_production", then type it in the shell

· · Web · 0 · 0 · 2
Sign in to participate in the conversation
Octodon

oc.todon.fr is a mostly French-speaking Mastodon instance with an active moderation. oc.todon.fr est une instance Mastodon principalement francophone et avec une modération active.