Limits the number of distinct values in columns that implicitly load as NBit FP.
0 – 2,147,483,647
1,048,576
Option can be set at the database (PUBLIC) or user level. When set at the database level, the value becomes the default for any new user, but has no impact on existing users. When set at the user level, overrides the PUBLIC value for that user only. No system privilege is required to set option for self. System privilege is required to set at database level or at user level for any user other than self.
Requires the SET ANY PUBLIC OPTION system privilege to set this option. Can be set temporary for an individual connection or for the PUBLIC role. Takes effect immediately.
FP_NBIT_AUTOSIZE_LIMIT applies to databases running where FP_NBIT_IQ15_COMPATIBILITY='OFF'. If FP_NBIT_IQ15_COMPATIBILITY='ON', the database engine ignores this option.
FP_NBIT_AUTOSIZE_LIMIT and FP_NBIT_LOOKUP_MB establish a ceiling for sizing NBit columns during data loads. As long as the number of distinct values is less than FP_NBIT_AUTOSIZE_LIMIT and the total dictionary size (values and counts) is less the FP_NBIT_LOOKUP_MB, the column loads as an NBit. If the load exceeds the FP_NBIT_AUTOSIZE_LIMIT but is less than FP_NBIT_ROLLOVER_MAX_MB, the column rolls over to Flat FP.
DML operations that exceed the FP_NBIT_ROLLOVER_MAX_MB and FP_ENFORCE_LIMITS='ON' rollback and report an error. If the FP_NBIT_ENFORCE_LIMITS='OFF', the column transitions to the next NBit level.
sp_iqindexmetadata returns details about Flat FP or NBit FP columns. sp_iqrebuildindex can change explicit or implicit NBit FP column limits, or reformat the default column index as Flat FP or NBit FP.