文档解释
ORA-29966: The only binding of an operator cannot be dropped
Cause: This operator only has one binding. It cannot be dropped using Alter Operator Drop Binding.
Action: If you wish to drop the entire operator, call Drop Operator.
ORA-29966通常是一个PL/SQL错误,当一个操作符无法被删除,原因可能为如下:
(1) 用户尝试删除系统中内置的操作符;
(2) 用户删除了一个正在使用中的操作符;
(3) 用户删除了一个受保护的操作符(不允许更改)。
ORA-29966: The only binding of an operator cannot be dropped 是当用户尝试删除操作符但该操作符只有一份绑定属性时会出现的错误,这意味着用户无法删除该操作符。
一般处理方法及步骤
首先,检查删除的是否是内置操作符;
其次,检查删除的操作符是否正在使用中;
最后,检查删除的操作符是否是受保护的操作符。
如果上述操作无果,可以尝试重新定义操作符,以便可以删除该操作符。