? The default value is TABLE_SCAN,INDEX_SCAN, which means that all searches that can use indexes do use them,and searches without any indexes use table scans.
? To use hashing for any searches that do not use a primary or unique key, set thisoption to INDEX_SCAN,HASH_SCAN. Specifying INDEX_SCAN,TABLE_SCAN,HASH_SCAN has the same effect as specifying INDEX_SCAN,HASH_SCAN.
? To force hashing for all searches, set thisoption to TABLE_SCAN,HASH_SCAN.