gpt4 book ai didi

sql - ORA-00600 运行 ALTER 命令时?

转载 作者:行者123 更新时间:2023-12-02 08:50:21 25 4
gpt4 key购买 nike

我在一个表上运行这个命令:

ALTER TABLE testTable ADD column1 NUMBER(1) DEFAULT 0 NOT NULL;

我一直收到这个错误:
Error report:<br/>
SQL Error: ORA-00600: internal error code, arguments: [kkpoffoc], [], [], [], [], [], [], [], [], [], [], []<br/>
00600. 00000 - "internal error code, arguments: [%s], [%s], [%s], [%s], [%s], [%s], [%s], [%s]"<br/>
*Cause: This is the generic internal error number for Oracle program<br/>
exceptions. This indicates that a process has encountered an
exceptional condition.<br/>
*Action: Report as a bug - the first argument is the internal error number

对此有什么想法吗?

最佳答案

这是一个错误,您需要像 paxdiablo 所说的那样与您的 dba 交谈以制作 SR。

如果你时间紧迫,你可以手动做些什么

ALTER TABLE testTable ADD column1 NUMBER(1) DEFAULT 0 NOT NULL;
  1. 将列添加为空:

    ALTER TABLE testTable ADD column1 NUMBER(1);
  2. 更新值:

    update testTable set column1 = 0;
  3. Alter table not null(在先例和这个之间,你必须确保没有人在表中插入):

    ALTER TABLE testTable MODIFY(column1  NOT NULL)

关于sql - ORA-00600 运行 ALTER 命令时?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8923091/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com