backup database

  1. K

    Steps to take backup database from shell

    You can use below command to take backup of your database. # mysqldump database_name > backup.sql After that you can restore your database with below command: # mysql database_name
  2. K

    Steps to take backup database from shell

    You can use below command to take backup of your database. # mysqldump database_name > backup.sql After that you can restore your database with below command: # mysql database_name
  3. K

    Steps to create backup file of SQL server database

    You can follow below steps: Go to Enterprise Manager and expand all SQL server databases. Now click on particular database and right click on it. Now you want to select “All Tasks” and click on “Backup Database”. You have to select “Database-complete” to take complete backup. Now click on “Add”...
  4. K

    Steps to take backup and restore with mysqldump

    First take backup of your database with below command: #mysqldump -u username -p[username_password] databasename > /path_to_your_db/databasename_backup.sql Here you have to use your user name in place of “username”, your databasename and path of your database. You have to use below command to...
Top