Hendrik Bock <[EMAIL PROTECTED]> wrote: > > Then i created a third database and added 50.000 blobs with 800 bytes each > and then 50.000 blobs with 150 bytes each - the resulting file was > 61.681.664 bytes. >
The data is stored in rowid order. So unless you arranged for the rowids of the 150-byte blobs to interleave with the rowids of the 800-byte blobs, the 150-byte and 800-byte blobs will not be adjacent to one another and it will be impossible for them to coexist on the same page. -- D. Richard Hipp <[EMAIL PROTECTED]> ----------------------------------------------------------------------------- To unsubscribe, send email to [EMAIL PROTECTED] -----------------------------------------------------------------------------

