Re: How "compressable" is a typical MySQL database?

2002-02-17 Thread Joshua J . Kugler
Oh. OK. Didn't know that. Thanks. j- k- On Saturday 16 February 2002 22:26, Jeremy Zawodny wrote: > On Sat, Feb 16, 2002 at 03:56:42PM -0900, Joshua J.Kugler wrote: > > In that case, i would highly recommend using mysqldump to backup > > your databases. Simply compressing the actual

Re: How "compressable" is a typical MySQL database?

2002-02-16 Thread Jeremy Zawodny
On Sat, Feb 16, 2002 at 03:56:42PM -0900, Joshua J.Kugler wrote: > > In that case, i would highly recommend using mysqldump to backup > your databases. Simply compressing the actual DB's could give you > tables in inconsistent states, UNLESS you first shut down your DB > server, then run the back

Re: How "compressable" is a typical MySQL database?

2002-02-16 Thread Joshua J . Kugler
In that case, i would highly recommend using mysqldump to backup your databases. Simply compressing the actual DB's could give you tables in inconsistent states, UNLESS you first shut down your DB server, then run the backup. Something to think about. j- k- On Saturday 16 February 2

Re: How "compressable" is a typical MySQL database?

2002-02-16 Thread George Labuschagne
Sorry, I forgot to ask the folowing as well. When considering the amount by which text can be compressed as compared to other data types, would it be better to store numerical values as text or to store them as integer/float values. If the db needs to be compressed and backed up on a bi-weekly bas

Re: How "compressable" is a typical MySQL database?

2002-02-16 Thread tc lewis
would probably be very dependent on the data within the database. if it's a lot of text data, then very compressable, as text typically compresses nicely. if you store a bunch of binary data (images or something), then probably not as much... tar your mysql dir and gzip it, or gzip -9 or bzip2

How "compressable" is a typical MySQL database?

2002-02-16 Thread George Labuschagne
Hi list, How compressible is a typical MySQL database? Is this more dependent on the type of columns used i.e. a lot of text columns as opposed to a lot of columns containing integer values? The uncompressed size of the database is in the region of about 800-MB. Also will it suffice to only comp