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, 2425🔥, 0💬
Popular Posts:
How To End a Stored Procedure Properly in SQL Server Transact-SQL? Where the end of the "CREATE PROC...
Where Is the Export Dump File Located in Oracle? If you are not specifying the dump directory and fi...
Where to find SQL Server Transact-SQL language references? You can find SQL Server Transact-SQL lang...
How To View Data Files in the Current Database in Oracle? If you want to get a list of all tablespac...
What Is SQL*Plus in Oracle? SQL*Plus is an interactive and batch query tool that is installed with e...