ORA-40264: number of mining attributes (string) exceeds maximum (string) ORACLE 报错 故障修复 远程处理

文档解释

ORA-40264: number of mining attributes (string) exceeds maximum (string)

Cause: Input data was found to contain a number of mining attributes exeeding the maximum allowed.

Action: Check the input data for categorical fields with high cardinality.

这个错误的意思是挖掘的属性数量超过最大限度,常见的情况是你调用 DBMS_DATA_MINING 挖掘包,例如建立模式时,你指定的属性数超过了预先定义的限度。

Oracle错误 ORA-40264的官方解释是:

ORA-40264: number of mining attributes (string) exceeds maximum (string)

Cause: You have exceeded Oracle data mining’sMaximum Number Of Attributes production constraint.

Action: Specify a smaller number of attributes for the operation. Reduce the number of attributes using an attribute filter at build time or you can use a data filter.

常见案例

在使用DBMS_DATA_MINING,例如建立模型时,你提供的属性数量超过Oracle预定义的最大限度。

一般处理方法及步骤

1、指定少量属性,减少属性数量使用属性过滤器在构建时间或者你可以使用数据过滤器。

2、你也可以改变自定义参数,通过调整MAX_VECTOR_ATTRIBUTES设置来提高该值,使用ALTER SYSTEM SET MAX_VECTOR_ATTRIBUTES=N形式。


数据运维技术 » ORA-40264: number of mining attributes (string) exceeds maximum (string) ORACLE 报错 故障修复 远程处理