文档解释
ORA-40105: input data incompatible with model signature
Cause: The data provided for this post-build operation is in format different from that used for model build.
Action: Provide data whose attribute data types match the build data. Input data attributes must have the same data types as those described in the model signature for the model.
ORA-40105: input data incompatible with model signature 意味着你正在尝试在模型中使用与模型签名不兼容的数据。
官方解释
ORA-40105: 输入数据与模型签名不兼容
Cause: 尝试使用与模型签名不兼容的数据。
Action: 确保传递给模型的输入数据类型相互兼容,以满足模型的签名要求。
常见案例
1. 尝试使用扩展数据类型绑定,但输入类型与模型签名定义的类型不一致。
2. 通过模型的参数值无法满足模型签名的要求。
3. 尝试使用与模型签名指定的类型完全不同的数据。
一般处理方法及步骤
1. 检查模型签名是否匹配输入数据类型,并确保其类型兼容。
2. 详细检查模型输入及参数值,确保它们满足签名要求。
3. 检查所有的输入数据类型,查看是否与模型签名兼容。
4. 使用正确的数据类型重新尝试绑定模型。