>>>>> "BR" == Brian Reichert <reichert@stripped> 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.