ORACLE异常ORA-01843 || ORA-14411 || Invalid column index
nested exception is java.sql.SQLException: ORA-01843: not a valid month
解:看to_date(?,'yyyymmdd')还是to_date(?,'yyyy-mm-dd'),和你输入的参数格式对比
nested exception is java.sql.SQLException: Invalid column index
解:参数和数据数据输入列不匹配
ORA-14411 该 DDL 不能与其他 DDL 并行运行处理办法
解:1.查找出被锁定的会话的sid,serial#
select sid,serial# from v$session t where t.SID IN (select session_id from v$locked_object);
2.结束掉进程
alter system kill session 'sid,serial#';
作者:四叶草的诗雨
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利.

浙公网安备 33010602011771号