Re: [GENERAL] Returning schema name with table name

2008-11-24 Thread Andrus
Thomas, it shows all except toast entries. for included values see http://www.postgresql.org/docs/8.3/static/functions-admin.html#FUNCTIONS-ADMIN-DBSIZE function |pg_total_relation_size|(oid) I'm sorry I was not clear. For my db your query returns row like db_owner pg_toast

Re: [GENERAL] Returning schema name with table name

2008-11-24 Thread Thomas Markus
it shows all except toast entries. for included values see http://www.postgresql.org/docs/8.3/static/functions-admin.html#FUNCTIONS-ADMIN-DBSIZE function |pg_total_relation_size|(oid) Andrus schrieb: my standard query (adapted to 1mb size) is: Thank you very much. This query shows toast fil

Re: [GENERAL] Returning schema name with table name

2008-11-24 Thread Andrus
my standard query (adapted to 1mb size) is: Thank you very much. This query shows toast files in a cryptic way: db_owner pg_toast pg_toast_40552_index 1352 kB How to change it so that it shows also relation name whose data pg_toast_40552_index contains? It is not possibl

Re: [GENERAL] Returning schema name with table name

2008-11-23 Thread Thomas Markus
Hi, my standard query (adapted to 1mb size) is: select t.spcname as "tablespace" , pg_get_userbyid(c.relowner) as "owner" , n.nspname as "schema" , relname::text as "name" , pg_size_pretty(pg_total_relation_size(c.oid))::text as "total size" , case when c.relkind='i' th

Re: [GENERAL] Returning schema name with table name

2008-11-21 Thread Pavel Stehule
2008/11/21 Andrus <[EMAIL PROTECTED]>: > SELECT oid, relname::char(35) as Table_Name, > pg_size_pretty(pg_total_relation_size(oid))::VARCHAR(15) as > Total_Table_Size > FROM pg_class > where pg_total_relation_size(oid)/(1024*1024)>0 > ORDER BY pg_total_relation_size(oid) desc > add SELECT n.

[GENERAL] Returning schema name with table name

2008-11-21 Thread Andrus
SELECT oid, relname::char(35) as Table_Name, pg_size_pretty(pg_total_relation_size(oid))::VARCHAR(15) as Total_Table_Size FROM pg_class where pg_total_relation_size(oid)/(1024*1024)>0 ORDER BY pg_total_relation_size(oid) desc returns table names with size greater than 1 MB How to modify