Text to go in the release notes:
|
This enhancement updates the data inconsistencies script (misc/maintenance/search_for_data_inconsistencies.pl) so that you can now choose what checks to run, instead of running all the checks at once (which can take a lot of time for larger libraries).
Running the script without any options now displays the help text, instead of running all the checks (for consistency with other scripts). To run all the checks at the same time, use the --check-all option.
Examples:
- Run all checks (--check-all): misc/maintenance/search_for_data_inconsistencies.pl --check-all
- Run checks for item type issues and patrons with an invalid age for their patron category: misc/maintenance/search_for_data_inconsistencies.pl --check-status --check-age
- Skip specific checks, but run all the others: misc/maintenance/search_for_data_inconsistencies.pl --skip-status --skip-title
Use misc/maintenance/search_for_data_inconsistencies.pl --help for all the check and skip options.
|