ORA-19034: Type not supported during schema generation
Cause: The object type contained a type that is not supported for schema generation.
Action: Use a different type or do not generate a schema.
ORA-19034: Type not supported during schema generation错误通常是由于某些不支持的数据类型引起的,在编写脚本的过程中,脚本的数据类型不支持此数据库的schema生成时会出现此错误。
ORA-19034: Type not supported during schema generation异常表示架构生成期间不支持某种特定类型。
当使用非Oracle类型(如SYS_REFCURSOR)创建新表时,该错误可能会发生。
1.确认出错的字段类型是什么,比如SYS_REFCURSOR。
2.检查实体是否使用了不支持的类型;
3.使用Oracle支持的数据类型更改该字段;
4.重新执行脚本,看看这个问题是否已解决。