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
- 갈레라
- ZipArchive 오류
- error 1728
- author style
- centos7
- DOTCOM 마케팅 설계자 SECRET
- postfix
- php 업로드 파일 삭제
- 디스크 용량 확인
- mysql.proc 오류
- html 구성
- nginx 1.12.0
- user style
- php 7.3
- php zip 모듈
- 복구
- OTP 오류
- CSS
- php 파일 삭제
- MariaDB
- nginx
- Oracle
- disk full
- disk 100% 사용
- 국민은행(기업)
- php excel
- OTP 보정오류
- navicat
- Laravel
- wsrep
Archives
- Today
- Total
목록postgresql (1)
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 te..
윌리/DB
2016. 12. 7. 01:09