nugawiki # archive of experience and knowledge

nuga@nugawiki: $ cat ./docs/$1

DB 백업 정책 세팅

업데이트 2026-07-22 조회수
# Oracle Data Pump
expdp system/<PASSWORD> dumpfile=FULLDMP.dmp directory=dpump_dir logfile=expdp_FULLDMP.log full=y
expdp system/<PASSWORD> dumpfile=MUNHWA.dmp directory=dpump_dir logfile=expdp_MUNHWA.log schemas=MUNHWA

# MySQL 단일 DB
mysqldump \
  --user=root --password \
  --compact --extended-insert --quick --hex-blob \
  --single-transaction \
  --events --routines --triggers \
  --databases jnagrinetdb > 20200921_jnagrinetdb.sql

# MySQL 전체
mysqldump \
  --user=root --password \
  --compact --extended-insert --quick --hex-blob \
  --single-transaction \
  --events --routines --triggers \
  --all-databases > 20200921_all.sql

./comments