Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Table of Contents

Table of Contents
maxLevel2
minLevel2
stylenone

Code Block
languagesql
themeEmacs
titleMYSQL linenumberstrueMySQL
#To make a backup of the DB
 mysqldumpmysqldump -u [uname] -p[pass] db_name > db_backup.sql
 
#To restore the backup
mysql -u [uname] -p[pass] db_name < db_backupfile.sql


Code Block
languagesqlthemeEmacs
titleOracle
linenumberstrue
#To# To make a backup of the DB
exp username/password file=xyz.dmp
 
#To# To restore the backup
imp target_username/password FULL=Y file=xyz.dmp

...