读书人

删除索引报错quot;ORA-01418:sepecified i

发布时间: 2013-01-27 13:56:15 作者: rapoo

删除索引报错"ORA-01418:sepecified index does not exist"
删除索引报错"ORA-01418:sepecified index does not exist"

[解决办法]

引用:
删除索引报错"ORA-01418:sepecified index does not exist"





SQL> create index t on xs_kc(kch);

索引已创建。

SQL> select object_name,object_type from user_objects where object_type='INDEX' and object_name='T';


OBJECT_NAME
--------------------------------------------
OBJECT_TYPE
-------------------
T
INDEX


SQL> drop index system.t;
--用户.索引名

索引已删除。










[解决办法]
ORACLE是区分大小写的,除非你命名时全部大写或者小写,否则必须使用双引号将你的索引名包住,大小写写正确。

读书人网 >oracle

热点推荐