DailyBkup Documentation

Self-help reference for backup jobs, cron, cloud destinations, migration checks, and operational troubleshooting.

Documentation / Destination DB Exists FAIL

Error: Destination DB Exists FAIL

Create or grant access to the target database and rerun migration pre-flight.

Meaning

Destination database name is missing or inaccessible with configured credentials.

Mitigation

  1. Create target schema if it does not exist.
  2. Grant destination DB user privileges on that schema.
  3. Verify exact database name (case/typo checks).
  4. Run pre-flight again and verify PASS.
Example
mysql -h <db_host> -P <db_port> -u <db_user> -p
CREATE DATABASE <db_name>;