View Single Post
  #7  
Old 04-21-2004, 09:14 PM
mikenune
Discordant
 
Join Date: Apr 2004
Location: Gukta
Posts: 359
Default

Hey everyone.

Looks like this project of mine isn't going so well. :(

laerg619, that error is happening because, when I exported the SQL dump, I told it to use a delayed insert instead of multiple inserts.

What does this mean?

Simple.

Instead of inserting each row one at a time, MySQL tries to load the whole dang table into memory before inserting it all at once into the DB!

The error you're running into is simply the MySQL daemon complaining that it doesn't have enough RAM allocated to load the entire table in it's memory.

Although you CAN change the amound of memory allocated to MySQL, it's kinda a pain. Until I get the new DB out (should be in just an hour or so) I would suggest that you not use the current DB.

The 0.5.6 DB will have this problem fixed.
Reply With Quote