Guest User

Untitled

a guest
Jan 16th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. 0 - Success
  2. 1 - Warning
  3. 2 - Exception
  4.  
  5. mysqldump.exe --user USERNAME --password=PASSWORD --database DATABASE > dump.sql
  6.  
  7. REM Check for error
  8. if %ERRORLEVEL% NEQ 0 (goto ERROR)
  9.  
  10. echo MySQL was dumped successfully
  11. goto :EOF
  12.  
  13. :ERROR
  14. echo Error occured
  15. exit
Add Comment
Please, Sign In to add comment