Hello,
I have a Tablespace named MSE. I don't know what schema or user uses it. Is there any query to show that?
I run this query to know what tables belong to tablespace MSE, but it returns 0 rows.
select t.table_name,t.tablespace_name,df.file_name from dba_tables t, dba_data_files df
where t.tablespace_name = df.tablespace_name
AND t.tablespace_name = 'MSE'
Thanks