Drop tablespace in oracle db
Imported guide
oracle configurationintermediate
by OracleDba
12 views
Imported guide
123456789101112
-- Drop a tablespace without removing the physical database files.
SQL❯
drop tablespace TESTING;
Tablespace dropped.
SQL❯
select file_name from dba_data_files where tablespace_name='TESTING';
no rows selected
-- Drop tablespace including the physical datafiles.
SQL❯
drop tablespace TESTING including contents and datafiles;
Tablespace dropped.Please to add comments
No comments yet. Be the first to comment!