Collections:
Drop a Tablespace in Oracle
How To Drop a Tablespace in Oracle?
✍: FYIcenter.com
If you have an existing tablespace and you don't want it anymore. You can delete a tablespace by using the DROP TABLESPACE statement as shown in the example below:
SQL> CREATE TABLESPACE my_space 2 DATAFILE '/temp/my_space.dbf' SIZE 10M; Tablespace created. SQL> DROP TABLESPACE my_space; Tablespace dropped.
⇒ Keep Data Files When Tablespace Dropped in Oracle
⇐ Rename a Tablespace in Oracle
2019-04-13, 1865🔥, 0💬
Popular Posts:
Where to find answers to frequently asked questions I am new to Oracle database. Here is a list of f...
How To Recover a Dropped Index in Oracle? If you have the recycle bin feature turned on, dropped ind...
Where Is the Export Dump File Located in Oracle? If you are not specifying the dump directory and fi...
Where Is the Export Dump File Located in Oracle? If you are not specifying the dump directory and fi...
How To Convert Numeric Values to Character Strings in MySQL? You can convert numeric values to chara...