'database/postgres_ppas'에 해당되는 글 16건

  1. 2016.09.30 postgresql(ppas) table의 내용을 파일로 extract하는 작업

반응형

postgresql (ppas)  table의 내용을 파일로 extract하는 작업

 

psql -h 호스트명(IP) -p 포트(5444) -d 데이터베이스명 -U 사용자명

psql -h 127.0.0.1 -p 5444 -d testdb -u testuser

 

\copy ( SELECT 컬럼명 FROM TABLE명 ) TO '파일명' WITH DELIMITER '|';

 

반응형
Posted by 공간사랑
,