0
点赞
收藏
分享

微信扫一扫

Oracle查看数据库中表空间的创建时间

49路末班车 2022-02-15 阅读 67
数据库
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 条评论