Wierzę, że będziesz musiał napisać scenariusz w dowolnym języku, który lubisz najbardziej. Możesz uzyskać listę tabel w schemacie z bazy danych information_schema, a następnie iterować po nich, skracając dowolne.
Zapytanie wyglądałoby mniej więcej tak:
SELECT table_name FROM information_schema.tables WHERE table_schema = 'test' AND table_name NOT IN ('table1', 'table2');
Edytuj :Oto przykład użycia Perla:
use strict;
use warnings;
use DBI;
my $dbh = DBI->connect("some_dsn");
my $sth = $dbh->prepare(q{SELECT table_name FROM information_schema.tables WHERE table_schema = 'test' AND table_name NOT IN ('table1', 'table2')});
$sth->execute();
$sth->bind_columns(\my $table_name);
while($sth->fetch) { $dbh->do(q{TRUNCATE TABLE } . $table_name) }