Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Table of Contents


MYSQL
#To make a backup of the DB
 mysqldump -u [uname] -p[pass] db_name > db_backup.sql
 
#To restore the backup
mysql -u [uname] -p[pass] db_name < db_backupfile.sql
Oracle
#To make a backup of the DB
exp username/password file=xyz.dmp
 
#To restore the backup
imp target_username/password FULL=Y file=xyz.dmp
  • No labels