As remembered here, when storing documents (suppose text
or xml
datatypes and EXTENDED storage) with more than 2k, it is compressed.
About table columns that was compressed, how to retrieve the compressed (binary format) of the column?
NOTE - Typical applications:
Operations as "long-term checksum of the document", like
SHA256(compressed)
.
PS: as it is a matter of convention, not needs complementar compression, inheriting the condition,SHA256(less2k? text: compressed)
.Coping or downloading compressed documents directally (without CPU consume).
PS: complementing operation (for "less than 2k row") with on-the-fly compression, when uniformity is required.