PostgreSQL TIPS
Jump to navigation
Jump to search
데이터베이스 사용시 pg_hba.conf 설정
- 참고주소 :: http://k.daum.net/qna/openknowledge/view.html?qid=0slhn
- 맨 뒤쪽을 md5로 맞추고 address부분을 0.0.0.0/0 으로 맞추면 어디서나 접근가능
- db를 all로 푸는것은 대단히 좋지 않다
postgreSQL관련 NHN개발자 블로그의 리뷰
postgreSQL의 데이터타입
- 참고주소-한글판 :: http://devbada.tistory.com/72
- 참고주소-영문판 :: http://www.postgresql.org/docs/9.0/interactive/datatype.html
table설계시 forign key의 지정방법
- 참고주소 :: http://bloodguy.tistory.com/entry/FOREIGN-KEY
- create tables의 field지정시
CREATE TABLE weather (
city varchar(80) references cities (city),
temp_lo int,
);
이런식으로 해주면 성공