I've got a search_data table taking up 2.5GB of space.
I presume it's something to do with MySQL search queries but I'd like to reclaim some space - can I safely delete it?
Edit By @RolandoMySQLDBA
Please add the following information into this question
SELECT VERSION();
SHOW VARIABLES LIKE 'innodb_file_per_table';
SHOW CREATE TABLE search_data\G
search_datais not a built-in table - this would indicate it is likely from something you've installed on the server. Deleting that table would be entirely at your own risk - without knowing more detail it is difficult to help you. – Max Vernon Oct 29 '12 at 14:48