Database/PostgreSQL

sql 파일 실행시키기

Tongchun 2017. 9. 27. 20:37

DB을 사용하다보면 간혹 대량의 데이터를 Insert하거나 많은 쿼리를 한꺼번에 처리해야 할 때가 있다.

그럴때는 sql파일을 만들어서 처리하면 간단하다.


sql 파일은 아래처럼 sql 쿼리를 작성하고 파일 확장자를 .sql로 한다.

insert into words (word, means, example) values ('zoom through', '(~을) 획 통과하다', 'abcd');
insert into words (word, means, example) values ('zoom up', '(차가) 달려와 멈추다', 'qwer');

위와같은 insert 쿼리가 몇 백개씩 처리해야 할 경우 word_insert.sql파일로 만들어서 처리한다.

[openpyxl을 이용해서 sql 쿼리문 만들기]


sql파일을 만들었다면 아래 명령으로 sql 파일을 처리한다.

먼저 데이터베이스 소유 계정으로 변경한 후 psql -d <데이터베이스> -f <sql 파일명> 명령을 하면 된다.

$ su tongchun
$ psql -d tongchun -f word_insert_1.sql

sql 파일의 쿼리가 정상적이라면 모두 실행된다.