https://www.comparitech.com/net-admin/best-postgresql-monitoring-tools/

 

11 Best PostgreSQL Monitoring Tools - plus Free Trial Links | Comparitech

In this article we look at the 11 best PostgreSQL monitoring tools. Includes a breakdown of each product and a free trial download link.

www.comparitech.com

 

SMALL

'PostgreSQL' 카테고리의 다른 글

identity column 특성 변경하기{DEFAULT | ALWAYS}  (0) 2020.08.09
역할권한 관리  (0) 2020.08.07
PostgreSQL 11.1 한국어 문서  (0) 2020.08.02
쿼리 실행계획 비쥬얼라이징  (0) 2020.08.02
컬럼 버킷수 변경 방법  (0) 2020.08.02

https://postgresql.kr/docs/11/index.html

SMALL

'PostgreSQL' 카테고리의 다른 글

역할권한 관리  (0) 2020.08.07
11 Best PostgreSQL Monitoring tools  (0) 2020.08.02
쿼리 실행계획 비쥬얼라이징  (0) 2020.08.02
컬럼 버킷수 변경 방법  (0) 2020.08.02
CPU 모니터링  (0) 2020.08.02
 
PgAdmin
EXPLAIN (ANALYZE, COSTS, VERBOSE, BUFFERS, FORMAT JSON) 



SMALL

'PostgreSQL' 카테고리의 다른 글

11 Best PostgreSQL Monitoring tools  (0) 2020.08.02
PostgreSQL 11.1 한국어 문서  (0) 2020.08.02
컬럼 버킷수 변경 방법  (0) 2020.08.02
CPU 모니터링  (0) 2020.08.02
락 모니터링  (0) 2020.08.01
 
    -- 컬럼 버킷수 변경
	alter table t4 alter column c1 set statistics 200 ;
    
    --변경 후 확인
    select attname, attstattarget from pg_attribute
    where attrelid = (select oid from pg_class where relname = 't4')
    and attname = 'c1' ;
SMALL

'PostgreSQL' 카테고리의 다른 글

PostgreSQL 11.1 한국어 문서  (0) 2020.08.02
쿼리 실행계획 비쥬얼라이징  (0) 2020.08.02
CPU 모니터링  (0) 2020.08.02
락 모니터링  (0) 2020.08.01
Cluster 명령을 이용한 테이블레코드 정렬  (0) 2020.08.01

https://ironmask.net/355

SMALL

'PostgreSQL' 카테고리의 다른 글

쿼리 실행계획 비쥬얼라이징  (0) 2020.08.02
컬럼 버킷수 변경 방법  (0) 2020.08.02
락 모니터링  (0) 2020.08.01
Cluster 명령을 이용한 테이블레코드 정렬  (0) 2020.08.01
correlation 조회 (컬럼 정렬상태)  (0) 2020.08.01
1
2
3
select pid, wait_event_type||'-'||wait_event wait
      ,pg_blocking_pids(pid) holder, query
from pg_stat_activity ;
cs
SMALL

'PostgreSQL' 카테고리의 다른 글

컬럼 버킷수 변경 방법  (0) 2020.08.02
CPU 모니터링  (0) 2020.08.02
Cluster 명령을 이용한 테이블레코드 정렬  (0) 2020.08.01
correlation 조회 (컬럼 정렬상태)  (0) 2020.08.01
인덱스조회  (0) 2020.08.01

Bitmap Index Scan - 인덱스와 테이블 간의 정렬관계가 불량할 때 사용됨.


cluster t1 using t1_ix01 ; -- 인덱스로 테이블 레코드정렬 

 

주의: DML뿐아니라 SELECT 와도 락 호완성이 없다. 

사용자접속을 막고 작업하는 것이 좋다. 

SMALL

'PostgreSQL' 카테고리의 다른 글

CPU 모니터링  (0) 2020.08.02
락 모니터링  (0) 2020.08.01
correlation 조회 (컬럼 정렬상태)  (0) 2020.08.01
인덱스조회  (0) 2020.08.01
PostgeSQL 선언적 파티셔닝 테스트  (0) 2020.06.26
1
2
3
select tablename, attname, correlation
from pg_stats
where tablename = 'mber' ;
cs
SMALL

'PostgreSQL' 카테고리의 다른 글

CPU 모니터링  (0) 2020.08.02
락 모니터링  (0) 2020.08.01
Cluster 명령을 이용한 테이블레코드 정렬  (0) 2020.08.01
인덱스조회  (0) 2020.08.01
PostgeSQL 선언적 파티셔닝 테스트  (0) 2020.06.26
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--1) 인덱스목록
select *
from pg_indexes i inner join information_schema.columns c
on i.tablename = c.table_name
where i.schemaname='public'
;
 
 
--2) 인덱스컬럼정 
select i.indexname, array_to_string(array_agg(column_name), ',')
from pg_indexes i inner join information_schema.columns c
on i.tablename = c.table_name
where i.schemaname='public'
group by i.indexname
order by i.indexname
;
cs
SMALL

'PostgreSQL' 카테고리의 다른 글

CPU 모니터링  (0) 2020.08.02
락 모니터링  (0) 2020.08.01
Cluster 명령을 이용한 테이블레코드 정렬  (0) 2020.08.01
correlation 조회 (컬럼 정렬상태)  (0) 2020.08.01
PostgeSQL 선언적 파티셔닝 테스트  (0) 2020.06.26

partitioning test.pas
0.01MB

메모장 또는 아크로에딧으로 열기 

SMALL

'PostgreSQL' 카테고리의 다른 글

CPU 모니터링  (0) 2020.08.02
락 모니터링  (0) 2020.08.01
Cluster 명령을 이용한 테이블레코드 정렬  (0) 2020.08.01
correlation 조회 (컬럼 정렬상태)  (0) 2020.08.01
인덱스조회  (0) 2020.08.01

+ Recent posts