Hi Kevin
Yes, I manually deleted the tables (AFTER making a backup), and had the following on loop while doing it;
while true; do /usr/bin/php /var/www/html/osticket/api/cron.php; echo "Done"; sleep 10; done
I also had the site "offline" while doing it.
Something that may help others;
To backup the database: mysqldump osTicket > osTicket.sql
To restore the database: mysql -u root -p osTicket < osTicket.sql
I'll be creating a script that will back up the Database a little more often than a week - Just in case...
AND I'll ensure the site is set to "Offline" mode with the above "while true" running before I make any more changes
The site was down for half a day, not a good look (On my behalf)