Re: How to find the table which is not used in recent 3 month?

Поиск
Список
Период
Сортировка
От Shreeyansh Dba
Тема Re: How to find the table which is not used in recent 3 month?
Дата
Msg-id CAGDYbUPmY9Wqx90Yj0gu1Bm588dTesPpfpvCBWbEuEixtEOpTg@mail.gmail.com
обсуждение исходный текст
Ответ на How to find the table which is not used in recent 3 month?  (Frantz Song <frantz.song@gmail.com>)
Список 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 по дате отправления:

Предыдущее
От: Sylvain Fauvel
Дата:
Сообщение: Re: How to find the table which is not used in recent 3 month?
Следующее
От: Fabio Pardi
Дата:
Сообщение: Re: How to find the table which is not used in recent 3 month?