首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

查询oracle表容量,查看字段储存方式

2012-11-14 
查询oracle表容量,查看字段存储方式查询标容量:select segment_name, bytes, bytes/1024/1024/1024 as GB

查询oracle表容量,查看字段存储方式

查询标容量:

select segment_name, bytes, bytes/1024/1024/1024 as GB from user_segments where segment_name = '大写的表名'

?

查看字段存储方式:

select a.id, dump(a.id)? from table a

?

热点排行