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, 2305🔥, 0💬
Popular Posts:
What Is "mysqld" in MySQL? "mysqld" is MySQL server daemon program which runs quietly in background ...
Where to find reference information and tutorials on MySQL database functions? I want to know how to...
How To View Data Files in the Current Database in Oracle? If you want to get a list of all tablespac...
What Are Date and Time Functions in MySQL? MySQL offers a number of functions for date and time valu...
Where Is the Export Dump File Located in Oracle? If you are not specifying the dump directory and fi...