这个异常是找不到 未发现类。
myeclipse 里集成了hibernate3,你先配置数据库透视图,测试一下能不能通。oracle是装在你的本机还是在远程?如果是远程,可以用PL/SQL测一下。看看是不是驱动版本不对,驱动加上还要进行设置
oerr ora 14400
14400, 00000, "inserted partition key does not map to any partition"
// *Cause: An attempt was made to insert a record into, a Range or Composite
// Range object, with a concatenated partition key that is beyond
// the concatenated partition bound list of the last partition -OR-
// An attempt was made to insert a record into a List object with
// a partition key that did not match the literal values specified
// for any of the partitions.
// *Action: Do not insert the key. Or, add a partition capable of accepting
// the key, Or add values matching the key to a partition specification
你的分区定义得有问题或插入的关键字不对所致,没有建缺省分区或最大值和最小值定义不合理。
1. 是报错的。
2. 这是因为在使用Oracle自动分区插入数据时,可能存在一些问题导致出现ORA-14400错误。
这个错误通常是由于插入的数据不符合分区的规则或者分区键的定义不正确所引起的。
3. 如果遇到ORA-14400错误,可以检查插入的数据是否满足分区的规则,例如是否符合分区键的数据类型、范围等要求。
另外,还可以检查分区键的定义是否正确,包括分区键的数据类型、范围、分区策略等。
如果仍然无法解决问题,可以查看Oracle的错误日志或者咨询专业人士进行进一步的排查和解决。