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 |
Tags
- 국민은행(기업)
- DOTCOM 마케팅 설계자 SECRET
- php excel
- 복구
- php 업로드 파일 삭제
- ZipArchive 오류
- disk full
- error 1728
- php 7.3
- 갈레라
- php zip 모듈
- user style
- mysql.proc 오류
- author style
- nginx
- centos7
- php 파일 삭제
- CSS
- OTP 오류
- MariaDB
- postfix
- Oracle
- nginx 1.12.0
- html 구성
- OTP 보정오류
- disk 100% 사용
- 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