16 lines
456 B
Bash
Executable file
16 lines
456 B
Bash
Executable file
#!/bin/bash
|
|
# ============================================================================
|
|
# Generate Report of Remaining Corrupted Data
|
|
# ============================================================================
|
|
|
|
DB_USER="root"
|
|
DB_PASS="secureRootPassword"
|
|
DB_NAME="cmc"
|
|
CONTAINER="cmc-db"
|
|
|
|
docker exec $CONTAINER mariadb \
|
|
-u $DB_USER \
|
|
-p$DB_PASS \
|
|
--default-character-set=utf8mb4 \
|
|
$DB_NAME < scripts/report_remaining_corruption.sql
|