What is the syntax to rename a table or view in Oracle?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
In
|
|||
|
|
|
To rename a table you can use:
or
or, if owned by another schema:
Interestingly, ALTER VIEW does not support renaming a view. You can, however:
The RENAME command works for tables, views, sequences and private synonyms, for your own schema only. If the view is not in your schema, you can recompile the view with the new name and then drop the old view. (tested in Oracle 10g) |
|||
|
|
In order to rename a table in a different schema, try:
The rename command (as in " |
|||
|
|
|
One can rename indexes the same way:
|
||||
|
|