Oracle9i 建一个新的DB 时出现ORA-29807 & ORA-01430 解决方法

   ORA-29807: specified operator does not exist
   在建立新的DB时会出现的错误。

   这是Oracle 的bug , 可以忽略掉,安装完成后,在$ORACLE_HOME/rdbms/admin 目录下运
行utlrp.sql ,用于修补ORA-29807 错误。
 
   解释
   ORA-29807: specified operator does not exist
This is a known issue (bug 2925665). You can click on the "Ignore" button to continue.
Once DBCA has completed database creation, remember to run the 'prvtxml.plb' scrīpt
from $ORACLE_HOME/rdbms/admin independently, as the user SYS. It is also advised
to run the 'utlrp.sql' scrīpt to ensure that there are no invalid objects in the database at this time.
 
Oracle/PLSQL: ORA-01430 Error

--------------------------------------------------------------------------------
Error: ORA-01430: column being added already exists in table
Cause: You tried to add a column to a table, but the column name already exists in that table.
Action: The options to resolve this Oracle error are:
Rewrite your ALTER TABLE command to create a column with a unique name. Each column name must be unique within a table.

For example, if you had a table called suppliers defined as follows:

CREATE TABLE suppliers
( supplier_id number not null,
 supplier_name varchar2(50) not null,
 city varchar2(30), 
 state varchar2(2), 
 zip_code varchar2(10) );

And you executed the following ALTER TABLE command:

ALTER TABLE suppliers
ADD supplier_name varchar2(50);

You would receive the following error message:
The column called supplier_name already exists. Each column name in your table must be unique.
 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值