>>>>> "BR" == Brian Reichert <[EMAIL PROTECTED]> writes:

BR> When I try to do a mysqldump on the localhost, I get an out-of-memory
BR> error:

BR>   # mysqldump -uroot -proot customer audit_trail_271
BR>   mysqldump: Out of memory (Needed 8164 bytes)
BR>   mysqldump: Got error: 2008: MySQL client run out of memory

By default mysql client reads the whole result set into memory then
writes the output.  You can alter this behavior with the "-q" option
to mysqldump, so it writes out as it reads from the server without
buffering in memory.

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to