+1 vote
in Netezza by
How do you check the rows in a table are equally distributed in all SPU’s or not?

1 Answer

0 votes
by

To check the distribution of rows run the following query

SELECT data sliced, COUNT(*)FROM GROUP BY data sliced

...