Answer the question
In order to leave comments, you need to log in
How to delete data files without table space?
It was necessary to recreate the table space via DROP.
Oracle Database 12c - 12.2.0.1.0, Microsoft Windows [Version 10.0.10240]
I naively thought that when you delete a table space through the developer 12 PL-SQL interface , the
data files that are in it will be automatically deleted.
BUT they stayed.
Now I'm trying to find a way to delete tada files without table space.
Does such a thing exist?
Will everything continue correctly with the Oracle instance if they are simply deleted at the OS level?
if execute this select from SYS
SELECT TABLESPACE_NAME, FILE_NAME, FILE_ID
FROM DBA_DATA_FILES
Answer the question
In order to leave comments, you need to log in
Check that there is nothing in the datafile:
SELECT owner, segment_name, segment_type, block_id
FROM dba_extents
WHERE FILE_ID = <id datafile>
ORDER BY block_id DESC;
In fact, if TS is deleted, then the date of the file is no one's. Is he bothering you in any way?
Is this data file in v$datafiles ?
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question