Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: renaming a table
Is it possible that indic3 is a synonym, and not a table
name? Try the following query:
SELECT * FROM ALL_SYNONYMS WHERE SYNONYM_NAME = 'INDIC3';
DESCRIBE will work with a synonym, but I'm fairly certain that RENAME requires the actual table name.
Jonathan
On Mon, 06 Mar 2000 16:50:59 -0800, jbraddock <jbraddockNOjbSPAM_at_sockets.net.invalid> wrote:
>I am trying to use the RENAME statement to rename a table as
>follows: RENAME indic3 TO indic4. Everytime I do this, I get
>an error stating that the object indic3 does not exist, yet I
>can issue a DESC indic3 and it works just fine. According to
>the documentation, RENAME should work with a table. Is there
>something I'm missing here?
>
>
>* Sent from RemarQ http://www.remarq.com The Internet's Discussion Network *
>The fastest and easiest way to search and participate in Usenet - Free!
Received on Mon Mar 06 2000 - 20:34:12 CST
![]() |
![]() |