PostgreSQL
#
Find similar titles
- (rev. 16)
- Hyungyong Kim
Structured data
고성능 Open source Relational database
관련 소프트웨어
- Citus: PostgreSQL을 이용하여 구현한 분산 데이터베이스
관련 정보
- Optimizing Postgres full text search in Django : Django에서 full text search 최적화
- PostgreSQL로 배우는 SQL 기초
- 구식 포스트그레SQL이 다시 유행하는 이유
- MySQL vs PostgreSQL, 뭣이 중헌디 뭣이!? : MySQL에 비해 좋지 않다는 얘기들
- Django에서 PostgreSQL이 선호되는 이유?
- MySQL is done, it's the Postgre Age
- django-postgrespool
- PostgreSQL full text search with Django
- Fixing Database Connections in Django
OS X 설치 및 구동
$ brew install postgresql
$ initdb /usr/local/var/postgres -E utf8
$ postgres -D /usr/local/var/postgres
기본명령
$ createuser postgres
$ dropuser postgres
$ createuser -s postgres ## superuser
$ createuser -d username ## allow create db
$ psql -U username
username=> create database dbname;
데이터 덤프 및 로드
pg_dump dbname > outfile
psql dbname < infile
각종 팁
- pg_dump 시 -F c 옵션을 썼다면 psql로 로드되지 않는다 pg_restore로 해야함. 10배 정도 용량 절약효과
- PostgreSQL 한글정렬이 잘 안되는 문제가 있음. LC_COLLATE="C" 환경설정 한 후, initdb 를 해야 한다고 함. http://tech.jinto.pe.kr/165
Incoming Links #
Related Codes (Code 0) #
Suggested Pages #
- 0.445 Time series database
- 0.055 Biopython
- 0.025 Database
- 0.025 Hyungyong Kim
- 0.025 SQL
- 0.025 DNS
- 0.024
- 0.023 C++
- 0.022 C
- 0.021
- More suggestions...