Versions Compared

Key

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


Table of Contents

Table of Contents
maxLevel2
minLevel2
stylenone

Info

Starting October 11, 2024 (Zephyr Enterprise 8.2), the Zephyr Enterprise documentation moved from its current location on Atlassian to a dedicated, standalone Zephyr Enterprise documentation page. Please see: https://support.smartbear.com/zephyr-enterprise/docs/en/zephyr-enterprise/zephyr-installation-and-upgrade-guides/upgrade-zephyr-enterprise/zephyr-on-premise-upgrade-instructions/take-database-backup.html


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
languagesql
themeEmacs
titleOracle
linenumberstrue
#To# To make a backup of the DB
exp username/password file=xyz.dmp
 
# #ToTo restore the backup
imp target_username/password FULL=Y file=xyz.dmp

...