RENAME
Use the RENAME option of ALTER TABLE to rename a table or to rename a partition. 
The following example renames a table: ALTER TABLE emp RENAME TO employee;In the following example, partition EMP3 is renamed: ALTER TABLE employee RENAME PARTITION emp3 TO employee3;