2013-05-09 36 views
0

基本上,當我嘗試什麼那麼插入任何數據表 「法院」,例如:

INSERT INTO court VALUES('Sydney');

我得到以下錯誤:

Error starting at line 1 in command: 
INSERT INTO court VALUES ('Sydney') 
Error at Command Line:1 Column:1 
Error report: 
SQL Error: ORA-00600: internal error code, arguments: [kqd-objerror$], [U], [0], [373],[BIN$XQQxCzAhRPCuX323VsAKNA==$0], [], [], [], [], [], [], [] 
00600. 00000 - "internal error code, arguments: [%s], [%s], [%s], [%s], [%s], [%s], [%s], [%s]" 
*Cause: This is the generic internal error number for Oracle program exceptions. This indicates that a process has encountered an exceptional condition. 
*Action: Report as a bug - the first argument is the internal error number 

注:

這個數據庫運行在我大學的服務器上,但我仍然有完整的編輯權限(我之前完成了一些基本的工作,沒有任何問題)。

我正在運行Oracle SQL Developer來訪問數據庫。這是以防萬一拍攝的畫面:

http://i.imgur.com/iD1px3P.jpg

+0

看來,他們在列上放了一些條件,通過這個例外。向大學數據庫的數據庫管理員諮詢有關此錯誤的信息。 – Ravi 2013-05-09 06:00:24

+0

檢查這個例子哪些工作正常[鏈接](http://sqlfiddle.com/#!4/f789a/1) – 2013-05-09 06:02:19

+0

@ jWeavers歡呼我會嘗試現在=] – Sebastian 2013-05-09 06:03:58

回答

0

問題是,當有人建議我不授予足夠的權限。這導致連接崩潰。

我聯繫了我的數據庫管理員,他爲我修復了這一切。

謝謝大家!