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, 2769🔥, 0💬
Popular Posts:
How To Convert Binary Strings into Hexadecimal Character Strings in SQL Server? When a query returns...
How To Get the Definition of a View Out of the SQL Server in SQL Server? If you want get the definit...
How To Connect to a MySQL Server with a Port Number in MySQL? If you want to connect a MySQL server ...
What are single-byte character string data types supported in SQL Server Transact-SQL? Single-byte c...
How To Download Oracle Database 10g XE in Oracle? If you want to download a copy of Oracle Database ...