删除索引报错"ORA-01418:sepecified index does not exist"该怎么处理
删除索引报错"ORA-01418:sepecified index does not exist"
删除索引报错"ORA-01418:sepecified index does not exist"
------解决方案--------------------
------解决方案--------------------
ORACLE是区分大小写的,除非你命名时全部大写或者小写,否则必须使用双引号将你的索引名包住,大小写写正确。
删除索引报错"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是区分大小写的,除非你命名时全部大写或者小写,否则必须使用双引号将你的索引名包住,大小写写正确。