All thing of the world!

Postgresql pg_size_pretty 설명 : 포스트그레스큐엘 함수 본문

IT/Postgresql DBMS

Postgresql pg_size_pretty 설명 : 포스트그레스큐엘 함수

WorldSeeker 2021. 4. 14. 16:34

1. 함수의 목적

   

    Postgresql pg_size_pretty 함수는 바이트 단위의 크기를 사람이 쉽게 읽을 수있는 text 형식으로 변환한다. gb, tb, mb는 가장 가까운 단위로 posgtresql이 알아서 표현한다. 1kB는 1024 바이트, 1MB는 10242 = 1048576 바이트.

 

 

2. 샘플을 통한 개념 퀵뷰

 

    SELECT pg_size_pretty(pg_indexes_size('example'));

 

    pg_size_pretty

    ----------------------

    1,024kB

 

3. 사용방법

 

    pg_size_pretty ( numeric )

    pg_size_pretty ( bigint)

    

4. 함수 PARAMETER 설명

 

[numeric] [bigint]

numeric 혹은 bigint타입의 데이터를 입력한다.

 

 

5. 다양한 샘플 표현

 

1) 1000000000000을 GB로 변환

 

SELECT pg_size_pretty(1000000000000);

 

 Posgresql 내장함수 모음 : atotw.tistory.com/category/IT/Postgresql%20DBMS

Comments