Hi,
I am trying to use sp_estimate_data_compression_savings to get the space estimates on SQL Server 2014 SP2 for using compression but it is showing 0 value in the size_with_requested_compression_settings (KB)column;
EXEC sp_estimate_data_compression_savings 'dbo','productionhistory', null, NULL, NONE;
EXEC sp_estimate_data_compression_savings 'dbo','productionhistory', null, NULL, ROW;
EXEC sp_estimate_data_compression_savings 'dbo','productionhistory', null, NULL, PAGE;
What could be the reason for this? Thanks