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


109

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


1
명령 줄 psql 클라이언트를 사용하는 경우 \d+정렬되지 않은 경우 간단한 정보가 표시됩니다.
cdhowie 2014

1
감사. 하지만 정렬이 필요하고 테이블이 너무 많습니다.
아무것도 - 특수 여기

1
사람들은 같은 것을 찾고 있지만 테이블 대신 데이터베이스를 찾는다. 여기에 해결책이있다 .
Skippy le Grand Gourou

1
Re psql : --echo-hidden으로 시작하면 \ d + 및 기타 백 슬래시 명령에 대해 수행 된 쿼리를 알려줍니다. 정렬 추가가 쉽습니다.
Jürgen Strobel

답변:


149
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

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


schema_name이 아니라 table_schema입니다. 첫 번째 쿼리는 괜찮 았지만 이미 psql 세션에서 무언가를 입력하기 시작하여 구문 오류가 발생했습니다.
yieldsfalsehood

OK이 코드가 작동합니다. select table_schema, table_name, pg_relation_size(table_schema||'.'||table_name) from information_schema.tables order by 3; 도움을 주셔서 감사합니다!
아무것도 - 특수 여기

이것이 내 경우에 작동하지 않는 것이 무엇인지 아십니까? stackoverflow.com/questions/40977776/...
후안 카를로스 Oropeza에게

@Sucrenoir : "작동하지 않음"은 유효한 Postgres 오류 메시지가 아닙니다. 내 대답의 쿼리가 나를 위해 작동합니다. rextester.com/KGKPR49004
a_horse_with_no_name

첫 번째 쿼리를 실행할 때 행이 없습니다. 공개 스키마를 표시 select * from information_schema.tables where table_schema = 'public';하더라도 0 행을 생성합니다 \dn. 9.5의 변경이 원인일까요?
sheepdog

71

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

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


21

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

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 공식 문서


이 예는 대문자 테이블 이름과 함께 작동하지 않습니다
Ivan Sveshnikov


4
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

또 다른 대안


2

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

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

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를 사야 했어요.


1
 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

1
제안 된 접근 방식이 도움이되는 이유에 대한 설명을 포함하면 귀하의 답변이 더 가치가있을 것입니다.
신디 마이스터

말의 대답과 비슷하며, 정렬보기가보기 쉽기 때문에 예쁜 크기로 정렬 만하면됩니다.
스파이크

"Answer"공간의 Edit 링크를 사용하여 답변에 해당 텍스트를 추가하십시오. 그러면 귀하의 기여는 StackOverflow 지침을 준수 할 것입니다 (도움말 센터에서 조금 읽으십시오) :-)
Cindy Meister
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.