The skew value of the table is irrelevant as it is reflecting the S_SK,C_SK combination.
try
select top 100 hashrow(S_SK), count(*)
from spa_usage1
group by 1
order by 2 descPPI - for this specific table you might be better of without PPI...
↧