Skip to content

PostgreSQL #
Find similar titles

고성능 Open source Relational database

관련 소프트웨어

  • Citus: PostgreSQL을 이용하여 구현한 분산 데이터베이스

관련 정보

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 #

Suggested Pages #

web biohackers.net
0.0.1_20140628_0