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 | 31 |
Tags
- html 구성
- ZipArchive 오류
- 국민은행(기업)
- nginx
- php 업로드 파일 삭제
- author style
- 갈레라
- wsrep
- MariaDB
- Laravel
- Oracle
- error 1728
- php 파일 삭제
- DOTCOM 마케팅 설계자 SECRET
- centos7
- nginx 1.12.0
- CSS
- 복구
- php zip 모듈
- user style
- OTP 오류
- navicat
- mysql.proc 오류
- disk 100% 사용
- php 7.3
- postfix
- php excel
- 디스크 용량 확인
- OTP 보정오류
- disk full
Archives
- Today
- Total
Jehna :)
Postgresql 백업/복구 본문
종종 백업이나 복구 할 때, 사용하는 명령어
1. 특정 테이블만 백업 / 복구
1) 백업
pg_dump -U [소유주] [DB명] -t [테이블 명] > [백업 파일명]
ex) pg_dump -U user00 testDB -t userInfo > userInfo_dump
2) 복구
pgsql -U [DB 사용자 명] -f [백업 파일명] [DB명]
ex) pgsql -U user00 -f userInfo_dump testDB
2. 특정 DB만 백업 / 복구
1) 백업
pg_dump -U [소유주] [DB명] > [백업 파일명]
ex) pg_dump -U user00 testDB > backupfile
2) 복구
psql -U [소유주] [DB명] < [백업 파일명]
ex) psql -U user00 testDB < backupfile
'윌리 > DB' 카테고리의 다른 글
[Navicat] 오라클 ORA-12737 에러 해결방법 (0) | 2018.03.21 |
---|---|
[Oracle] 문자셋(characterset) 확인 및 변경 (0) | 2018.03.21 |
Navicat으로 오라클(sys) 접속하기 (1) | 2018.03.19 |
[Oracle] 오라클 sys 암호 변경 (0) | 2018.03.19 |
pgsql 테이블 owner 한번에 변경 (0) | 2017.09.11 |