Hi, i have the same request. As for me the purpose is to optimize performances. I am storing a column which holds a hmac of some other fields (for verification purpose) as a varbinary or a varchar. This gives me a pseudo random, thus amost not compressible. When loading data, the loader seem to work very hard to compress this while it is mostly useless (i end up with compression ratio near 1:1). That would be a nice addition to be able to simple disable compression for this column. As a workaround, i am planning to try storing my checksum in multiple bigint columns, which compression/decompression speed is usually much faster.
Thanks,