Hi,
Under high loads, is it advisable to use "delete from table" or need to drop and recreate the table. Presently i use the delete query every seven minutes or based on record count say 5000 to remove the records, which results in CPU usage always above 70% !!!!!!
In addtion to this i need to know which operation consumes more CPU the " delete from table" or the drop and re-creation process ???
Mysql Info:
Version: 4.1.12
Table Type: InnoDB
No: Of Columns: 10
Use a criteria for deleting ex: delete from <table name> where ID < and ID >
OS: Windows/Unix
--spocke