일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- posgresql
- 테이블목록
- 네이버클라우드
- 와콤뱀부슬레이트
- SQL
- shape내려받기
- 순댓국밥
- postgrest
- 데이터비교
- qgis
- posgtresql
- 테이블 중복조회
- postgis
- table비교
- pygqis
- HP스펙터x360
- HP스펙터
- 공주페이
- table
- Openlayers
- 하위디렉토리
- psql
- 테이블리턴
- shp내려받기
- idw
- tablewidget
- ST_InvDistWeight4ma
- PostgreSQL
- rc.local
- Python
- Today
- Total
목록PostgreSQL (7)
오픈소스의 일상
즉. 세션을 물고 있어서 세션을 끊어야 한다. postgres=# select pg_terminate_backend(pid) postgres-# from pg_stat_activity postgres-# where datname = 'OOOOOO'; pg_terminate_backend ---------------------- t (1개 행) 그리고 데이터베이스를 삭제하면 잘 삭제된다. ㅎ
SELECT * FROM pg_catalog.pg_tables WHERE schemaname = '스키마' AND tableowner = '사용자' AND tablename = '테이블명'
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/bsXmkq/btrrKIrJ4dc/K3AucUpKe7qp6usyoaKipK/img.png)
SQL로 공간데이터를 관리하고 있는분들만 보세요 PostGIS 2.X 사용하고 있다면 하루빨리 PostGIS 3.1.X 으로 업그레이드 시키세요. https://trac.osgeo.org/postgis/wiki/UsersWikiPostgreSQLPostGIS UsersWikiPostgreSQLPostGIS – PostGIS Current best As of 03 September 4th, 2021 these versions are latest and give you best stable feature coverage. PostGIS Support Matrix Versions of PostgreSQL supported by which versions of PostGIS PostgreSQL versionPo..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/brTgmk/btrpYmcGIUE/QqtuwrEpVF3nrkKMkOcyRk/img.png)
1. 설치 참고 : https://postgrest.org/en/stable/tutorials/tut0.html#step-3-install-postgrest Tutorial 0 - Get it Running — PostgREST 9.0.0 documentation Welcome to PostgREST! In this pre-tutorial we’re going to get things running so you can create your first simple API. PostgREST is a standalone web server which turns a PostgreSQL database into a RESTful API. It serves an API that is customized based..
psql -h flas -d flas_db -U flas_gis -d idn_point_5181.dump 조만간 자세히 작성하겠습니다.
SELECT *FROM (SELECT [컬럼] , row_number() over (partition by [컬럼]) as rowFROM [테이블] ) aWHERE a.row > 1 PostgreSQL 테이블 중복조회 - 테이블안에 중복된 값을 찾는 쿼리