Re: How to find the table which is not used in recent 3 month? - Mailing list pgsql-admin

From Shreeyansh Dba
Subject Re: How to find the table which is not used in recent 3 month?
Date
Msg-id CAGDYbUPmY9Wqx90Yj0gu1Bm588dTesPpfpvCBWbEuEixtEOpTg@mail.gmail.com
Whole thread Raw
In response to How to find the table which is not used in recent 3 month?  (Frantz Song <frantz.song@gmail.com>)
List pgsql-admin
Hi Frantz,

You can trace the timestamp by using below query, it shows the list of the table which is not modified or unused since last 3 month.
select relname, NOW()-interval '3 month' from pg_stat_user_tables where n_live_tup=0;

Thanks & Regards,
Shreeyansh DBA Team
www.shreeyansh.com


On Mon, Dec 31, 2018 at 11:59 AM Frantz Song <frantz.song@gmail.com> wrote:
Dear all,

I'm use postgresql 9.6, it have 800+tables and some of them is not frequently used. 
How to find the table which is not used in recent 3 month? 

Thanks!

--
P Help save trees...please don't print this e-mail unless you really need to.

pgsql-admin by date:

Previous
From: Sylvain Fauvel
Date:
Subject: Re: How to find the table which is not used in recent 3 month?
Next
From: Fabio Pardi
Date:
Subject: Re: How to find the table which is not used in recent 3 month?