Troubleshooting & Logs
Monitor, recover, and troubleshoot your migrations.
Job Monitor
Live Progress
Displays real-time progress bars for inserts and updates. Watch your migration progress in real-time with detailed statistics.
Memory Safe
Logs are smartly truncated to prevent browser memory crashes during large migrations.
Job Recovery
Resume Job
If a job fails or is killed, click "Resume Job". The tool skips already processed records and continues from where it left off.
How it works: MCDM tracks all successfully migrated records. When you resume, it automatically identifies and skips already-processed records, ensuring no duplicates or wasted effort.
Logging
Success Logs
Track all created and updated IDs. Every successful operation is logged with complete details for audit and verification purposes.
Failure Logs
Generated as <source>-<target>-failure-*.log
Contains detailed information about failed operations, including error messages and context to help you quickly identify and resolve issues.
Rich Skip Reporting
Detailed output showing why a record was skipped.
Common reasons:
- Missing Parent Key
- Validation Rule failure
- Duplicate key detected
- Required field missing
UI Access
Open logs directly from the "Failure & Skip Files" tab in the UI. No need to navigate file systems manually.
Common Issues & Solutions
Query Timeouts
Solution: Reduce PAGE SIZE in Admin Settings.
Missing Parent Keys
Solution: Check dependency order in your plan. Ensure parent objects are migrated before children.
Duplicate Keys
Solution: Verify key field uniqueness in source org. Use composite keys if single fields are insufficient.
Memory Issues
Solution: Close unused browser tabs. MCDM is already optimized for memory safety.