Insert Query无法在sql developer上运行。显示错误ORA-00600

时间:2017-02-03 17:18:43

标签: oracle sql-insert ora-00600

我是plsql和oracle数据库的新手。我刚刚创建了一个表

CREATE TABLE contacts
( con_id number(4) PRIMARY key,
  company_name varchar2(30) NOT NULL,
  e_mail varchar2(30),
  last_date date default systimestamp,
  con_cnt number(3) check(con_cnt > 0)
);

已成功创建但插入查询

insert into CONTACTS(con_id, COMPANY_NAME, e_mail, last_date, con_cnt)
 VALUES (01,'hrSol','raj@gmail.com','12-12-12',12);

显示以下错误:

SQL Error: ORA-00600: internal error code, arguments: [12811], [284560], [], [], [], [], [], [], [], [], [], []
00600. 00000 -  "internal error code, arguments: [%s], [%s], [%s], [%s], [%s], [%s], [%s], [%s], [%s], [%s], [%s], [%s]"
*Cause:    This is the generic internal error number for Oracle program
           exceptions. It indicates that a process has encountered a low-level,
           unexpected condition. The first argument is the internal message
           number. This argument and the database version number are critical in
           identifying the root cause and the potential impact to your system.
Error starting at line : 75 in command -
update CONTACTS
SET e_mail = 'hrsol@gmail.com'
WHERE con_id = 01
Error at Command Line : 75 Column : 1
Error report -
SQL Error: Closed Connection

我尝试在其他表中插入值,它工作正常。只是这张表给出了问题。

0 个答案:

没有答案