1. 程式人生 > >Oracle,查詢 表空間對應的資料檔案,使用者和表空間對應關係

Oracle,查詢 表空間對應的資料檔案,使用者和表空間對應關係

--查詢表空間對應的資料檔案

select tablespace_name,file_id,bytes/1024/1024,file_name from dba_data_files order by file_id;

--使用者和表空間對應關係

select   username,default_tablespace   from   dba_users;