Versions Compared

Key

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

...

Code Block
languagesql
themeEmacs
titleMYSQL
linenumberstrue
#To TakeMake a backup of the dumpDB 
 mysqldump -u [uname] -p[pass] db_name > db_backup.sql
 
#To resoreRestore the Dumpbackup
mysql -u [uname] -p[pass] db_name < db_backupfile.sql

...

Code Block
languagesql
themeEmacs
titleOracle
linenumberstrue
#To Take Make a backup of the dump DB
exp username/password file=xyz.dmp
 
#To restoreRestore the Dumpbackup
imp target_username/password FULL=Y file=xyz.dmp

...