查看临时表空间和数据库文件

select 
a.tablespace_name 表空间名称,
b.bytes  大小bytes,
b.file_name  数据文件名
from dba_tablespaces a, dba_data_files b
Where a.tablespace_name=b.tablespace_name and a.contents='TEMPORARY';


Select file#,status,name from V$tempfile

你可能感兴趣的:(java)