|
Home >> FAQs/Tutorials >> Oracle Tutorials
Oracle Tutorials - Rename a Tablespace
By: FYIcenter.com
(Continued from previous topic...)
How To Rename a Tablespace?
You can easily rename a tablespace by using the ALTER TABLESPACE ... RENAME TO
statement as shown in the example below:
SQL> CREATE TABLESPACE my_space
2 DATAFILE '/temp/my_space.dbf' SIZE 10M;
Tablespace created.
SQL> ALTER TABLESPACE my_space RENAME TO your_space;
Tablespace created.
SQL> SELECT TABLESPACE_NAME, STATUS, CONTENTS
2 FROM USER_TABLESPACES;
TABLESPACE_NAME STATUS CONTENTS
---------------- --------------- ---------
SYSTEM ONLINE PERMANENT
UNDO ONLINE UNDO
SYSAUX ONLINE PERMANENT
TEMP ONLINE TEMPORARY
USERS ONLINE PERMANENT
YOUR_SPACE ONLINE PERMANENT
(Continued on next topic...)
- What Is an Oracle Tablespace?
- What Is an Oracle Data File?
- How a Tablespace Is Related to Data Files?
- How a Database Is Related to Tablespaces?
- How To View Tablespaces in the Current Database?
- What Are the Predefined Tablespaces in a Database?
- How To View Data Files in the Current Database?
- How To Create a New Oracle Data File?
- How To Create a New Tablespace?
- How To Rename a Tablespace?
- How To Drop a Tablespace?
- What Happens to Data Files If a Tablespace Is Dropped?
- How To Create a Table in a Specific Tablespace?
- How To See Free Space of Each Tablespace?
- How To Bring a Tablespace Offline?
- How To Bring a Tablespace Online?
- How To Add Another Datafile to a Tablespace?
- What Happens If You Lost a Data File?
- How Remove Data Files before Opening a Database?
|