[[email protected] ~]$ 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>
时间: 2024-10-28 21:10:18