I am an intern and I was asked to do some research on SQL 2008 data compression. We want to store several parts of Outlook emails in a table. The problem is that we want to keep the entire body of the email in the field, but then we want to compress it. Using Char () will not store the entire object, but will allow compression ... using varchar () will store the whole object, but will not allow compression. Any ideas on how to store the whole body and compress it?
Thank you for your responses!
source share