You can then add the desired compression type to a table as follows:EXEC sp_estimate_data_compression_savings [Schema], [TableName], NULL, NULL, 'ROW'
ALTER TABLE [TableName]REBUILD WITH (DATA_COMPRESSION = PAGE)
You can then add the desired compression type to a table as follows:EXEC sp_estimate_data_compression_savings [Schema], [TableName], NULL, NULL, 'ROW'
ALTER TABLE [TableName]REBUILD WITH (DATA_COMPRESSION = PAGE)
The following SQL is a good means to split an update on a massive table into smaller chunks, whilst reducing blocking. The method is to upda...