成人AV在线无码|婷婷五月激情色,|伊人加勒比二三四区|国产一区激情都市|亚洲AV无码电影|日av韩av无码|天堂在线亚洲Av|无码一区二区影院|成人无码毛片AV|超碰在线看中文字幕

oracle給用戶分配表空間 如何查看oracle中某個用戶占用表空間大小情況?

如何查看oracle中某個用戶占用表空間大小情況?執(zhí)行如下語句即可: select OWNER, t.segment_name, t.segment_type, sum(t.bytes / 1024

如何查看oracle中某個用戶占用表空間大小情況?

執(zhí)行如下語句即可: select OWNER, t.segment_name, t.segment_type, sum(t.bytes / 1024 / 1024) mmm from dba_segments t where t.owner = "你要查詢的用戶" and t.segment_type="TABLE" group by OWNER, t.segment_name, t.segment_type order by mmm desc