What is "OVERHEAD" in SQL?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    What is "OVERHEAD" in SQL?

    Well i googled it and answers i got were how to solve this and that it slows down database response so i did optimize tables but i still would like to know what OVERHEAD is and what causes it? if anyone knows
    libra.wen.ru

    #2
    it's just temporary that mysql uses to store data in, just optimize your database and will dissapear

    Comment


      #3
      Idea...
      PHP Code:
      mysql_query("DELETE FROM `table` WHERE `bla` = '".$bla."'");
      echo 
      'Deleted something!';
      mysql_query("OPTIMIZE TABLE `table`"); 
      Or use this as an option: optimize-all-tables-in-a-mysql-database
      <!DOCTYPE html PUBLIC "-//WAPFORUM.RS

      Comment

      Working...
      X