码迷,mamicode.com
首页 > 其他好文 > 详细

遇到ORA-14047: ALTER TABLE|INDEX RENAME may not be combined with other operations错误

时间:2015-06-14 01:54:03      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:

遇到ORA-14047: ALTER TABLE|INDEX RENAME may not be combined with other operations错误

[oracle@rhel63single ~]$ sqlplus lc0029999/aaaaaa

SQL*Plus: Release 11.2.0.4.0 Production on Wed Jun 10 00:11:32 2015

Copyright (c) 1982, 2013, Oracle.  All rights reserved.


Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> alter table lc0039999.t1 rename to lc0039999.tt1;
alter table lc0039999.t1 rename to lc0039999.tt1
                                            *
ERROR at line 1:
ORA-14047: ALTER TABLE|INDEX RENAME may not be combined with other operations


SQL> alter table t1 rename to  lc0039999.tt1;
alter table t1 rename to  lc0039999.tt1
                                   *
ERROR at line 1:
ORA-14047: ALTER TABLE|INDEX RENAME may not be combined with other operations


SQL> show user
USER is "LC0029999"
SQL> 


查询mos,得到如下文章:ORA-14047: ALTER TABLE | INDEX RENAME May Not Be Combined With Other Operations (文档 ID 400398.1)
在该文章中,说明了报错的原因:

The combination of actions appear to be:
1.the actual table rename
2.specifiying the schema name of the target


也就是说,不要带目标表的schema

 

值得注意的是,即使是在相同的一个schema下,目标表带有相同的schema名称,也是不允许的,如下:

SQL> show user
USER is "LC0029999"
SQL> alter table lc0029999.t1 rename to lc0029999.tt1; 
alter table lc0029999.t1 rename to lc0029999.tt1
                                            *
ERROR at line 1:
ORA-14047: ALTER TABLE|INDEX RENAME may not be combined with other operations

SQL> 

但是源表可以带schema信息,如下:

SQL>  alter table lc0029999.t11 rename to tt1;

Table altered.

SQL> 

 

遇到ORA-14047: ALTER TABLE|INDEX RENAME may not be combined with other operations错误

标签:

原文地址:http://blog.csdn.net/msdnchina/article/details/46486929

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!