row_format=compressed

2003-11-27 Thread jaeani
anybody knows when row_format=compressed will work? and what means row_format=default? . that it´s not compressed? thanks __ WEB.DE FreeMail wird 5 Jahre jung! Feiern Sie mit uns und nutzen Sie die neuen Funktionen

Re: "ROW_FORMAT=compressed" has no effect on db file sizes

2001-10-31 Thread Bennett Haselton
INT UNSIGNED NOT > NULL); > > > > and another one with the command: > > > > CREATE TABLE pet2 (name VARCHAR(20), owner VARCHAR(20), species > VARCHAR(20), sex CHAR(1), birth DATE, death DATE, id INT UNSIGNED NOT > NULL) ROW_FORMAT=compressed; > > From the manu

Re: "ROW_FORMAT=compressed" has no effect on db file sizes

2001-10-30 Thread Dan Nelson
> > CREATE TABLE pet2 (name VARCHAR(20), owner VARCHAR(20), species VARCHAR(20), sex >CHAR(1), birth DATE, death DATE, id INT UNSIGNED NOT NULL) ROW_FORMAT=compressed; >From the manual: :`ROW_FORMAT' Defines how the rows should be stored. Currently : this o

"ROW_FORMAT=compressed" has no effect on db file sizes

2001-10-30 Thread Bennett Haselton
CHAR(1), birth DATE, death DATE, id INT UNSIGNED NOT NULL) ROW_FORMAT=compressed; and then populated both of them with 10,000 rows of data, from a file "pet.txt" with 10,000 lines of text, created with the perl script: >>> open(PET, "> pet.txt"); for (my $i = 1;