Specifies a column to construct a dictionary code. The comparison of character strings in the dictionary code is converted into the comparison of numbers, which accelerates the query speed such as group by and filter. This hint is supported only by clusters of version 8.3.0 or later.
/* + ( no ) dict(table (column)) */
1 | SELECT /*+ dict (bitmaptbl_high (server_ip)) */ distinct(server_ip) FROM bitmaptbl_high WHERE scope_name='saetataetaeta' ORDER BY server_ip; |
The generated plan is as follows. server_ip uses the dictionary encoding:

You can use no dict to disable server_ip from using dictionary encoding.
1 | SELECT /*+ no dict (bitmaptbl_high (server_ip)) */ distinct(server_ip) FROM bitmaptbl_high WHERE scope_name='saetataetaeta' ORDER BY server_ip; |