I have a tablespace with less than 1% space left. It is a BIGFILE. I was going to run the following command, but I wanted to see if y'all had any advice about what I should do first.
select file_name
,round(sum(bytes) / 1048576) TotalSpace
from dba_data_filesĀ
where tablespace_name = 'MY_DATA'
group by file_name;
+DATA/DB/A58F/DATAFILE/my_data.1111
134545
alter database datafile '+DATA/DB/A58F/DATAFILE/my_data.1111' resize 150G
Will this disrupt or hurt anything?