[sql] postgresql 목록 및 크기별 주문 테이블

어떻게 수있는 모든 테이블 목록 PostgreSQL의 데이터베이스와의 크기로 주문할은 ?



답변

select table_name, pg_relation_size(quote_ident(table_name))
from information_schema.tables
where table_schema = 'public'
order by 2

public여러 스키마가있는 경우 스키마에있는 모든 테이블의 크기를 보여줍니다. 다음 을 사용할 수 있습니다.

select table_schema, table_name, pg_relation_size('"'||table_schema||'"."'||table_name||'"')
from information_schema.tables
order by 3

SQLFiddle 예 : http://sqlfiddle.com/#!15/13157/3

설명서 의 모든 개체 크기 기능 목록 .


답변

그러면 스키마 이름, 테이블 이름, 예쁜 크기 및 크기 (정렬에 필요)가 표시됩니다.

SELECT
  schema_name,
  relname,
  pg_size_pretty(table_size) AS size,
  table_size

FROM (
       SELECT
         pg_catalog.pg_namespace.nspname           AS schema_name,
         relname,
         pg_relation_size(pg_catalog.pg_class.oid) AS table_size

       FROM pg_catalog.pg_class
         JOIN pg_catalog.pg_namespace ON relnamespace = pg_catalog.pg_namespace.oid
     ) t
WHERE schema_name NOT LIKE 'pg_%'
ORDER BY table_size DESC;

PostgreSQL 데이터베이스에서 크기 (상대적 및 절대적)가있는 스키마 목록의 솔루션을 기반으로 빌드 합니다.


답변

이것은 더 명확 할 것입니다.

pg_size_pretty(<numeric_value>) -바이트 수를 사람이 읽을 수있는 형식으로 변환합니다.

pg_database_size(<db_name>)-데이터베이스 크기 ( 바이트)를 가져 옵니다 .

pg_total_relation_size(<relation_name>)-테이블의 총 크기와 인덱스를 바이트 단위로 가져옵니다 .

pg_relation_size(<relation_name>)-관계 (테이블 / 인덱스) 크기를 바이트 단위로 가져옵니다 .

pg_index_size(<relation_name>)-의 인덱스 크기 얻을 관계 에서 바이트 .

current_database() -이 쿼리가 수행되고있는 현재 사용 된 데이터베이스를 가져옵니다.

질문:

select current_database() as database,
       pg_size_pretty(total_database_size) as total_database_size,
       schema_name,
       table_name,
       pg_size_pretty(total_table_size) as total_table_size,
       pg_size_pretty(table_size) as table_size,
       pg_size_pretty(index_size) as index_size
       from ( select table_name,
                table_schema as schema_name,
                pg_database_size(current_database()) as total_database_size,
                pg_total_relation_size(table_name) as total_table_size,
                pg_relation_size(table_name) as table_size,
                pg_indexes_size(table_name) as index_size
                from information_schema.tables
                where table_schema=current_schema() and table_name like 'table_%'
                order by total_table_size
            ) as sizes;

결과:

 database  | total_database_size | schema_name | table_name | total_table_size | table_size | index_size
-----------+---------------------+-------------+------------+------------------+------------+------------
 vigneshdb | 1586 MB             | corpdata    | table_aaa  | 16 kB            | 0 bytes    | 8192 bytes
 vigneshdb | 1586 MB             | corpdata    | table_bbb  | 24 kB            | 0 bytes    | 16 kB
 vigneshdb | 1586 MB             | corpdata    | table_ccc  | 640 kB           | 112 kB     | 488 kB
 vigneshdb | 1586 MB             | corpdata    | table_ddd  | 9760 kB          | 3152 kB    | 6568 kB
 vigneshdb | 1586 MB             | corpdata    | table_eee  | 1120 MB          | 311 MB     | 808 MB

인간화 형식으로 표현되어 bytes, kB, MB, GB, 및 TB.

bytes~ kB에서 시작10240 bytes

bytesMB-에서 시작 10485248 bytes= 10239.5 kB~10 MB

bytesGB-에서 시작 10736893952 bytes= 10239.5 MB~10 BG

bytesTB-에서 시작 10994579406848 bytes= 10239.5 GB~10 TB

모든 단위 변환은 10 + <unit>.

참고로 -Postgres 공식 문서


답변

SELECT
   relname as "Table",
   pg_size_pretty(pg_total_relation_size(relid)) As "Size",
   pg_size_pretty(pg_total_relation_size(relid) - pg_relation_size(relid)) as "External Size"
   FROM pg_catalog.pg_statio_user_tables ORDER BY pg_total_relation_size(relid) DESC;

여기에서 가져옴 https://wiki-bsse.ethz.ch/display/ITDOC/Check+size+of+tables+and+objects+in+PostgreSQL+database


답변

select table_name,n_live_tup, pg_size_pretty(pg_relation_size(table_name))
from information_schema.tables
inner join pg_stat_user_tables  on table_name=relname
where table_schema = 'public'
order by 2 desc

또 다른 대안


답변

가장 많은 공간을 사용하는 테이블을 찾아야했습니다.

다른 답변을 바탕으로 해당 쿼리를 사용했습니다.

select table_name, pg_size_pretty( pg_relation_size(quote_ident(table_name)) )
from information_schema.tables
where table_schema = 'public'
order by pg_relation_size(quote_ident(table_name)) desc

다음 결과를 얻습니다.

table_name              pg_size_pretty
--------------------------------------
trade_binance           96 GB
closs_v2_binance_stash  46 GB
closs_bitfinex_stash    5725 MB
trade_bitfinex          5112 MB
...
api_requests            0 bytes
trade_huobi             0 bytes

더 큰 SSD를 사야 했어요.


답변

 select uv.a tablename, pg_size_pretty(uv.b) sizepretty
 from (select tb.tablename a, pg_table_size('schemaname.'||tb.tablename::text) b
        from pg_tables tb
        where tb.schemaname ilike 'schemaname'
        order by 2 desc
       ) uv