Hi David,
Unfortunately there's no way to batch delete terms through the
ICA-AtoM web interface.
If you have access to the MySQL database, either through the command
line tool (
http://dev.mysql.com/doc/refman/5.5/en/mysql.html) or a
web interface like phpMyAdmin
(
http://www.phpmyadmin.net/home_page/index.php) you can delete the
terms using a SQL delete.
Always make a backup before directly modifying the MySQL database
and be sure to understand what the commands below mean before you
use them.
Terms are stored in three tables (due to our inheritance and
internationalization data model):
1) object
2) term
3) term_i18n
You can delete *all* subject terms from all three tables via the
following SQL command:
DELETE FROM object WHERE id IN (SELECT id FROM term WHERE
taxonomy_id = 35);
You can delete all subject terms created after a certain date/time
(i.e. 2012-06-06 10:05:00) with this SQL command:
DELETE FROM object WHERE id IN (SELECT id FROM term WHERE
taxonomy_id = 35) AND created_at > '2012-06-06 10:05:00';
Please be aware that timezone set on your server is not
necessarily the same as your local time zone.
Cheers,
David Juhasz
--
David Juhasz
Director, Technical Services
Artefactual Systems Inc.
www.artefactual.com