Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- STF
- nohup
- ssh
- postgres
- port forwarding
- 28015
- Jupyter Notebook
- Jupyter
- create table
- rethinkdb
- openpyxl
- SWIFT
- insert
- perfect
- postgresql
- nGrinder
- PYTHON
- appium
- ftp
- ubuntu
- sshpass
- centos
- 실행권한
- kitura
- STF_PortForwarding
- GoCD
- Materials
- nmap
- mysql
- appium server
Archives
- Today
- Total
don't stop believing
sql 파일 실행시키기 본문
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파일로 만들어서 처리한다.
sql파일을 만들었다면 아래 명령으로 sql 파일을 처리한다.
먼저 데이터베이스 소유 계정으로 변경한 후 psql -d <데이터베이스> -f <sql 파일명> 명령을 하면 된다.
$ su tongchun $ psql -d tongchun -f word_insert_1.sql
sql 파일의 쿼리가 정상적이라면 모두 실행된다.
'Database > PostgreSQL' 카테고리의 다른 글
Query를 Log 파일에 남겨 봅시다. (0) | 2018.03.06 |
---|---|
외부 서버에서 postgresql 접속하기 (2) | 2017.09.27 |
alter table 사용하기 (0) | 2017.09.26 |
Table 관련 기본 다루기 (0) | 2017.09.26 |
postgresql 데이터 타입과 옵션 (0) | 2017.09.14 |
Comments