in reply to Best Perlish way to test if a mysql table exists?

How about:

@names = $dbh->tables( '', '', 'r6019', 'TABLE');

If you get something back you are good to go, if not skip it and go to the next table. I would also index either the misses or hits (lessor of the two) if you might hit the same table multiple times.

g_White