Question regarding ZORDER option of OPTIMIZE

leos1
New Contributor II

Is the order of the columns in ZORDER important? For example, does ZORDER BY (product, site) and ZORDER BY (site, product) produce the same results?

-werners-
Esteemed Contributor III

It is not important, or at least way less important than with a linear order by.

I cannot guarantee that the resulting files will be exactly the same, but z-ordering is not the same as a classic order by where we first order by col1 and then col2 etc. It will interleave the order columns and aim for locality on this 'combined' column.

View solution in original post

leos1
New Contributor II

thanks for the quick reply