Thanks KSharp and PeterC for your responses.
I'll be loading a dataset with 32 million records into a hash object. one key and one data. please see below if my parameters for hash_test
%hash_test(rows=32000000,keycnt=1,
k1len=8,k1typ=n,
datacnt=1,d1len=8,d1typ=n
) ; run;
I tried running the macro hash_test and got the ff stats:
XMLRMEM available = 610,404,352
Actual table size: 1,024,000,000 bytes
Row size: 32 bytes
Optimal HASHEXP: 25
Given an optimal hashexp of 25, does that mean that it actually won't fit the hash object since max hashexp is 16?
Please correct me if I am wrong.
Thanks!