select a.file_name, a.tablespace_name, b.creation_time 
from dba_data_files a,v$datafile b 
where a.file_id=b.file# order by tablespace_name;
 

Oracle查看数据库中表空间的创建时间
阅读 71
2022-02-15
select a.file_name, a.tablespace_name, b.creation_time 
from dba_data_files a,v$datafile b 
where a.file_id=b.file# order by tablespace_name;
 

相关推荐
精彩评论(0)