First I needed to find what datafile the tablespace used.
Using sqlplus and the below it will show you what dbf file or files are used.
Code: Select all
SELECT TABLESPACE_NAME FROM DBA_TABLES WHERE TABLE_NAME = 'tablespace_name'
While in OEM the tablespace showed that it had 10 datafiles listed in the datafile column, however when I went to the details of the tablespace it did not list the datafiles.
Then I went to the datafiles and increased the size of the last datafile and after that the datafiles showed correctly for the tablespace detail.
Not sure why but that was wierd.