首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > oracle >

删除索引报错"ORA-01418:sepecified index does not exist"该怎么处理

2013-01-27 
删除索引报错ORA-01418:sepecified index does not exist删除索引报错ORA-01418:sepecified index does

删除索引报错"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是区分大小写的,除非你命名时全部大写或者小写,否则必须使用双引号将你的索引名包住,大小写写正确。

热点排行