Pages in a compressed table may have a combination of row-compressed, page-compressed, and uncompressed data.
create table sales_data (isbn bigint not null, au_id varchar(11)not null, total_sales int not null)
4750984443, '903-94-9344', 34733 2385837442, '346-94-5593', 50945 2388347442, '346-94-5593', 50945
sales_data is uncompressed:
alter table sales_data set compression = row
4783023685, '887-49-9984', 45009 3894350422, '776-45-9045', 89667 3349580094, '884-59-9983', 84855
Only the new data is compressed:
alter table sales_data set compression = none
6590345093, '439-49-9943', 485844 3458940330, '559-40-3999', 21003 4859390403, '884-30-0200', 790499
SAP ASE does not compress the new data, but retains the older data in a compressed state:
Name Owner Object_type Object_status Create_date ---------- ----- ----------- ------------------------ ------------------- sales_data dbo user table contains compressed data Apr 8 2011 4:36PM