0

基本上,当我尝试将任何数据插入表“COURT”时,例如:

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

4

1 回答 1

0

问题是我没有像建议的那样被授予足够的特权。这导致连接崩溃。

我联系了我的数据库管理员,他为我解决了所有问题。

感谢大家!

于 2013-05-13T12:22:40.803 回答